
:root {
    --primary-color: #5cc261;
    --secondary-color: #afd6ab;
    --accent-color: #95c3c6;
    --text-color: #4a4a4a;
    --light-text: #767676;
    --bg-color: #fcfcfc;
    --border-radius: 10px;
    --shadow: 0 10px 25px rgba(212, 167, 177, 0.15);
    --transition: all 0.3s ease;
    --primary: #69a98f;
    --primary-dark: #4e8b72;
    --secondary: #f9c27e;
    --dark: #2c3e50;
    --light: #f8f9f4;
    --gray: #6d7972;
    --light-gray: #ebefe8;
    --skin-offwhite: #f8f6f3;
    --skin-beige: #e5dbce;
    --skin-rose: #f3d1c1;
    --skin-clay: #c89f94;
    --skin-charcoal: #3a3a3a;
    --muted-foreground: #888;
    --light-bg: #eee;
    --white: #fff;
    --black: #2c3e50;
    --red: #e74c3c;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.topbar {
    background-color: #407236;
    color: white;
    width: 100%;
    z-index: 999;
    position: relative;
}

.message{
    position: sticky;
    top: 1rem;
    left: 0;
    right: 0;
    z-index: 1200;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: .5rem;
    margin-top: 1rem;
}

#messageDiv{
    position: relative;
}

.message.form{
    background-color: var(--white);
}

.message span{
    font-size: 2rem;
    color: var(--black);
}

.message i{
    cursor: pointer;
    font-size: 2.5rem;
    color: var(--red);
    transition: .2s linear;
}

.message i:hover{
    transform: rotate(90deg);
}


.topbar-container {
    margin: 0 auto;
    padding: 0 15px;
}

/* Desktop view */
.desktop-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.topbar-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.working-hours {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.hours-header {
    font-weight: 600;
    margin-bottom: 5px;
}

/* Icons */
.icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-mail {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E");
}

.icon-phone {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.icon-instagram {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'/%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'/%3E%3C/svg%3E");
}

.icon-clock {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
}


.navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1rem;
    background-color: #1b4d1b;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    z-index: 999;
    position: relative;
}

.navbar .logo {
    width: 15rem;
    height: 3rem;
}

.navbar .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-list a {
    position: relative;
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-list a:hover {
    color: #ffe082;
}

.nav-list a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffe082;
}

.cart {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: 2rem;
}

.menu {
    display: none;
}

.cart .btn {
    text-decoration: none;
    background-color: #eaa700;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cart .btn:hover {
    background-color: #eaa700;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    color: #fff;
}

.cart-icon span {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #eaa700;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.user-avatar{
    display: flex;
    align-items: center;
}

.user-menu {
  position: relative;
  display: inline-block;
}
.avatar-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
}
.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  padding: 10px;
  min-width: 150px;
  border-radius: 10px;
  margin-top: 5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.dropdown-menu a {
  white-space: nowrap;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s;
}
.dropdown-menu a:hover {
  background-color: #f4f4f4;
  border-radius: 5px;
}

.dropdown-menu i{
  margin-left: 12px;
  color: #666;
}

.user-menu.show .dropdown-menu {
  display: block;
}


.sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 220px;
    height: 100%;
    background-color: #5cc261;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 2rem;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease-in-out;
}

.sidebar.show {
    left: 0;
}

.revel {
    display: none;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-top: 1.5rem;
}

.sidebar-nav a {
    text-decoration: none;
    font-size: 1.1rem;
    color: #f0f0f0;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.sidebar-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateX(5px);
}

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

.nav-icon {
    margin-right: 12px;
}

.sign-in-btn {
    margin-top: 1rem;
    padding: 0.75rem;
    background-color: #fff;
    color: #e67e22;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    transition: all 0.2s ease;
}

.sign-in-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sidebar-footer {
    padding-top: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 998;
}


