/* --- 1. Typography & Global Reset --- */
body {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300;400;500;600;700&display=swap');

/* --- Global Reset & Typography --- */
body {
    margin: 0;
    font-family: 'Chakra Petch', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    margin: 0;
}

a {
    font-family: 'Chakra Petch', sans-serif;
}

/* --- Navigation & Header --- */
.site-header {
    background-color: #000;
    padding: 20px 40px;
    border-bottom: 1px solid #333;
    position: relative;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.header-left,
.header-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.header-left {
    gap: 20px;
}

.hamburger-icon {
    font-size: 28px;
    cursor: pointer;
    display: none;
    /* Hidden on desktop */
}

/* Desktop Menu */
.menu-primary-menu-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

.menu-primary-menu-container ul li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.menu-primary-menu-container ul li a:hover {
    color: #fff200;
}

.header-center {
    flex: 1;
    text-align: center;
}

.header-center img {
    max-height: 50px;
    width: auto;
}

.header-right {
    justify-content: flex-end;
    gap: 25px;
}

.cart-link {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #fff200;
    color: #000;
    font-size: 10px;
    font-weight: bold;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Mobile Navigation --- */
@media (max-width: 900px) {
    .site-header {
        padding: 15px 20px;
    }

    .hamburger-icon {
        display: block;
        /* Show on mobile */
    }

    .menu-primary-menu-container {
        display: none;
        /* Hide default menu on mobile, intended for JS toggle */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        border-bottom: 1px solid #333;
        padding: 20px;
    }

    .menu-primary-menu-container.active {
        display: block;
    }

    .menu-primary-menu-container ul {
        flex-direction: column;
        gap: 15px;
    }
}

.cart-link:hover,
.search-icon:hover {
    color: #fff200;
}

/* --- Mobile Responsiveness: Hero & Sections --- */
@media (max-width: 768px) {

    /* Hero */
    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-top-label {
        justify-content: center;
    }

    /* Science & Products */
    .science-section .container,
    .products-grid {
        grid-template-columns: 1fr;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.cart-count {
    background-color: #d4af37;
    color: #000;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 5px;
}

/* --- 3. Hero Section (No Overlapping Fix) --- */
.hero-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    align-items: center;
}

.cart-link,
.search-icon {
    color: #d4af37;
    font-size: 20px;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cart-link:hover,
.search-icon:hover {
    color: #ffcc00;
}

.cart-count {
    background-color: #d4af37;
    color: #000;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 5px;
}

/* --- 3. Hero Layout Fix --- */
.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1550px;
    /* Wider container to stop overlapping */
    margin: 0 auto;
    padding: 0 50px;
    gap: 60px;
}

/* LEFT SIDE */
.hero-main-title {
    font-size: 72px !important;
    line-height: 0.9 !important;
    /* Tight blocky stack */
    margin: 20px 0 40px 0;
}

.hero-cta-button {
    background-color: #f7e643;
    /* Exact Yellow Pill */
    color: #000;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.hero-cta-button:hover {
    background-color: #ffcc00;
    transform: translateY(-2px);
}

.hero-label-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.hero-top-label {
    font-size: 14px;
    letter-spacing: 1px;
    color: #fff;
}

.accent-bar {
    width: 60px;
    height: 3px;
    background-color: #d4af37;
}

.hero-left {
    flex: 1;
    min-width: 450px;
}

.hero-center {
    flex: 1.5;
    text-align: center;
}

.hero-center img {
    max-width: 100%;
    height: auto;
}

.hero-right {
    flex: 1;
    min-width: 350px;
}

.hero-disclaimer {
    font-size: 11px;
    color: #999;
    margin-bottom: 20px;
    line-height: 1.5;
}

.hero-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.hero-feature-list li {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.hero-feature-list li:before {
    content: "•";
    color: #d4af37;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.stars {
    color: #d4af37;
    font-size: 14px;
}

.rating-number {
    color: #999;
    font-size: 12px;
    margin-left: 5px;
}

.hero-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
}

/* --- Divider --- */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #333 50%, transparent);
    margin: 0 auto;
}

/* --- Science Section --- */
.science-section {
    padding: 100px 0;
    background-color: #000;
}

.science-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    gap: 100px;
}

.science-left {
    flex: 1;
    position: relative;
}

.product-image-wrapper {
    position: relative;
    display: inline-block;
}

.product-image-wrapper img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.product-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(168, 164, 93, 0.4) 0%, rgba(168, 164, 93, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.best-seller-badge {
    display: block;
    width: fit-content;
    margin: 20px auto 0;
    background-color: #f7e643;
    color: #000;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
}

.science-right {
    flex: 1;
    max-width: 520px;
}

.science-title {
    font-size: 48px;
    margin: 15px 0 20px 0;
    line-height: 1.1;
    max-width: 480px;
}

.science-right .stars {
    font-size: 16px;
    margin-bottom: 5px;
}

.active-ingredients {
    margin: 25px 0;
}

.ingredients-title {
    font-size: 13px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

.ingredients-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ingredients-list li {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.ingredients-list li:before {
    content: "✓";
    color: #d4af37;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 14px;
}

.price-buy-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 25px;
}

.product-price {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.buy-now-button {
    background-color: #f7e643;
    color: #000;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.buy-now-button:hover {
    background-color: #ffcc00;
    transform: translateY(-2px);
}

/* --- How It Works Section --- */
.how-it-works {
    padding: 100px 0;
    text-align: center;
}

.how-it-works h2 {
    font-size: 48px;
    margin: 20px 0 0 0;
    letter-spacing: 1px;
}

.icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.icon-circle {
    width: 90px;
    height: 90px;
    background: rgba(255, 153, 0, 0.1);
    /* Aura/Glow effect */
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffcc00;
    /* Yellow icons */
    font-size: 32px;
}

.icon-item p {
    font-size: 14px;
    margin: 0;
    letter-spacing: 0.5px;
}

/* --- Popular Products Section --- */
.popular-products-section {
    padding: 100px 0;
    background-color: #161614;
}

.products-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.products-title {
    font-size: 48px;
    margin: 15px 0 0 0;
}

.products-nav-arrows {
    display: flex;
    gap: 15px;
}

.nav-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background-color: #d4af37;
    border-color: #d4af37;
    color: #000;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.product-card {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-image-container {
    position: relative;
    margin-bottom: 0;
    background-color: #000;
    border-radius: 12px;
    padding: 30px 20px 25px;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.product-image-container img {
    width: 146%;
    max-width: 140%;
    height: auto;
    display: block;
    margin: 0 auto;
    flex-grow: 1;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.quick-view-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    opacity: 1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.product-card:hover .quick-view-btn {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 5px 0;
}

.product-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
}

.product-rating .star {
    color: transparent;
    -webkit-text-stroke: 1px #ff8c00;
    text-stroke: 1px #ff8c00;
    font-size: 16px;
}

.product-rating .star.filled {
    color: #ff8c00;
    -webkit-text-stroke: 0;
    text-stroke: 0;
}

.product-rating .rating-count {
    color: #666;
    font-size: 12px;
    margin-left: 5px;
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 100px 0;
    background-color: #161614;
    text-align: center;
}

.testimonials-title {
    font-size: 48px;
    margin: 15px 0 60px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 0 50px;
}

.testimonial-card {
    background-color: #0d0d0d;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
}

.testimonial-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background-color: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 14px;
    font-weight: bold;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
    margin: 0 0 25px 0;
    min-height: 120px;
}

.testimonial-stars {
    color: #00d4ff;
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial-author {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
}

.testimonial-date {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #d4af37;
    width: 30px;
    border-radius: 5px;
}

/* --- Featured Brands Section --- */
.featured-brands-section {
    padding: 80px 0;
    background-color: #000;
    text-align: center;
}

.brands-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0 0 50px 0;
    color: #fff;
    position: relative;
    display: inline-block;
}

.brands-title::after {
    content: '';
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 1px;
    background-color: #d4af37;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.brand-box {
    border: 1px solid #222;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.brand-box:hover {
    background-color: #0d0d0d;
    border-color: #333;
}

.brand-box img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.3s ease;
}

.brand-box:hover img {
    filter: grayscale(0%) brightness(1);
}

.brand-name {
    font-size: 11px;
    color: #666;
    margin: 0;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.brand-box:hover .brand-name {
    color: #999;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 100px 0;
    background-color: #191917;
}

.faq-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.faq-header {
    margin-bottom: 50px;
    position: relative;
}

.faq-label {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.faq-label::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 2px;
    background-color: #ff8c00;
    margin-left: 15px;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.see-all-faqs {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.see-all-faqs:hover {
    color: #ff8c00;
}

.faq-accordion {
    max-width: 100%;
}

.faq-item {
    border-bottom: 1px solid #333;
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    opacity: 0.8;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
}

.faq-toggle {
    font-size: 28px;
    color: #fff;
    font-weight: 300;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 0 25px 0;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: #999;
    margin: 0;
    padding-right: 50px;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* --- Instagram Strip Section --- */
/* --- Instagram Strip Section --- */
.instagram-section {
    background-color: #000;
    padding: 60px 0;
    /* Adds vertical spacing above/below the strip */
    width: 100%;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* THIS ACHIEVES THE WIDTH OF THE 2ND SCREENSHOT */
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    /* Prevents touching edges on small tablets */
}

/* CTA COLUMN */
.instagram-cta {
    background-color: #fff200;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    /* ENSURES THE BOX IS A PERFECT SQUARE */
    aspect-ratio: 1 / 1;
}

.instagram-icon svg {
    width: 35px;
    height: 35px;
    color: #000;
    margin-bottom: 10px;
}

.instagram-cta h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    color: #000;
    margin: 0;
}

/* IMAGE CELLS */
.instagram-image {
    position: relative;
    overflow: hidden;
    display: block;
    /* FORCES THE GRID ITEM TO BE SQUARE */
    aspect-ratio: 1 / 1;
}

.instagram-image img {
    width: 100%;
    height: 100%;
    /* AUTOMATICALLY CROPS NON-SQUARE IMAGES TO FILL THE SQUARE */
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.instagram-image:hover img {
    transform: scale(1.05);
}

/* RESPONSIVE: Maintain the "Strip" look until mobile */
@media (max-width: 991px) {
    .instagram-grid {
        max-width: 90%;
    }
}

@media (max-width: 600px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instagram-cta {
        grid-column: span 2;
        aspect-ratio: auto;
        /* Let it grow if text is long on mobile */
        padding: 40px 20px;
    }
}

/* --- Main Footer Section --- */
.main-footer {
    background-color: #0a0a0a;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 20px 40px;
    font-family: 'Rajdhani', sans-serif;
    text-align: center;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Typography & Contact */
.call-us {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-phone {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    line-height: 1;
    display: block;
}

.footer-email {
    font-size: 14px;
    margin-top: 15px;
    color: #999;
}

.footer-email a {
    color: #fff200;
    text-decoration: none;
    font-weight: 600;
}

/* Newsletter Form (Capsule Style) */
.footer-newsletter {
    margin: 40px auto;
    max-width: 550px;
}

.subscribe-form .input-group {
    display: flex;
    background: #000000;
    /* Dark background for input area */
    border: 1px solid #333;
    border-radius: 50px;
    /* Perfect capsule shape */
    padding: 5px;
    align-items: center;
    overflow: hidden;
}

.email-icon {
    padding-left: 20px;
    color: #666;
    display: flex;
    align-items: center;
}

.subscribe-form input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 12px 15px;
    flex-grow: 1;
    outline: none;
    font-size: 15px;
    font-family: 'Rajdhani', sans-serif;
}

.subscribe-form button {
    background: #fff200;
    color: #000;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.subscribe-form button:hover {
    background: #e6d900;
    transform: scale(1.02);
}

/* WordPress Menu Links */
.footer-links-list {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.footer-links-list a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-links-list a:hover {
    color: #fff200;
}

.footer-divider {
    border: 0;
    border-top: 1px solid #222;
    margin: 40px 0 30px;
    opacity: 0.5;
}

/* Bottom Bar Alignment */
.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    /* Centers social icons, pushes others to sides */
    align-items: center;
    font-size: 13px;
    color: #888;
}

/* Social Icons (Fixed Visibility) */
.footer-social {
    display: flex !important;
    gap: 15px !important;
    justify-content: center !important;
    align-items: center !important;
}

.footer-social a {
    width: 40px !important;
    height: 40px !important;
    background-color: #0a0a0a !important;
    /* Matches footer bg */
    border: 1px solid #333 !important;
    /* Visible circular outline */
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    transition: all 0.3s ease-in-out !important;
}

.footer-social a i {
    color: #ffffff !important;
    /* Force white icon color */
    font-size: 16px !important;
    display: block !important;
}

.footer-social a:hover {
    background-color: #fff200 !important;
    border-color: #fff200 !important;
}

.footer-social a:hover i {
    color: #000000 !important;
}

/* Legal Links Alignment */
.footer-legal {
    text-align: right;
}

.footer-legal a {
    color: #888;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
}

.footer-legal a:hover {
    color: #fff;
}

.copyright {
    text-align: left;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .footer-legal,
    .copyright {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-phone {
        font-size: 32px;
    }

    .footer-links-list {
        gap: 15px;
    }
}

/* --- Additional Mobile Responsiveness --- */
@media (max-width: 768px) {

    /* Hero Section Stacking */
    .hero-section .container {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .hero-content {
        order: 2;
        padding-right: 0;
    }

    .hero-image {
        order: 1;
        margin-bottom: 30px;
        justify-content: center;
    }

    .hero-title {
        font-size: 34px;
        /* Smaller title on mobile */
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Product Grids to Single Column */
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    /* Science Section Stacking */
    .science-section .container {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .science-image {
        margin-bottom: 30px;
    }

    /* Features Grid Stacking */
    .features-grid {
        grid-template-columns: 1fr !important;
    }

    /* General Padding Adjustments */
    .section-title {
        font-size: 28px;
    }

    .site-header {
        padding: 15px 20px;
    }

    /* Ensure inputs use the new font */
    input,
    button,
    select,
    textarea {
        font-family: 'Chakra Petch', sans-serif !important;
    }
}

/* --- FINAL MOBILE FIXES --- */
@media (max-width: 900px) {

    /* 1. Header Fixes */
    .menu-primary-menu-container,
    .header-left ul {
        display: none !important;
        /* Hide links by default */
    }

    .hamburger-icon {
        display: block !important;
        font-size: 24px;
    }

    .site-header {
        padding: 15px 20px;
    }

    .header-container {
        padding: 0;
    }

    /* 2. Hero Section Fixes */
    .hero-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 30px;
    }

    /* Reorder: Content first, Image second, Features last */
    .hero-left {
        order: 2;
        margin-bottom: 20px;
    }

    .hero-center {
        order: 1;
        margin-bottom: 20px;
    }

    /* Image */
    .hero-right {
        order: 3;
    }

    .hero-center img {
        max-width: 80% !important;
        margin: 0 auto;
    }

    .hero-main-title {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    .hero-label-wrapper {
        justify-content: center !important;
    }

    /* 3. "How It Works" Icons */
    .icons-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        /* 2x2 grid */
        gap: 20px !important;
        padding: 0 20px;
    }

    /* 4. Science Section */
    .science-container {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
    }

    .science-left,
    .science-right {
        width: 100% !important;
    }

    .active-ingredients {
        text-align: left;
        /* Keep ingredients list readable */
        display: inline-block;
    }

    /* 5. Products Grid */
    .products-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        /* 1 column */
        padding: 0 40px !important;
    }

    /* 6. Testimonials Fixes (Clamp Text) */
    .testimonials-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .testimonial-text {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        /* Limit to 4 lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 14px;
        line-height: 1.5;
    }

    /* 7. Brands Grid */
    .brands-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

/* --- STOP HORIZONTAL SCROLL & SCALE CONTENT --- */
@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative;
    }

    /* Constrain all major containers */
    .container,
    .site-header,
    .hero-container,
    .science-container,
    .hero-section,
    .testimonials-section,
    .main-footer,
    .instagram-section {
        max-width: 100vw !important;
        box-sizing: border-box !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        overflow-x: hidden;
    }

    /* Fix Header / Product Title Overflow */
    .products-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }

    .products-title {
        font-size: 26px !important;
        /* Smaller font to fit */
        text-align: center;
        white-space: normal !important;
        /* Force wrap */
        overflow-wrap: break-word;
        /* Break long words if needed */
        word-wrap: break-word;
        max-width: 100%;
        line-height: 1.2;
    }

    /* Move arrows to natural flow so they don't stick out */
    .products-nav-arrows {
        position: static !important;
        margin-top: 20px;
        display: flex;
        justify-content: center;
        width: 100%;
        gap: 20px;
    }

    /* Hero Text Scaling */
    .hero-main-title {
        font-size: 32px !important;
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        /* Ensure wrapping */
    }

    /* Ensure Images stay within bounds */
    img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Brands Scroll Container */
    .brands-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center;
    }
}

/* --- FINAL HEADER OVERFLOW FIX --- */
@media (max-width: 768px) {

    /* UNIVERSAL HEADING SCALING */
    h1,
    h2,
    h3,
    .hero-main-title,
    .science-title,
    .faq-title,
    .products-title,
    .testimonials-title,
    .how-it-works h2 {
        font-size: 28px !important;
        /* Safe size for mobile */
        line-height: 1.3 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        max-width: 100% !important;
        hyphens: auto;
        /* Adds hyphens if words are still too long */
    }

    /* Slightly larger for Hero if space permits */
    .hero-main-title {
        font-size: 32px !important;
    }

    /* Ensure FAQ Container doesn't overflow */
    .faq-header {
        max-width: 100%;
        padding: 0 10px;
    }
}

/* --- FINAL ALIGNMENT FIXES --- */

/* Desktop Menu Force Style */
@media (min-width: 901px) {

    .header-left ul,
    .menu-primary-menu-container ul {
        list-style: none !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 30px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .header-left li,
    .menu-primary-menu-container li {
        margin: 0 !important;
    }

    .header-left a,
    .menu-primary-menu-container a {
        text-decoration: none !important;
        color: #fff !important;
        font-weight: 600 !important;
        font-size: 14px !important;
        text-transform: uppercase !important;
    }
}

/* Mobile FAQ & Alignment Fixes */
@media (max-width: 768px) {
    .faq-header {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 15px !important;
        height: auto !important;
    }

    .see-all-faqs {
        position: static !important;
        margin-top: 10px;
    }

    .faq-label {
        margin-bottom: 5px;
    }

    /* Science Ingredients Alignment */
    .active-ingredients {
        text-align: left !important;
        display: inline-block !important;
        /* Shrink to fit content */
        margin: 0 auto !important;
    }
}

/* --- Fix Price & Buy Button Alignment --- */
@media (max-width: 768px) {
    .price-buy-wrapper {
        display: flex !important;
        flex-direction: row !important;
        /* Keep side-by-side */
        justify-content: center !important;
        /* Center on screen */
        align-items: center !important;
        /* Vertically align dot/text */
        gap: 20px !important;
        margin-top: 20px;
        width: 100%;
    }

    .product-price {
        margin: 0 !important;
        /* Remove any default margins */
        font-size: 24px !important;
        line-height: 1 !important;
    }

    .buy-now-button {
        margin: 0 !important;
    }
}

/* --- Fix Header Label & Line Alignment --- */
@media (max-width: 768px) {

    .products-header .hero-label-wrapper,
    .hero-label-wrapper {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        gap: 15px !important;
        /* Consistent gap between Text and Line */
    }

    .hero-top-label {
        flex: 0 0 auto !important;
        /* Don't shrink/grow */
        margin: 0 !important;
    }

    .accent-bar {
        flex: 0 0 40px !important;
        /* Fixed width for the line */
        margin: 0 !important;
    }
}

/* --- FINAL PRODUCTS HEADER ALIGNMENT --- */
@media (max-width: 768px) {
    .products-header {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        /* Centers children horizontally */
        width: 100% !important;
    }

    .products-header .hero-label-wrapper,
    .hero-label-wrapper {
        display: inline-flex !important;
        /* Shrink to fit content */
        width: auto !important;
        justify-content: center !important;
        align-items: center !important;
        /* Perfect vertical centering */
        margin: 0 auto 15px auto !important;
        /* Center the block itself */
        gap: 15px !important;
    }

    .hero-top-label {
        line-height: 1 !important;
        /* Remove line-height offsets */
        padding: 0 !important;
        margin: 0 !important;
        display: inline-block !important;
    }

    .accent-bar {
        display: inline-block !important;
        margin: 0 !important;
        height: 3px !important;
        /* Ensure visibility */
        transform: translateY(1px);
        /* Optical adjustment if needed */
    }

    /* Double Ensure Title Centering */
    .products-title {
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
}

/* ========================================
   WOOCOMMERCE SINGLE PRODUCT PAGE STYLES
   ======================================== */

/* Product Page Wrapper */
.product-page-wrapper {
    background-color: #000;
    color: #fff;
    padding: 60px 0 0 0;
}

/* Product Main Section */
.product-main-section {
    padding: 60px 0 80px;
    background-color: #000;
}

.product-main-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    gap: 80px;
}

/* Left: Product Image */
.product-image-section {
    flex: 1;
    max-width: 500px;
}

.product-image-wrapper-single {
    position: relative;
    background-color: #0d0d0d;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    height: 100%;
}

.product-image-wrapper-single::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 164, 93, 0.3) 0%, rgba(168, 164, 93, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.main-product-image {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

/* Right: Product Details */
.product-details-section {
    flex: 1;
    max-width: 600px;
}

/* Breadcrumb */
.product-breadcrumb {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.product-breadcrumb a {
    color: #00bfff;
    text-decoration: none;
    transition: color 0.3s;
}

.product-breadcrumb a:hover {
    color: #fff200;
}

/* Category Badge */
.product-category-badge {
    display: inline-block;
    background-color: transparent;
    border: 1px solid #00bfff;
    color: #00bfff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.product-category-badge:hover {
    background-color: #00bfff;
    color: #000;
}

/* Product Title */
.product-title-main {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Product Meta Info */
.product-meta-info {
    margin-bottom: 20px;
}

.product-meta-item {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 8px;
    line-height: 1.6;
}

.product-meta-item strong {
    color: #fff;
    font-weight: 600;
}

/* Price */
.product-price-main {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 25px 0 20px 0;
}

.product-price-main .woocommerce-Price-amount {
    color: #fff;
}

/* Availability */
.product-availability {
    margin-bottom: 15px;
    font-size: 14px;
}

.in-stock {
    color: #ccc;
}

.in-stock strong {
    color: #4ade80;
    font-weight: 600;
}

.out-of-stock strong {
    color: #ef4444;
    font-weight: 600;
}

/* Points/Rewards */
.product-points {
    background-color: rgba(255, 242, 0, 0.1);
    border-left: 3px solid #fff200;
    padding: 12px 18px;
    margin: 20px 0;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

/* Add to Cart Wrapper - Right Side */
.product-add-to-cart-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-add-to-cart-wrapper .cart {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.product-add-to-cart-wrapper .quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 50px;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
}

.product-add-to-cart-wrapper .quantity input[type="number"] {
    flex: 1;
    padding: 12px 15px;
    background-color: transparent;
    border: none;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    -moz-appearance: textfield;
}

.product-add-to-cart-wrapper .quantity input[type="number"]::-webkit-outer-spin-button,
.product-add-to-cart-wrapper .quantity input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-add-to-cart-wrapper .quantity .qty-btn {
    background-color: transparent;
    border: none;
    color: #fff;
    padding: 12px 18px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
}

.product-add-to-cart-wrapper .quantity .qty-btn:hover {
    background-color: #333;
}

.product-add-to-cart-wrapper .single_add_to_cart_button {
    background-color: #f7e643 !important;
    color: #000 !important;
    padding: 14px 40px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-decoration: none;
    display: block;
    width: 100%;
    max-width: 300px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 14px !important;
    letter-spacing: 0.5px;
    border: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-add-to-cart-wrapper .single_add_to_cart_button:hover {
    background-color: #ffcc00 !important;
    color: #000 !important;
    transform: translateY(-2px);
}

/* Override WooCommerce default button styles */
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background-color: #f7e643 !important;
    color: #000 !important;
    border-radius: 50px !important;
    font-family: 'Rajdhani', sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    border: none !important;
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background-color: #ffcc00 !important;
    color: #000 !important;
}

.product-add-to-cart-wrapper .single_add_to_cart_button:disabled {
    background-color: #666;
    color: #999;
    cursor: not-allowed;
    transform: none;
}

/* ========================================
   PRODUCT VARIATIONS STYLING
   ======================================== */

/* Variations and Cart Container - Desktop Layout */
.variations-and-cart-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin: 30px 0;
}

/* Variations Wrapper - Left Side */
.variations-wrapper {
    flex: 0 0 auto;
    width: auto;
    min-width: 250px;
}

.variation-group {
    margin-bottom: 25px;
}

.variation-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Variation Buttons Container - STACKED VERTICALLY */
.variation-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

/* Individual Variation Button - OUTLINE STYLE BY DEFAULT */
.variation-button {
    background-color: transparent;
    border: 2px solid #f7e643;
    color: #f7e643;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 140px;
    text-align: center;
}

.variation-button:hover {
    background-color: rgba(247, 230, 67, 0.1);
    border-color: #ffcc00;
    color: #ffcc00;
    transform: translateY(-2px);
}

.variation-button.selected {
    background-color: #f7e643;
    border-color: #f7e643;
    color: #000;
    font-weight: 700;
}

.variation-button.selected::after {
    content: '✓';
    position: absolute;
    top: 6px;
    right: 8px;
    font-size: 14px;
    font-weight: bold;
    color: #000;
}

.variation-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background-color: transparent;
    border-color: #333;
    color: #666;
}

.variation-button:disabled:hover {
    transform: none;
    background-color: transparent;
    border-color: #333;
    color: #666;
}

/* Single Variation Display */
.single_variation_wrap {
    margin-top: 25px;
    width: 100%;
}

.woocommerce-variation {
    margin-bottom: 20px;
}

.woocommerce-variation-price {
    margin-bottom: 15px;
}

.woocommerce-variation-price .price {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.woocommerce-variation-description {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.woocommerce-variation-availability {
    margin-bottom: 15px;
    font-size: 14px;
}

.woocommerce-variation-availability .stock {
    color: #4ade80;
    font-weight: 600;
}

/* Reset Button */
.reset_variations {
    background: transparent;
    border: none;
    color: #00bfff;
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 10px;
    padding: 0;
    font-family: 'Chakra Petch', sans-serif;
}

.reset_variations:hover {
    color: #f7e643;
}

/* Product Category Info */
.product-category-info {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #999;
}

.product-category-info span {
    color: #fff;
    font-weight: 600;
    margin-right: 10px;
}

.product-category-info a {
    color: #00bfff;
    text-decoration: none;
    transition: color 0.3s;
}

.product-category-info a:hover {
    color: #fff200;
}

/* ========================================
   PRODUCT TABS SECTION
   ======================================== */

.product-tabs-section {
    background-color: #0d0d0d;
    padding: 0 0 80px 0;
}

.product-tabs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Tab Navigation */
.product-tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #1a1a1a;
    margin-bottom: 50px;
}

.tab-button {
    background-color: transparent;
    border: none;
    color: #999;
    padding: 20px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    font-family: 'Chakra Petch', sans-serif;
    letter-spacing: 0.5px;
}

.tab-button:hover {
    color: #fff;
}

.tab-button.active {
    color: #fff;
    background-color: #000;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff200;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 30px 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-content-body {
    color: #ccc;
    font-size: 15px;
    line-height: 1.8;
    max-width: 900px;
}

.tab-content-body h2,
.tab-content-body h3 {
    color: #fff;
    margin: 30px 0 15px 0;
    font-weight: 700;
}

.tab-content-body p {
    margin-bottom: 20px;
}

.tab-content-body ul,
.tab-content-body ol {
    margin: 20px 0;
    padding-left: 25px;
}

.tab-content-body li {
    margin-bottom: 10px;
    position: relative;
}

.tab-content-body ul li::before {
    content: "✓";
    color: #00bfff;
    font-weight: bold;
    position: absolute;
    left: -25px;
}

/* Additional Information Table */
.additional-info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.additional-info-table tr {
    border-bottom: 1px solid #333;
}

.additional-info-table th,
.additional-info-table td {
    padding: 18px 20px;
    text-align: left;
}

.additional-info-table th {
    color: #fff;
    font-weight: 600;
    width: 30%;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.additional-info-table td {
    color: #ccc;
    font-size: 14px;
}

/* Reviews Section Styling */
#reviews {
    max-width: 900px;
}

#reviews .commentlist {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

#reviews .comment {
    background-color: #000;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #1a1a1a;
}

#reviews .comment-text {
    color: #ccc;
}

#reviews .star-rating {
    color: #ff8c00;
    margin-bottom: 10px;
}

#reviews .meta {
    color: #999;
    font-size: 13px;
    margin-bottom: 15px;
}

#reviews .meta strong {
    color: #fff;
    font-weight: 600;
}

/* Review Form */
#review_form_wrapper {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #333;
}

#review_form input[type="text"],
#review_form input[type="email"],
#review_form textarea {
    width: 100%;
    padding: 14px 18px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-family: 'Chakra Petch', sans-serif;
    margin-bottom: 15px;
}

#review_form input[type="text"]:focus,
#review_form input[type="email"]:focus,
#review_form textarea:focus {
    outline: none;
    border-color: #00bfff;
}

#review_form .submit {
    background-color: #00bfff;
    color: #000;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

#review_form .submit:hover {
    background-color: #fff200;
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 991px) {
    .product-main-container {
        flex-direction: column;
        gap: 50px;
        padding: 0 30px;
    }

    .product-image-section,
    .product-details-section {
        max-width: 100%;
    }

    .product-title-main {
        font-size: 36px;
    }

    .product-tabs-container {
        padding: 0 30px;
    }

    .tab-button {
        padding: 15px 25px;
        font-size: 14px;
    }

    /* Variation buttons on tablet */
    .variation-button {
        padding: 14px 26px;
        font-size: 14px;
        min-width: 130px;
    }

    .variations-wrapper {
        width: 100%;
    }
}

@media (max-width: 768px) {

    /* Main Layout Adjustments */
    .product-page-wrapper {
        padding: 40px 0 0 0;
    }

    .product-main-section {
        padding: 40px 0 60px;
    }

    .product-main-container {
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Ensures the flex container children center */
    }

    /* Text & Meta Centering */
    .product-details-section,
    .product-breadcrumb,
    .product-title-main,
    .product-meta-info,
    .product-price-main,
    .product-availability,
    .product-category-info,
    .variation-label {
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .product-title-main,
    .product-price-main {
        font-size: 28px;
    }

    .product-category-badge {
        display: inline-block;
        margin: 0 auto 15px auto;
    }

    /* Variation Buttons - Full Width & Stacked */
    .variations-wrapper,
    .variation-group {
        width: 100%;
        margin: 0 0 20px 0;
    }

    .variation-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        /* Space between the "Case of 5" and "Single Vial" */
    }

    .variation-button {
        width: 100% !important;
        max-width: none !important;
        min-width: 0;
        padding: 16px 24px;
        font-size: 14px;
        text-align: center;
        box-sizing: border-box;
    }

    /* Add to Cart & Quantity - Full Width & Stacked */
    .variations-and-cart-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 20px;
    }

    .product-add-to-cart-wrapper {
        width: 100%;
    }

    .product-add-to-cart-wrapper .cart {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px;
    }

    .product-add-to-cart-wrapper .quantity,
    .product-add-to-cart-wrapper .quantity input {
        width: 100% !important;
        max-width: none !important;
        text-align: center;
    }

    .product-add-to-cart-wrapper .single_add_to_cart_button {
        width: 100% !important;
        max-width: none !important;
        padding: 18px;
        /* Slightly taller for mobile tap targets */
        text-transform: uppercase;
        font-weight: bold;
    }

    /* Tabs Navigation */
    .product-tabs-nav {
        flex-direction: column;
        width: 100%;
    }

    .tab-button {
        width: 100%;
        text-align: center;
        /* Changed from left to center */
        padding: 15px 20px;
        border-bottom: 1px solid #1a1a1a;
    }

    .tab-button.active::after {
        width: 100%;
        /* Line across the bottom instead of the side */
        height: 4px;
        left: 0;
        bottom: 0;
        top: auto;
    }

    .product-tabs-container {
        padding: 0 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .product-image-wrapper-single {
        padding: 15px;
        min-height: 450px;
    }

    .main-product-image {
        max-width: 95%;
        max-height: 95%;
    }

    .product-title-main {
        font-size: 24px;
    }

    .tab-content-title {
        font-size: 20px;
    }

    .additional-info-table th,
    .additional-info-table td {
        padding: 12px 15px;
        font-size: 12px;
    }
} 
 