/* ========================================
   ijjou - Natural Skincare & Wellness
   Complete Stylesheet with FIXED MOBILE MENU
   ======================================== */

/* CSS RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary: #7fb069;
    --primary-dark: #5e8a4e;
    --secondary: #e8dcc4;
    --accent: #c9ada7;
    --dark: #2d3142;
    --light: #fefae0;
    --white: #ffffff;
    --text: #4a5568;
    --border: #e2e8f0;
    
    /* Shadows */
    --shadow: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}


/* HEADER & NAVIGATION
   ======================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    z-index: 1000;
    transition: all 0.3s;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo i {
    font-size: 32px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.cart-btn {
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.cart-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(127, 176, 105, 0.3);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: var(--white);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
    z-index: 1001;
    position: relative;
}


/* HERO SECTION
   ======================================== */
.hero {
    padding: 160px 40px 100px;
    background: linear-gradient(135deg, var(--light) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(127, 176, 105, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-content h1 span {
    color: var(--primary);
    display: block;
}

.hero-content p {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-badges {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.badge i {
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(127, 176, 105, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.hero-image {
    position: relative;
}

.hero-image-main {
    width: 100%;
    height: 600px;
    background: url('https://images.unsplash.com/photo-1608248597279-f99d160bfcbc?w=800&h=900&fit=crop&q=80') center/cover;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-floating-card {
    position: absolute;
    background: var(--white);
    padding: 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-floating-card.card-1 {
    top: 50px;
    left: -40px;
}

.hero-floating-card.card-2 {
    bottom: 80px;
    right: -40px;
}

.floating-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
}

.floating-text h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 4px;
}

.floating-text p {
    font-size: 13px;
    color: var(--text);
}


/* ABOUT SECTION
   ======================================== */
.about {
    padding: 120px 40px;
    background: var(--white);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}

.about-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-image:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1556228720-195a672e8a03?w=600&h=600&fit=crop&q=80');
    margin-top: 40px;
}

.about-image:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1571875257727-256c39da42af?w=600&h=600&fit=crop&q=80');
}

.about-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 4px;
}

.about-badge p {
    font-size: 14px;
    opacity: 0.95;
}

.about-content span {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 16px;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

.about-content p {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 30px;
    line-height: 1.8;
}

.feature-list {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--light);
    border-radius: 16px;
    transition: all 0.3s;
}

.feature-item:hover {
    background: var(--secondary);
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text);
    margin: 0;
}


/* SERVICES SECTION
   ======================================== */
.services {
    padding: 120px 40px;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-label {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--light);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured .service-benefits li {
    color: var(--white);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-card.featured .price {
    color: var(--white);
}

.service-card.featured .duration {
    color: rgba(255, 255, 255, 0.9);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-badge.women-only {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: var(--primary);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.service-card p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.service-benefits li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-benefits i {
    color: var(--primary);
    font-size: 14px;
}

.service-price {
    margin-bottom: 24px;
}

.service-price .price-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.service-price .price-currency,
.service-price .price-period {
    font-size: 14px;
    color: var(--text);
}

.service-btn {
    width: 100%;
    justify-content: center;
}


/* PRODUCTS SECTION
   ======================================== */
.products {
    padding: 120px 40px;
    background: var(--light);
}

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.product-image {
    height: 320px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
}

.product-content {
    padding: 30px;
}

.product-category {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.product-description {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.product-feature-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--light);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text);
}

.product-feature-tag i {
    color: var(--primary);
    font-size: 10px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.product-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.product-price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
}

.add-to-cart-btn {
    background: var(--primary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.add-to-cart-btn.added {
    background: var(--accent);
    pointer-events: none;
}


/* CONTACT US SECTION
   ======================================== */
.contact {
    padding: 100px 40px;
    background: var(--secondary);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 400;
    color: var(--dark);
}

.contact-content > p {
    color: #5a5a5a;
    margin-bottom: 32px;
    line-height: 1.8;
    font-size: 16px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.detail-item {
    display: flex;
    align-items: start;
    gap: 16px;
}

.detail-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    color: var(--primary);
}

.detail-text h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark);
}

.detail-text p {
    font-size: 14px;
    color: #5a5a5a;
    margin: 0;
    line-height: 1.6;
}

.detail-text a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.detail-text a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-map {
    height: 500px;
    background: #e5e5e5;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map iframe {
    border-radius: 24px;
}



/* FOOTER
   ======================================== */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 40px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}

.social-link:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* CART MODAL
   ======================================== */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

.cart-modal.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cart-content {
    background: var(--white);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    border-radius: 24px;
    overflow: hidden;
    animation: slideUp 0.3s;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cart-header {
    padding: 30px;
    background: var(--light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.cart-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.close-cart {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.close-cart:hover {
    background: var(--border);
    color: var(--dark);
}

.cart-items {
    padding: 30px;
    max-height: 400px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-item-name {
    font-weight: 600;
    font-size: 14px;
    color: #2d3748;
}

.cart-item-price {
    color: #7fb069;
    font-size: 13px;
    font-weight: 500;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 12px;
    color: #4a5568;
}

.qty-btn:hover {
    background: #f7fafc;
    border-color: #7fb069;
    color: #7fb069;
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-value {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #2d3748;
}

.cart-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.cart-item-subtotal {
    font-weight: 700;
    color: #2d3748;
    font-size: 15px;
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: #e53e3e;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: all 0.2s;
    font-size: 14px;
}

.cart-item-remove:hover {
    background: #fed7d7;
    transform: scale(1.1);
}

.cart-empty {
    text-align: center;
    padding: 60px 30px;
}

.cart-empty i {
    font-size: 64px;
    color: var(--border);
    margin-bottom: 20px;
}

.cart-empty p {
    font-size: 16px;
    color: var(--text);
}

.cart-footer {
    padding: 30px;
    background: var(--light);
    border-top: 1px solid var(--border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cart-total span {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
}

.cart-total strong {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    background: #25d366;
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.checkout-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.checkout-btn i {
    font-size: 20px;
}


/* NOTIFICATIONS SYSTEM */
/* ======================================== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 350px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification i {
    font-size: 20px;
    flex-shrink: 0;
}

.notification-success {
    border-left: 4px solid #7fb069;
}

.notification-success i {
    color: #7fb069;
}

.notification-error {
    border-left: 4px solid #e63946;
}

.notification-error i {
    color: #e63946;
}

.notification-warning {
    border-left: 4px solid #f77f00;
}

.notification-warning i {
    color: #f77f00;
}

.notification-info {
    border-left: 4px solid #4a90e2;
}

.notification-info i {
    color: #4a90e2;
}


/* BUTTON STATES */
/* ======================================== */
.add-to-cart-btn.added {
    background: #7fb069 !important;
    color: white;
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}


/* FADE-IN ANIMATION */
/* ======================================== */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}


/* ACCESSIBILITY */
/* ======================================== */
button:focus,
a:focus {
    outline: 2px solid #7fb069;
    outline-offset: 2px;
}

*:focus-visible {
    outline: 2px solid #7fb069;
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}


/* ========================================
   MOBILE RESPONSIVE - FIXED MOBILE MENU
   ======================================== */

@media (max-width: 968px) {
    /* HIDE DESKTOP NAV, SHOW MOBILE TOGGLE */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 20px;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 12px 0;
        font-size: 18px;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu a::after {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    /* MOBILE MENU TOGGLE ICON ANIMATION */
    .mobile-toggle.active i:before {
        content: "\f00d"; /* FontAwesome X icon */
    }

    /* OVERLAY WHEN MENU IS OPEN */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        animation: fadeIn 0.3s;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* HERO SECTION MOBILE */
    .hero {
        padding: 140px 24px 80px;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-content {
        text-align: center;
        padding: 0 16px;
    }

    .hero-content h1 {
        font-size: 46px;
        margin-bottom: 24px;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 36px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badges {
        justify-content: center;
        margin-bottom: 36px;
    }

    .hero-buttons {
        justify-content: center;
        gap: 16px;
    }

    .hero-image {
        margin-top: 60px;
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 20px;
    }

    .hero-image-main {
        height: 380px;
        border-radius: 24px;
    }

    .hero-floating-card {
        padding: 16px;
        border-radius: 16px;
    }

    .hero-floating-card.card-1 {
        top: 20px;
        left: 0;
    }

    .hero-floating-card.card-2 {
        bottom: 20px;
        right: 0;
    }

    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .floating-text h4 {
        font-size: 16px;
    }

    .floating-text p {
        font-size: 11px;
    }

    /* OTHER SECTIONS MOBILE */
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-container {
        padding: 0 24px;
    }

    .cart-btn span:not(.cart-count) {
        display: none;
    }

    .cart-btn {
        padding: 12px 16px;
    }

    .notification {
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }

    .cart-content {
        max-width: 100%;
    }
}


/* CONTACT SECTION MOBILE */
@media (max-width: 968px) {
    .contact {
        padding: 80px 24px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-content h2 {
        font-size: 36px;
        text-align: center;
    }
    
    .contact-content > p {
        text-align: center;
        font-size: 15px;
    }
    
    .contact-map {
        height: 400px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .contact {
        padding: 60px 20px;
    }
    
    .contact-content h2 {
        font-size: 32px;
    }
    
    .contact-details {
        gap: 20px;
    }
    
    .detail-item {
        gap: 12px;
    }
    
    .detail-icon {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    
    .contact-map {
        height: 350px;
        border-radius: 16px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* HERO MOBILE ENHANCEMENTS */
@media (max-width: 768px) {
    .hero {
        padding: 120px 20px 60px;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .badge {
        font-size: 13px;
        padding: 10px 16px;
    }
    
    .hero-buttons .btn {
        padding: 14px 32px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 15px;
    }
    
    .badge {
        font-size: 12px;
        padding: 8px 14px;
        gap: 8px;
    }
    
    .badge i {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }

    /* MOBILE NAV WIDER ON VERY SMALL SCREENS */
    .nav-menu {
        width: 85%;
        max-width: 320px;
    }
}

/* TABLET RESPONSIVE */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-container {
        gap: 40px;
    }
    
    .hero-image-main {
        height: 450px;
    }
    
    .contact-content h2 {
        font-size: 38px;
    }
}