.sidebar-overlay.show {
    display: block;
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
}

        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: #fff;
            border-radius: 50px;
            text-align: center;
            font-size: 24px;
            box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
            cursor: pointer;
            z-index: 1000;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            background-color: #20ba5a;
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-float:visited {
            color: #fff;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
            }
            100% {
                box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
            }
        }

        /* WhatsApp Icon */
        .whatsapp-icon {
            width: 28px;
            height: 28px;
        }
        
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            animation: fadeIn 0.3s ease;
        }
        
        .popup-overlay.show {
    display: flex;
    animation: fadeIn 0.3s ease-out forwards;
}
        
        .popup-container {
            background: linear-gradient(135deg, #4a7c59 0%, #5a8c6a 100%);
            border-radius: 20px;
            padding: 30px 25px;
            max-width: 480px;
            width: 90%;
            position: relative;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.4s ease-out;
            text-align: center;
        }
        
        .popup-icon {
            background-color: #e6a23c;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: white;
            box-shadow: 0 8px 20px rgba(230, 162, 60, 0.3);
        }
        
        .popup-title {
            font-size: 26px;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
            line-height: 1.2;
        }
        
        .popup-subtitle {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 25px;
            line-height: 1.4;
        }
        
        .email-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .email-box {
            padding: 15px 24px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            background-color: rgba(255, 255, 255, 0.95);
            color: #333;
            outline: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .email-box:focus {
            background-color: white;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            transform: translateY(-2px);
        }
        
        .email-box::placeholder {
            color: #999;
        }
        
        .subscribe-newsbtn {
            background: linear-gradient(135deg, #e6a23c 0%, #f4b942 100%);
            color: #333;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 8px 25px rgba(230, 162, 60, 0.3);
        }

        .subscribe-newsbtn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(230, 162, 60, 0.4);
            background: linear-gradient(135deg, #f4b942 0%, #e6a23c 100%);
        }

        .subscribe-newsbtn:active {
            transform: translateY(-1px);
        }
        
        .benefits-list {
            list-style: none;
            text-align: left;
            margin: 15px 0;
        }

        .benefits-list li {
            color: rgba(255, 255, 255, 0.9);
            font-size: 15px;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .benefits-list li::before {
            content: "✓";
            background-color: #e6a23c;
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
            flex-shrink: 0;
        }
        
        .assure-text {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.4;
            margin-top: 15px;
        }
        
        @keyframes fadeIn {
            from { 
            opacity: 0;
            transform: scale(0.98);
                
            }
            to { 
            opacity: 1;
            transform: scale(1);
                
            }
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        @media (max-width: 600px) {
            .popup-container {
                padding: 30px 25px;
                margin: 20px;
            }

            .popup-title {
                font-size: 26px;
            }

            .popup-subtitle {
                font-size: 16px;
            }

            .email-form {
                gap: 15px;
            }
        }
        
                .success-state {
            display: none;
        }

        .success-state.show {
            display: block;
        }

        .form-state.hide {
            display: none;
        }

        .success-icon {
            background-color: #27ae60;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: white;
            animation: scaleIn 0.5s ease-out;
        }
        
        @keyframes scaleIn {
            from {
                transform: scale(0);
            }
            to {
                transform: scale(1);
            }
        }



.hero {
    padding: 1rem;
    position: relative;
}

.hero .hero-container {
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
}

.hero-main {
    width: 50%;
    padding-right: 2rem;
    z-index: 2;
    color: #fff;
    word-wrap: break-word;
    animation: fadeOut 2s ease-in 8s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}


.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fade 16s infinite;
    z-index: 0;
}

.hero-slide1 {
    background-image: url('../image/hero1.jpg');
    animation-delay: 0s;
}

.hero-slide2 {
    background-image: url('../image/hero3.jpg');
    animation-delay: 4s;
}

.hero-slide3 {
    background-image: url('../image/hero2.jpg');
    animation-delay: 8s;
}

.hero-slide4 {
    background-image: url('../image/hero4.jpg');
    animation-delay: 12s;
}

.hero-main h1 {
            font-size: 3rem;
            line-height: 1;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
            font-weight: bold;
            word-wrap: break-word;
        }

        /* Typewriter effect styles */
        .typewriter {
            overflow: hidden;
            border-right: 3px solid #fff;
            white-space: normal;
            animation: 
                typing 3.5s steps(30, end) forwards,
                blink-caret 0.75s step-end infinite;
            width: 0;
            max-width: fit-content;
        }

        @keyframes typing {
            from { width: 0; }
            to { width: 30ch; }
        }

        @keyframes blink-caret {
            from, to { border-color: transparent; }
            50% { border-color: #fff; }
        }

        /* Stop cursor blinking after typing is complete */
        .typewriter::after {
            content: '';
            animation: stop-blink 0.1s 4s forwards;
        }

        @keyframes stop-blink {
            to { border-right: none; }
        }

        .hero-main p {
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
            opacity: 0;
            animation: fadeInUp 1s ease-out 3.5s forwards;
        }

        .hero-buttons {
            opacity: 0;
            animation: fadeInUp 1s ease-out 4s forwards;
        }

        .hero-buttons .btn {
            text-decoration: none;
            background-color: #3e8405;
            color: #fff;
            font-size: 1rem;
            font-weight: 500;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .hero-buttons .btn:hover {
            background-color: #2d6304;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }

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

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


.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
    font-weight: 300;
    letter-spacing: 1px;
}

.brand-components {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.component {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.component:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.shop-component {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('../image/products.jpg') center/cover no-repeat;
}

.clinic-component {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('../image/session.png') center/cover no-repeat;
}

.brand-content {
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    color: white;
}

.tagline {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 15px;
    line-height: 1.3;
}

.subtext {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
    font-style: italic;
    opacity: 0.9;
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn:hover::after {
    left: 100%;
}

.btn-shop {
    background-color: #eaa700;
    color: white;
}

.btn-shop:hover {
    background-color: #3e8405;
}

.btn-clinic {
    background-color: #3e8405;
    color: white;
}

.btn-clinic:hover {
    background-color: #3e8405;
}


.about {
    padding: 5rem;
    background-color: #fff;
}

.about-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.about-heading h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    color: #333;
}

.about-heading p {
    margin-top: 1rem;
    max-width: 42rem;
    font-size: 1.2rem;
    line-height: 1.4;
    color: #666;
    margin: 0 auto;
}

.about-content {
    margin-top: 4rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.content-grid .content {
    background-color: #f0f0f0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.content-grid .content .content-box {
    padding: 2rem 1.5rem;
}

.content-box .box-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3rem;
    width: 3rem;
    border-radius: 6px;
    background-color: #3e8405;
    color: #fff;
}

.content-box .box-icon i {
    font-size: 1.5rem;
}

.content-box h3 {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.content-box p {
    margin-top: 1rem;
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.learn-more {
    margin-top: 3rem;
    text-align: center;
}

.learn-more .btn {
    display: inline-flex;
    align-items: center;
    border: transparent;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
    border-radius: 6px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    color: #fff;
    text-decoration: none;
    background-color: #3e8405;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
}

.learn-more .btn:hover {
    background-color: #3e8405;
}

.learn-more svg {
    margin-left: 0.5rem;
    margin-right: 0.25rem;
    width: 1.2rem;
    height: 1.2rem;
    color: #fff;
}

.featured-products {
    padding: 5rem;
    background-color: #f0f0f0;
}

.featured-products h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
}

.view-all {
    text-align: center;
    margin-top: 3rem;
}

.view-all .btn {
    border: transparent;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
    border-radius: 6px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    color: #fff;
    text-decoration: none;
    background-color: #3e8405;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
}

.view-all .btn:hover {
    background-color: #3e8405;
}

.video-container {
    max-width: 100%;
    padding: 60px 40px;
}

.video-section {
    position: relative;
    background-color: #faf6f7;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    padding-top: 5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.brand-name {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    font-weight: 300;
    color: var(--text-color);
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.divider {
    width: 80px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 0 auto 30px;
}


.video-vid {
    position: relative;
    width: 100%;
    height: 30rem;
    overflow: hidden;
    border-radius: 10px;
}


.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}


.video-info {
    padding: 30px 40px 40px;
    background: linear-gradient(to bottom, white, #fcf9fa);
}

.video-title {
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 15px 0;
    color: var(--text-color);
}

.video-description {
    font-size: 17px;
    color: var(--light-text);
    margin-bottom: 25px;
    font-family: 'Lato', 'Open Sans', sans-serif;
    line-height: 1.7;
}

.skincare-icons {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    margin-top: 40px;
    box-shadow: var(--shadow);
}

.skincare-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 120px;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    transition: var(--transition);
}

.skincare-icon:hover .icon-circle {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.skincare-icon:hover .icon-circle i {
    color: white;
}

.icon-circle i {
    font-size: 28px;
    color: var(--primary-color);
    transition: var(--transition);
}

.icon-label {
    font-size: 15px;
    color: var(--text-color);
    font-weight: 500;
    font-family: 'Lato', 'Open Sans', sans-serif;
}


.testimonials {
    padding: 6rem 5rem;
}

.testimonials h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

.testimonials-container {
    width: 100%;
    margin: 0 auto;
}

.glass-card {
    background: #f0f0f0;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.7s ease;
}

.quote-icon {
    font-size: 2rem;
    color: #666;
    opacity: 0.2;
    text-align: center;
    margin-bottom: 2rem;
}

.testimonial-container {
    width: 100%;
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}


.testimonial-wrapper {
    position: relative;
    min-height: 120px;
    
}


.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.7s ease;
    box-sizing: border-box;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
    position: relative;
}


.testimonial.inactive-left {
    transform: translateX(-100%);
}


blockquote {
    text-align: center;
    font-size: 1.1rem;
    font-style: italic;
}

.author {
    text-align: center;
    margin-top: 1rem;
    font-weight: bold;
}


.dots {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: width 0.3s;
}

.dots button.active {
    width: 24px;
    background: var(--primary-color);
    border-radius: 9999px;
}

.newsletter {
    padding: 5rem;
    background-color: rgba(255, 165, 0, 0.4);
    overflow: hidden;
}

.newsletter-container {
    transition: transform 0.3s ease;
}

.newsletter-container:hover {
    transform: scale(1.02);
}

.newsletter-container h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
}

.newsletter-container p {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: .5rem;
}

.newsletter-container .book {
    text-align: center;
}

.book button {
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    color: #333;
    text-decoration: none;
    background-color: transparent;
    padding: 10px 20px;
    border-radius: .5rem;
    border: 2px solid orange;
    cursor: pointer;
    transition: all 0.4s ease;
}

.book button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: orange;
    z-index: -1;
    transition: all 0.4s ease;

}


.book button:hover::after {
    width: 100%;
}

.book button:hover {
    color: #fff;
}

.subscription-banner {
            width: 100%;
            background: linear-gradient(135deg, #39883d 0%, #2d6b31 100%);
            padding: 2rem 0;
            position: relative;
            overflow: hidden;
        }

        .subscription-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #daa520, #f4d03f, #daa520);
            background-size: 200% 100%;
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }

        .banner-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
            color: white;
        }

        .banner-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            background: linear-gradient(45deg, white, #daa520);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .banner-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
        }

        .subscription-form {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            max-width: 500px;
            margin: 0 auto;
        }

        .email-input {
            flex: 1;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            outline: none;
        }

        .email-input:focus {
            background: white;
            box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.3);
            transform: translateY(-2px);
        }

        .email-input::placeholder {
            color: #666;
        }

        .subscribe-btn {
            padding: 0.8rem 2rem;
            background: linear-gradient(45deg, #daa520, #f4d03f);
            color: #2d6b31;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .subscribe-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
        }

        .privacy-text {
            font-size: 0.85rem;
            opacity: 0.8;
            margin-top: 1rem;
        }

        @media (max-width: 768px) {
            .banner-content {
                padding: 0 1rem;
            }

            .banner-title {
                font-size: 1.8rem;
            }

            .banner-subtitle {
                font-size: 1rem;
            }

            .subscription-form {
                flex-direction: column;
                gap: 0.8rem;
            }

            .email-input {
                width: 100%;
                max-width: 300px;
            }

            .subscribe-btn {
                width: 100%;
                max-width: 200px;
                padding: 1rem;
            }
        }

/* Hero section */
.product-hero {
    height: 80vh;
    color: #fff;
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
}


.slideshow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fade 16s infinite;
}

.slide1 {
    background-image: url('../image/slide1.jpg');
    animation-delay: 0s;
}

.slide2 {
    background-image: url('../image/slide2.jpg');
    animation-delay: 4s;
}

.slide3 {
    background-image: url('../image/slide3.jpg');
    animation-delay: 8s;
}

.slide4 {
    background-image: url('../image/slide4.jpg');
    animation-delay: 12s;
}

.producthero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.producthero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.producthero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.producthero-content .btn {
    display: inline-block;
    background-color: #3e8405;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.producthero-content .btn:hover {
    background-color: #3e8405;
}

/* Products section */
.products-section {
    padding: 3rem 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #2c3e50;
}

.filters {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: #fff;
    border: 1px solid #ddd;
    color: #333;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s;
}

.filter-btn:hover {
    background-color: #f5f5f5;
}

.filter-btn.active {
    background-color: #e67e22;
    color: #fff;
    border-color: #e67e22;
}

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

.product-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-img {
    display: block;
    height: auto;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 10px;
}

.icon-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.icon-wrapper {
    position: relative;
}

.icon-btn {
    background: white;
    border: none;
    padding: 6px 8px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
    z-index: 1;
}

.icon-btn:hover {
    background: #ddd;
}

/* Tooltip Styling */
.tooltip {
    position: absolute;
    left: -110px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.8);
}

/* Show tooltip on hover */
.icon-wrapper:hover .tooltip {
    opacity: 1;
}

/* Hover Effect */
.product-image-wrapper:hover .overlay {
    opacity: 1;
}

.product-image-wrapper:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
}

.product-price {
    font-size: 16px;
    font-weight: 600;
    color: #3e8405;
    margin: 5px 0;
}

.product-link {
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 10px;
    padding: 10px;
    background-color: #3e8405;
    color: #fff;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.product-link:hover {
    background-color: #3e8405;
}



.ratings {
    color: #3e8405;
    font-size: 14px;
    margin-bottom: 5px 0;
}

.add-to-cart {
    display: block;
    width: 100%;
    padding: 10px 0;
    background-color: #e67e22;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    text-align: center;
}

.add-to-cart:hover {
    background-color: #d35400;
}



/* About page */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--primary-dark);
}

/* Hero section */
.aboutp-hero {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(rgba(105, 169, 143, 0.05), rgba(105, 169, 143, 0.1)), url('/api/placeholder/1400/500') center/cover no-repeat;
}

.aboutp-hero h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.aboutp-hero p {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}


/* Mission section */
.mission {
    padding: 5rem 0;
}


.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-header p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 2rem;
}

