/* ========== GLOBAL STYLES ========== */
* {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fafbfc;
    overflow-x: hidden;
}

/* ========== COLOR VARIABLES ========== */
:root {
    --gold: #c6a43f;
    --dark-green: #1a2e35;
    --light-sand: #f8f1e5;
    --text-dark: #1a2e35;
    --text-light: #6c757d;
}

/* ========== UTILITY CLASSES ========== */
.premium-gold {
    color: var(--gold);
}

.premium-bg-gold {
    background-color: var(--gold);
}

.premium-bg-dark {
    background-color: var(--dark-green);
}

.premium-bg-sand {
    background-color: var(--light-sand);
}

.premium-text-dark {
    color: var(--text-dark);
}

/* ========== FIXED HEADER ========== */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
}

.topbar-move {
    background: var(--dark-green);
    color: #f8f1e5;
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(198, 164, 63, 0.3);
    white-space: nowrap;
    overflow: hidden;
}

.topbar-move span {
    display: inline-block;
    animation: scrollLeft 22s linear infinite;
}

.topbar-move span i {
    margin: 0 15px;
    color: var(--gold);
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ========== HERO SECTION ========== */
.hero-section {
    padding: 40px 0 40px;
    background: #fff;
}

.hero-badge {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.hero-title {
    font-weight: 700;
    margin: 10px 0;
    font-size: 20px;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-subtitle {
    max-width: 600px;
    margin: 0 auto 15px;
    font-size: clamp(14px, 2.5vw, 18px);
    line-height: 1.5;
    color: var(--text-light);
}

/* ========== VIDEO SECTION ========== */
.video-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 52.25%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.video-wrapper vturb-smartplayer,
.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/* ========== ADS CAROUSEL ========== */
.ads-carousel {
    margin: 0 auto;
}

.ads-carousel .carousel-inner {
    border-radius: 20px;
    overflow: hidden;
}

.ads-carousel .carousel-item {
    position: relative;
}

.ads-carousel .carousel-item img {
    width: 100%;
    height: auto;
    min-height: 250px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .ads-carousel .carousel-item img {
        min-height: 180px;
        object-fit: cover;
        object-position: center;
    }
}

.ads-carousel .carousel-control-prev,
.ads-carousel .carousel-control-next {
    width: 10%;
    opacity: 0.7;
}

.ads-carousel .carousel-control-prev-icon,
.ads-carousel .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 20px;
}

/* ========== CART ICON ========== */
.cart-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s;
    text-decoration: none;
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-icon i {
    font-size: 24px;
    color: white;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

@media (max-width: 768px) {
    .cart-icon {
        width: 48px;
        height: 48px;
        bottom: 20px;
        right: 20px;
    }
    
    .cart-icon i {
        font-size: 20px;
    }
    
    .cart-count {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
}

/* ========== PRODUCT SECTION ========== */
.product-card {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
    background: white;
    border-radius: 30px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(198, 164, 63, 0.1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #c6a43f, #b88d2e);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-showcase-img {
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1));
    max-width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.product-card:hover .product-showcase-img {
    transform: scale(1.05);
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
}

.product-mrp {
    text-decoration: line-through;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-left: 8px;
}

.discount-badge {
    background: #dc3545;
    color: white;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
}

@media (max-width: 768px) {
    .product-card {
        padding: 20px;
    }
    
    .product-name {
        font-size: 1rem;
    }
    
    .product-showcase-img {
        max-width: 150px;
    }
}


/* ===== SAME SIZE PRODUCT (NO CHANGE IN ORIGINAL CODE) ===== */

#products .row > div {
    display: flex;
}

#products .product-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Same image size */
#products .product-showcase-img {
    height: 200px !important;
    object-fit: contain;
}

/* Same text height */
#products .product-name {
    min-height: 50px;
}

/* Button always bottom */
#products .product-card form {
    margin-top: auto;
}

/* ===== MOBILE OPTIMIZATION ===== */

@media (max-width: 768px) {

    #products .row > div {
        max-width: 100%;
    }

    #products .product-showcase-img {
        height: 150px !important;
    }

    #products .product-name {
        min-height: auto;
    }
}

/* ===== SAME PRODUCT IMAGE SIZE (ALL DEVICES) ===== */

.product-showcase-img {
    width: 100%;
    height: 200px !important;
    object-fit: contain;
    background: #fff;
    padding: 10px;
    border-radius: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
    .product-showcase-img {
        height: 150px !important;
    }
}













