/* styles.css */
:root {
    --gold: #D4AF37;
    --pink: #F8C8DC;
    --lavender: #E6E6FA;
    --white: #FFFFFF;
    --dark: #333333;
    --light-gray: #F5F5F5;
    --gray: #888888;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --deep-purple: #6A5ACD;
    --light-pink: #FFE4E6;
    --teal: #20B2AA;
    --dark-blue: #2C3E50;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background: #b8941f;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    margin-top: 20px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 0;
}

.tagline {
    font-size: 0.8rem;
    color: var(--gray);
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    padding: 10px 15px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-cart {
    position: relative;
    margin-left: 15px;
}

.cart-icon {
    color: var(--dark);
    font-size: 1.2rem;
    position: relative;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.cart-icon:hover {
    background: var(--light-gray);
    box-shadow: var(--shadow-md);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    margin-left: 10px;
    border-radius: 4px;
    transition: var(--transition);
}

.hamburger:hover {
    background: var(--light-gray);
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 3px 0;
    transition: var(--transition);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 320px;
    height: calc(100vh - 80px);
    background: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 999;
    overflow-y: auto;
    padding: 30px 20px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 15px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--dark);
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-item:hover {
    transform: translateX(-5px);
    background: var(--lavender);
    box-shadow: var(--shadow-md);
}

.mobile-nav-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    animation: rotate 4s linear infinite;
    box-shadow: var(--shadow);
}

.mobile-nav-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.mobile-nav-text {
    flex: 1;
}

.mobile-nav-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.mobile-nav-text p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Hero Section */
.hero {
    padding-top: 120px;
    background: linear-gradient(135deg, var(--lavender) 0%, var(--pink) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray);
}

.hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gold);
    font-weight: 500;
}

.hero-slider {
    margin-top: 50px;
    overflow: hidden;
    position: relative;
    height: 300px;
}

/* Smart slider styles - both auto and manual */
.slider-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.slider-track.manual-scroll {
    animation: none;
    cursor: grab;
}

.slider-track.manual-scroll:active {
    cursor: grabbing;
}

/* Auto-scroll animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.slide {
    min-width: 250px;
    height: 250px;
    margin: 0 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    background: var(--white);
    flex-shrink: 0;
    border: 3px solid var(--white);
    transition: var(--transition);
}

.slide:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.slide:hover img {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 15px;
    transform: translateY(100%);
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.slide:hover .slide-overlay {
    transform: translateY(0);
}

/* Products Section */
.products {
    background: var(--light-gray);
}

.search-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.search-input, .filter-select {
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 2rem;
    font-family: 'Poppins', sans-serif;
    width: 250px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.search-input:focus, .filter-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--lavender);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-bottom: 3px solid var(--gold);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.fallback-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
    display: none;
}

.product-image img:not([src]),
.product-image img[src=""],
.product-image:not(:has(img[src])) .fallback-icon {
    display: block;
}

.product-image:has(img[src]) .fallback-icon {
    display: none;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 2rem;
    font-size: 0.8rem;
    animation: pulse 2s infinite;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.product-description {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.quantity-btn {
    background: none;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--light-gray);
}

.quantity-input {
    width: 40px;
    text-align: center;
    border: none;
    padding: 5px;
}

.add-to-cart {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 8px 15px;
    border-radius: 2rem;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    box-shadow: var(--shadow);
}

.add-to-cart:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--lavender);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 3px solid var(--white);
}

.service-card:hover .service-icon {
    transform: rotate(360deg);
    background: var(--gold);
}

.service-card i {
    font-size: 2rem;
    color: var(--gold);
    transition: var(--transition);
}

.service-card:hover i {
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 15px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 8px;
    transition: var(--transition);
}

.feature:hover {
    background: var(--light-gray);
    transform: translateX(5px);
}

.feature i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 1.2rem;
}

.about-image {
    text-align: center;
}

.image-placeholder {
    background: var(--lavender);
    height: 300px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: 3px solid var(--white);
}

.image-placeholder:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--gold);
}

/* Testimonials Section */
.testimonials {
    background: var(--light-gray);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: var(--gold);
}

.testimonial-author span {
    color: var(--gray);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-prev, .testimonial-next {
    background: var(--gold);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.testimonial-prev:hover, .testimonial-next:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
    background: var(--white);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--lavender);
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    background: var(--white);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
    padding: 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--light-gray);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: var(--shadow-md);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    overflow: auto;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--white);
    margin: 5% auto;
    width: 90%;
    max-width: 600px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    animation: modalFade 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

@keyframes modalFade {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: var(--light-gray);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.close {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
    transition: var(--transition);
}

.close:hover {
    color: var(--dark);
    transform: scale(1.1);
}

.modal-body {
    padding: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.cart-item:hover {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 15px;
}

.cart-item-info h4 {
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--gold);
    font-weight: 600;
}

.cart-item-actions {
    display: flex;
    align-items: center;
}

.remove-item {
    background: none;
    border: none;
    color: #ff4d4d;
    cursor: pointer;
    margin-left: 10px;
    transition: var(--transition);
    padding: 5px;
    border-radius: 4px;
}

.remove-item:hover {
    background: #ff4d4d;
    color: white;
    transform: scale(1.1);
}

.cart-total {
    text-align: right;
    margin: 20px 0;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.checkout-form {
    margin-top: 30px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    padding: 5px 0;
    transition: var(--transition);
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.footer-section ul li i {
    margin-right: 10px;
    color: var(--gold);
    min-width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 100;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--white);
}

.back-to-top:hover {
    background: #b8941f;
    transform: translateY(-3px) scale(1.1);
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--gold);
    color: white;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mobile Controls */
.nav-controls {
    display: none;
}

/* Show mobile controls only on mobile */
@media (max-width: 768px) {
    .nav-controls {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-cart .cart-icon {
        padding: 8px;
        border-radius: 50%;
        transition: var(--transition);
    }
    
    .mobile-cart .cart-icon:hover {
        background: var(--light-gray);
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .search-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .search-input, .filter-select {
        width: 100%;
        max-width: 300px;
    }

    .about-content, .contact-content {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 60px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .nav {
        padding: 15px;
    }
    
    .mobile-menu {
        width: 280px;
    }
    
    .mobile-nav-item {
        padding: 15px;
    }
    
    .mobile-nav-icon {
        width: 45px;
        height: 45px;
    }
}