.mission-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mission-text {
    flex: 1;
}

.mission-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.mission-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--gray);
}

/* Values section */
.values {
    padding: 5rem 0;
    background-color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: var(--gray);
}




/* Testimonials section */

.founder-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.founder-image {
    flex-shrink: 0;
}

.founder-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.testimonial-text {
    flex: 1;
}

cite {
    display: block;
    margin-top: 1rem;
    font-style: italic;
    opacity: 0.8;
}

.about-testimonials {
    padding: 5rem 0;
    background-color: white;
}


.testimonial-slider {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    position: relative;
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.testimonial-card {
    background-color: var(--light);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    position: relative;
    min-width: 100%;
    box-sizing: border-box;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-info .company {
    color: var(--gray);
    font-size: 0.9rem;
}


.adots {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.adots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: width 0.3s;
}

.adots button.active {
    width: 24px;
    background: var(--primary-color);
    border-radius: 9999px;
}

footer {
    background-color: #1b4d1b;
    color: #fff;
    padding: 2rem 2rem 0 2rem;
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.5;
    padding: 0 1rem;
}

.logo-image {
    width: 15rem;
    height: 3rem;
}

.logo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-social ul {
    list-style: none;
    display: flex;
    gap: 1rem;

}

.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    text-decoration: none;
    color: #daa520;
}

.footer-social a:hover {
    background-color: #daa520;
    color: #fff;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.75;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    text-decoration: none;
    color: #cccccc;
}

.footer-links a:hover {
    color: #fff;
}

.footer-social {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-social h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.75;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #cccccc;
}

.contact-info a{
    text-decoration: none;
    color: #cccccc;
}

.footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid #cccccc;
    padding: .5rem;
    text-align: center;
    color: #cccccc;
}