/* Product Badges */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    animation: pulse 2s infinite;
}

.recommended-badge {
    background: linear-gradient(135deg, #c6a43f 0%, #e6b422 100%);
    color: #1a2e35;
}

.pack-badge {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .product-badge {
        top: 10px;
        right: 10px;
        padding: 4px 10px;
        font-size: 10px;
    }
}

/* ========== POPUP FOLLOW CURSOR ========== */
.popup-follow {
    position: fixed;
    width: 260px;
    background: white;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--gold);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.2s ease;
    text-align: left;
}

.popup-trigger {
    cursor: pointer;
    display: inline-block;
}

.popup-follow h6 {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.popup-follow ul {
    font-size: 0.75rem;
    margin-bottom: 8px;
}

.popup-follow ul li {
    margin-bottom: 4px;
}

/* ========== DOSAGE SECTION ========== */
.dosage-card,
.why-card {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(198, 164, 63, 0.1);
    height: 100%;
}

.dosage-icon {
    font-size: 2.2rem;
    color: var(--gold);
    background: var(--light-sand);
    width: 70px;
    height: 70px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.why-icon {
    font-size: 1.8rem;
    color: var(--gold);
    min-width: 50px;
}

.section-title {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subhead {
    color: var(--text-light);
    font-size: 1rem;
}

.responsive-img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .dosage-card,
    .why-card {
        padding: 1.5rem;
    }
    
    .dosage-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}

/* ========== CERTIFICATE SECTION ========== */
.certificate-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid var(--gold);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.certificate-img:hover {
    transform: scale(1.05);
}

.certificate-item {
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .certificate-img {
        width: 90px;
        height: 90px;
    }
}

/* ========== VIDEO BOX SECTION ========== */
.video-box {
    position: relative;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
}

.custom-video {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.3s;
}

.video-box:hover .custom-video {
    transform: scale(1.02);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    font-size: 28px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--gold);
}

.play-btn.hide {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* ========== TESTIMONIAL SECTION ========== */
.testimonial-card {
    background: white;
    border-radius: 30px;
    padding: 1.8rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(198, 164, 63, 0.1);
    text-align: center;
    transition: transform 0.3s;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    margin-bottom: 1rem;
}

.testimonial-card h5 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.testimonial-card .stars {
    margin: 0.5rem 0;
}

.testimonial-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.2rem;
    }
    
    .testimonial-card img {
        width: 65px;
        height: 65px;
    }
}

/* ========== DETAILS SECTION ========== */
.card-glass {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(198, 164, 63, 0.1);
}

.ingredients-table {
    width: 100%;
}

.ingredients-table tr {
    border-bottom: 1px solid #e9ecef;
}

.ingredients-table td {
    padding: 12px 0;
}

.ingredients-table td:first-child {
    font-weight: 500;
}

.ingredients-table td:last-child {
    font-weight: 600;
    color: var(--gold);
    text-align: right;
}

/* ========== SCIENCE SECTION ========== */
.science-card {
    padding: 2rem;
    border-radius: 25px;
    height: 100%;
    transition: transform 0.3s;
}

.science-card:hover {
    transform: translateY(-5px);
}

.science-card-dark {
    background: var(--dark-green);
    color: #f8f1e5;
}

.science-card-light {
    background: var(--light-sand);
}

/* ========== FINAL CTA SECTION ========== */
.hero-gradient {
    background: linear-gradient(145deg, var(--dark-green) 0%, #1f3a44 100%);
}

.cta-section {
    padding: 4rem 0;
    text-align: center;
}

.cta-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.cta-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

/* ========== BUTTONS ========== */
.btn-gold {
    background: linear-gradient(135deg, #c6a43f 0%, #b88d2e 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.btn-gold:hover {
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 8px 20px rgba(198, 164, 63, 0.3);
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: white;
}

/* ========== FOOTER ========== */
footer {
    background: var(--dark-green);
    color: rgba(255, 255, 255, 0.5);
    padding: 3rem 0;
}

footer h6 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.85rem;
}

footer a:hover {
    color: var(--gold);
}

/* ========== RESPONSIVE MEDIA QUERIES ========== */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .hero-section {
        padding: 70px 0 30px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .hero-section {
        padding: 60px 0 20px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn-gold {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        margin-bottom: 1rem;
    }
    
    .certificate-img {
        width: 80px;
        height: 80px;
    }
}