/* Keyframes */
@keyframes fade {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}


/* Responsive adjustments */
@media (max-width: 992px) {
    .topbar {
        display: none;
    }

    .navbar {
        top: 0;
    }

    .mission-content {
        flex-direction: column;
        gap: 2rem;
    }

    .aboutp-hero h1 {
        font-size: 2.5rem;
    }

    .brand-components {
        flex-direction: column;
    }

    .brand-content {
        height: 400px;
    }

    .tagline {
        font-size: 1.8rem;
    }

    .subtext {
        font-size: 1rem;
    }


    .content-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .product-title {
        font-size: 16px;
    }

    .product-list {
        gap: .5rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {

    .navbar {
        padding: 1rem;
    }

    .cart {
        margin-right: 0;
    }

    .nav-list {
        display: none;
    }

    .menu {
        display: block;
        background: #eaa700;
        border: none;
        padding: .5rem;
        border-radius: .5rem;
        cursor: pointer;
    }

    .menu i {
        font-size: 1.2rem;
        color: #fff;
    }

    .cart .btn {
        display: none;
    }

    .user-menu{
        display: none;
    }
    
    .whatsapp-float {
                width: 55px;
                height: 55px;
                bottom: 20px;
                right: 20px;
                font-size: 22px;
            }

            .whatsapp-icon {
                width: 26px;
                height: 26px;
            }

    .hero-main {
        width: 100%;
        padding-right: 1rem;
    }
    
    .hero-main h1 {
                font-size: 2rem;
            }
            
            .hero-main p {
                font-size: 1rem;
            }
    
    .container {
        padding: 0 1rem;
    }
    


    .about {
        padding: 1rem;
    }

    .about-heading h2 {
        margin-bottom: 1rem;
    }

    .about-heading p {
        font-size: 16px;
    }

.founder-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .founder-image img {
        width: 100px;
        height: 100px;
    }
    
    .testimonial-text {
        width: 100%;
    }
    
    .glass-card {
        padding: 1.5rem;
    }

    .learn-more .btn {
        font-size: .8rem;
    }


    .featured-products {
        padding: 2rem;
    }

    .view-all .btn {
        font-size: .8rem;
    }

    .featured-products{
        padding: 2rem 1rem;
    }

    
.product-category {
        font-size: 10px;
    }

    .product-title {
        font-size: 14px;
    }

    .ratings{
        font-size: 12px;
    }

    .product-price {
        font-size: 14px;
    }

    .video-container {
        padding: 40px 20px;
    }

    .video-section {
        padding-top: 2rem;
    }

    .section-header p {
        padding: .5rem auto;
    }

    .video-vid {
        height: 20rem;
    }


    .video-info {
        padding: 30px 20px 20px;
    }

    .skincare-icons {
        gap: 2rem;
    }

    .skincare-icon {
        width: 70px;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
    }

    .icon-circle i {
        font-size: 23px;
    }

    .icon-label {
        font-size: 13px;
    }


    .testimonials {
        padding: 4rem 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-card::before {
        font-size: 3rem;
        top: 0.5rem;
        left: 1rem;
    }

    .testimonial-card p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .testimonial-author {
        gap: 2rem;
    }

    .author-image {
        width: 50px;
        height: 50px;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .author-info h4 {
        font-size: 1rem;
    }

    .author-info .company {
        font-size: 0.85rem;
    }

    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        margin: 1rem 0;
    }

    .aboutp-hero h1 {
        font-size: 2rem;
    }

    .aboutp-hero p {
        font-size: 1.1rem;
    }

    .products-grid{
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .product-link{
        font-size: 14px;
        display: inline-block;
        padding: 8px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-logo p {
        padding: 0;
    }

    .footer-logo ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-links,
    .footer-social {
        margin-top: 2rem;
    }

}

@media (max-width: 576px) {
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .skincare-icons {
        gap: 1rem;
    }

    .skincare-icon {
        width: 50px;
    }

    .icon-circle {
        width: 40px;
        height: 40px;
    }

    .icon-circle i {
        font-size: 21px;
    }

    .icon-label {
        font-size: 11px;
    }

    .stat-card .number {
        font-size: 2.5rem;
    }
}