:root {
    --brand-orange: #FF6031;
    --brand-yellow: #FFC300;
    --light-bg: #FDFBF9;
    --section-bg: #FFFFFF;
    --footer-bg: #F8F7F4;
    --dark-text: #1a1a1a;
    --light-text: #FFFFFF;
    --muted-text: #888888;
    --success-green: #25D366;
    --premium-dark: #2c2c2c;
}
*, *::before, *::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-bg);
    color: var(--dark-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    visibility: hidden;
    overflow-x: hidden;
}
body.modal-open {
    overflow: hidden;
}
.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
.full-screen-section {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 0;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    color: var(--dark-text);
    text-align: center;
}
.special-title{
    color: var(--light-text);
}
.section-subtitle {
    font-size: clamp(1rem, 4vw, 1.125rem);
    color: var(--dark-text);
    max-width: 600px;
    margin: 1rem auto 0;
    text-align: center;
}
.special-subtitle {
    color: var(--light-text);
}
#unwrapper {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1000;
    display: flex; justify-content: center; align-items: center; pointer-events: none;
    background-color: var(--light-bg);
}
.unwrapper-logo {
    position: relative; z-index: 1001; max-width: 500px; width: 60%; opacity: 0;
}
#header {
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    z-index: 50; 
    padding: 1rem 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    overflow: visible;
}
#header.scrolled {
    background-color: #ff6031;
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(237, 235, 235, 0.05); 
    padding: 0.5rem 0;
}
#header .container { display: flex; justify-content: space-between; align-items: center; }
.header-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.logo-img { height: 60px; width: auto; cursor: pointer; transition: transform 0.3s ease, height 0.3s ease; }
#header.scrolled .logo-img { height: 50px; }
.logo-img:hover { transform: rotate(-10deg) scale(1.1); }
#desktop-nav { display: flex; align-items: center; gap: 1.5rem; }
.nav-link { font-weight: 600; color: var(--light-text); text-decoration: none; position: relative; padding: 0.5rem 0; }
.nav-link::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 50%; transform: translateX(-50%); background-color: var(--brand-orange); transition: width 0.3s ease; }
.nav-link:hover::after { width: 100%; }
.nav-button {
    background-image: linear-gradient(45deg, var(--light-bg) 0%, #ffffff 100%);
    color: var(--brand-orange); padding: 0.75rem 1.5rem; border-radius: 9999px; font-weight: 700;
    text-decoration: none; transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 87, 51, 0.3);
}
.nav-button:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 25px rgba(255, 87, 51, 0.4); }
.hamburger {
    display: none;
    z-index: 9999;
    cursor: pointer;
    padding: 10px;
    background: var(--brand-orange);
    border: none;
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 0.5rem;
}
.menu-icon, .close-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
.close-icon {
    font-size: 2rem;
    color: var(--dark-text);
}
#header:not(.scrolled) .hamburger .bar {
    background-color: var(--brand-orange);
}
#header.scrolled .hamburger .close-icon {
    color: var(--dark-text);
}
.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark-text);
    transition: all 0.3s ease-in-out;
}
#header.scrolled .hamburger .bar {
    background-color: var(--light-text);
}
.hamburger .menu-icon { opacity: 1; transform: translate(-50%, -50%) rotate(0deg); }
.hamburger .close-icon { opacity: 0; pointer-events: none; }
body.nav-open .hamburger .menu-icon { opacity: 0; transform: translate(-50%, -50%) rotate(-90deg); }
body.nav-open .hamburger .close-icon {
    opacity: 1;
    pointer-events: auto;
    color: var(--dark-text);
}
#mobile-nav {
    position: fixed; 
    top: 80px;
    left: 100%; 
    width: 100%; 
    height: calc(100% - 80px); 
    background-color: var(--brand-orange);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 20px;
    padding-left: 0;
    transition: left 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    z-index: 100;
}
#header.scrolled + #mobile-nav {
    top: 60px;
    height: calc(100% - 60px);
}
#header {
    z-index: 101; 
    background-color: var(--brand-orange);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
    #header:not(.scrolled) {
        background-color: var(--brand-orange);
        padding: 1rem 0;
    }
    #header.scrolled {
         padding: 0.5rem 0;
    }
}
body.nav-open #mobile-nav { left: 0; }
body.nav-open #mobile-nav a {
    opacity: 1;
    transform: translateY(0);
    font-size: 1.5rem;
    padding: 0.75rem 0;
    width: 100%;
    text-align: center;
    max-width: 300px;
}
body.nav-open #mobile-nav a {
    color: var(--dark-text);
}
body.nav-open #mobile-nav a:nth-child(1) { transition-delay: 0.1s; }
body.nav-open #mobile-nav a:nth-child(2) { transition-delay: 0.2s; }
body.nav-open #mobile-nav a:nth-child(3) { transition-delay: 0.3s; }
body.nav-open #mobile-nav a:nth-child(4) { transition-delay: 0.4s; }
body.nav-open #mobile-nav a:nth-child(5) { transition-delay: 0.5s; }
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    padding: 4rem 1.5rem 2rem;
    overflow: hidden;
    padding-top: 100px;
}
.hero-content { z-index: 2; }
.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: clamp(3.5rem, 10vw, 6rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--light-text);
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
#hero-animated-text { margin: 1.5rem 0; height: 3em; position: relative; }
.hero-anim-line { font-family: 'Poppins', sans-serif; font-size: clamp(1.1rem, 3.5vw, 1.4rem); position: absolute; width: 100%; left: 0; top: 0; opacity: 0; color: var(--light-text); }
.hero-cta { display: inline-block; margin-top: 1.5rem; background-image: linear-gradient(45deg, var(--brand-orange) 0%, #FF7A59 100%); color: var(--light-text); padding: 1rem 2.5rem; border-radius: 50px; font-weight: 700; text-decoration: none; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 4px 15px rgba(255, 87, 51, 0.4); }
.hero-cta:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 10px 30px rgba(255, 87, 51, 0.5); }
.hero-image-container { position: absolute; inset: 0; z-index: -1; background-color: #1A1A1A; }
.hero-image-container img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
#why-us { background-color: var(--section-bg); }
.why-us-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 4rem; }
.why-us-card { padding: 2.5rem 1rem; background-color: #fff; border: 1px solid #eee; border-radius: 1rem; transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; align-items: center; position: relative; overflow: hidden; text-align:center;}
.why-us-card:hover { transform: translateY(-12px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.why-us-card i { font-size: 3.5rem; color: var(--brand-orange); margin-bottom: 1.5rem; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.why-us-card:hover i { transform: scale(1.1) rotate(-8deg); }
.why-us-card h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--dark-text); margin-bottom: 1rem; }
.why-us-card p { color: var(--dark-text); opacity: 0.8; flex-grow: 1; }
.why-us-card::after { content: ''; position: absolute; top: 0; left: -150%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); transition: left 0.8s cubic-bezier(0.23, 1, 0.32, 1); }
.why-us-card:hover::after { left: 150%; }
.story-section { background-color: var(--section-bg); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.story-paragraph { font-size: 1.125rem; line-height: 1.8; color: rgba(0,0,0,0.9); margin-bottom: 1.25rem; }
.story-visual { border-radius: 1rem; overflow: hidden; aspect-ratio: 4 / 5; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.story-image { width: 100%; height: 100%; object-fit: cover; }
.products-section { background-color: var(--light-bg); padding: 6rem 0; }
.product-card-large { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 4rem; cursor: pointer; }
.product-card-large:last-child { margin-bottom: 0; }
.product-image-large { position: relative; }
.product-image-large img { width: 100%; border-radius: 1rem; transition: transform 0.4s ease; }
.product-card-large:hover .product-image-large img:not(.blurred) { transform: scale(1.05); }
.product-title-large { font-family: 'Playfair Display', serif; font-weight: 800; font-size: clamp(2.5rem, 6vw, 3.5rem); color: var(--brand-orange); }
.product-desc-large { font-size: 1.125rem; color: var(--muted-text); margin-top: 1rem; max-width: 450px; }
.product-card-large.reverse .product-image-large { order: 2; }
.product-image-large.with-watermark .blurred { filter: blur(5px) brightness(0.9); }
.watermark { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-10deg); background-color: rgba(255, 255, 255, 0.8); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); color: var(--dark-text); padding: 1rem 5rem; font-family: 'Playfair Display', serif; font-weight: 800; font-size: clamp(2rem, 5vw, 3rem); text-align: center; border-radius: 5px; letter-spacing: 2px; border: 2px solid var(--dark-text); }
.product-cta-group {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.product-order-button { 
    display: inline-block; 
    background-color: #ff6031; 
    color: white; 
    padding: 0.8rem 1.8rem; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 700; 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    box-shadow: 0 5px 15px #ff6031;
}
.product-order-button i { font-size: 1.2rem; }
.product-order-button:hover { transform: translateY(-3px); box-shadow: 0 8px 20px #ff6031; }
.myntra-button-product {
    background-color: #FF3F6C;
    box-shadow: 0 5px 15px rgba(255, 63, 108, 0.5);
}
.myntra-button-product:hover {
    box-shadow: 0 8px 20px rgba(255, 63, 108, 0.7);
}
.myntra-logo-small {
    height: 1.5rem;
    width: auto;
    margin-right: 0.25rem;
}

/* Slideshow Styling Updates for Panchmeva Product (Point 2) */
.slideshow-container { max-width: 300px; position: relative; margin: auto; border-radius: 1rem; overflow: hidden; }
.mySlides { display: none; }
.prev, .next { 
    cursor: pointer; 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); /* Center vertically */
    width: 25%; /* Make buttons span 25% of the width on the side */
    height: 100%; /* Make buttons full height */
    padding: 0; 
    margin-top: 0;
    color: white; 
    font-weight: bold; 
    font-size: 2.5rem; /* Larger arrows for easier clicking */
    transition: background-color 0.3s ease; 
    user-select: none; 
    display: flex; /* Added for centering arrow icon */
    align-items: center; 
    justify-content: center;
    background-color: rgba(0,0,0,0); /* Initially transparent */
}
.next { 
    right: 0; 
    border-radius: 0 1rem 1rem 0; 
    text-align: right;
    justify-content: flex-end; /* Align arrow to the edge */
    padding-right: 15px;
}
.prev { 
    left: 0; 
    border-radius: 1rem 0 0 1rem; 
    text-align: left;
    justify-content: flex-start; /* Align arrow to the edge */
    padding-left: 15px;
}
.prev:hover, .next:hover { 
    background-color: rgba(0,0,0,0.2); /* Highlight area on hover */
    /* Maintain a smooth color transition for better UX */
}

.dots-container { text-align:center; padding-top: 10px; }
.dot { cursor: pointer; height: 12px; width: 12px; margin: 0 4px; background-color: #bbb; border-radius: 50%; display: inline-block; transition: background-color 0.6s ease, transform 0.3s ease; }
.active, .dot:hover { background-color: #ff6031; transform: scale(1.2); }
.fade { animation-name: fade; animation-duration: 1.5s; }
@keyframes fade { from {opacity: .4} to {opacity: 1} }

/* Marquee/Rolling Text Styling (Point 1) */
.marquee-container {
    background-color: var(--premium-dark); /* Dark background for contrast */
    color: var(--light-text);
    padding: 0.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.marquee-text {
    display: inline-block;
    padding-left: 100%; /* Start the text off-screen to the right */
    animation: marquee 25s linear infinite; /* Adjust duration for speed */
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); } /* Move text to the left */
}


.team-section { background-color: #ff6031; }
.team-cards-container { display: flex; justify-content: center; align-items: stretch; flex-wrap: wrap; gap: 1.5rem; margin-top: 3rem; perspective: 1200px; }
.team-card {
    width: 250px;
    aspect-ratio: 4 / 5;
    cursor: pointer;
    transition: transform 0.8s;
}
.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(151, 121, 121, 0.6);
}
@media (hover: hover) and (pointer: fine) {
    .team-card:hover .team-card-inner { transform: rotateY(180deg); }
}
.team-card.flipped .team-card-inner {
    transform: rotateY(180deg);
}
.team-card-front, .team-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    border-radius: 1rem;
}
.team-card-front { background-color: var(--light-bg); color: rgb(90, 91, 96); }
.team-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
@media (hover: hover) and (pointer: fine) {
    .team-card:hover .team-card-img { transform: scale(1.05); }
}
.team-card-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 1rem; text-align: center; }
.team-card-caption h3 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.2rem; line-height: 1.2; }
.team-card-caption p { font-size: 0.875rem; opacity: 1; }
.team-card-back { background-color: #ff6031; color: var(--light-text); transform: rotateY(180deg); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 1.5rem; }
.team-card-back h4 { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.6rem; }
.team-card-bio { font-size: 0.9rem; margin: 1rem 0; line-height: 1.6; }
.team-card-socials { display: flex; gap: 1.5rem; margin-top: 1rem; }
.team-card-socials a { color: var(--light-text); font-size: 1.75rem; transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.team-card-socials a:hover { transform: scale(1.2) rotate(10deg); }
.calculator-section { background-color: var(--section-bg); }
.calculator-intro { text-align: center; margin-bottom: 2.5rem; }
.calculator-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: flex-start; }
.calculator-form-container { background-color: #fff; padding: 2rem; border-radius: 1rem; border: 1px solid #ddd; }
#health-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group label { font-weight: 600; margin-bottom: 0.5rem; }
.form-group input, .form-group select { width: 100%; padding: 0.75rem 1rem; border: 1px solid #ddd; border-radius: 0.5rem; transition: border-color 0.2s ease, box-shadow 0.2s ease; font-family: 'Poppins', sans-serif; font-size: 1rem; }
.form-group input:focus, .form-group select:focus { outline: none; border-color: #ff6031; box-shadow: 0 0 0 3px rgba(255, 87, 51, 0.2); }
.gender-toggle { display: flex; border: 1px solid #ddd; border-radius: 0.5rem; overflow: hidden; }
.gender-btn { flex: 1; padding: 0.75rem; border: none; background-color: #fff; cursor: pointer; font-weight: 600; transition: background-color 0.2s ease, color 0.2s ease; }
.gender-btn.active { background-color: var(--brand-orange); color: var(--light-text); }
.calculate-btn { background-color: var(--dark-text); color: var(--light-text); padding: 1rem; border-radius: 0.5rem; font-weight: 700; font-size: 1rem; border: none; cursor: pointer; transition: background-color 0.2s ease, transform 0.2s ease; }
.calculate-btn:hover { background-color: #333; transform: translateY(-2px); }
#form-error { color: var(--brand-orange); font-weight: 600; margin-top: 1rem; text-align: center; height: 1em; }
.results-container { background-color: #fff; padding: 2.5rem; border-radius: 1rem; border: 1px solid #ddd; min-height: 500px; text-align: center; }
.result-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: var(--muted-text); }
.result-placeholder img {width: 100%; margin-bottom: 1rem; }
#results-container h3 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-top: 0; margin-bottom: 0.5rem; }
.results-disclaimer { font-size: 0.875rem; color: var(--muted-text); margin-bottom: 2rem; }
.results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.result-card { background-color: var(--light-bg); padding: 1.5rem; border-radius: 0.75rem; }
.result-value { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(2rem, 5vw, 2.8rem); color: var(--brand-orange); line-height: 1; }
.result-label { font-weight: 600; margin-top: 0.5rem; font-size: 0.9rem; }
.result-card.full-width { grid-column: 1 / -1; }
.instagram-posts-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 3rem;
}
.embed-placeholder {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
}
.embed-placeholder blockquote.instagram-media {
    max-width: 30% !important;
    min-width: 250px !important;
    flex-basis: 30% !important;
    flex-grow: 1;
    margin: 0 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 0.75rem !important;
    overflow: hidden;
    width: 100% !important;
}
.community-section { background-color: var(--section-bg); }
.community-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.community-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--dark-text);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.community-link:hover {
    background-color: #f4f4f4;
    transform: translateY(-5px);
}
.community-link i {
    font-size: 2.5rem;
    color: var(--dark-text);
    transition: color 0.3s ease;
}
.community-link:hover i.ph-instagram-logo { color: #E1306C; }
.community-link:hover i.ph-whatsapp-logo { color: #25D366; }
.community-link:hover i.ph-linkedin-logo { color: #0A66C2; }
#purchase { background-color: var(--section-bg); }
.purchase-cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
    margin-top: 2rem;
}
.whatsapp-button { 
    background-color: var(--brand-orange); 
    color: white; 
    padding: 1rem 2.5rem; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 1.25rem; 
    display: inline-flex; 
    align-items: center; 
    gap: 0.75rem; 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    box-shadow: 0 5px 15px rgba(255, 96, 49, 0.4); 
}
.whatsapp-button i { font-size: 1.8rem; }
.whatsapp-button:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 10px 25px rgba(255, 96, 49, 0.6); }
.myntra-button-purchase {
    background-color: var(--light-bg);
    border: 2px solid #FF3F6C;
    color: #FF3F6C;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 2.5rem; 
}
.myntra-button-purchase:hover {
    background-color: #fce7ed;
    transform: translateY(-5px) scale(1.05); 
    box-shadow: 0 10px 25px rgba(255, 63, 108, 0.3);
}
.myntra-logo-large {
    height: 1.8rem;
    width: auto;
    margin-right: 0.5rem;
}
.coming-soon-wrapper {
    background-color: var(--light-bg);
    color: var(--premium-dark);
    padding: 3rem 2rem;
    border-radius: 1rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 800px;
}
.coming-soon-wrapper p {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--premium-dark);
    opacity: 0.9;
    margin: 0 0 2rem 0;
    text-align: center;
}
.platform-logos {
    display: flex;
    gap: 0.1rem;
    justify-content: center;
    align-items: center;
}
.platform-logo img {
    height: 125px;
    max-width: 350px;
    object-fit: contain;
    opacity: 1;
}
 .platform-logo:hover img {
    opacity: 1.5;
    transform: scale(1.1);
}
.footer { 
    background-color: var(--brand-orange); 
    color: rgb(253, 253, 253); 
    padding: 2rem 0; /* Adjusted padding to look better with marquee above */
    text-align: center; 
}
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 0.1rem; }
.footer-logo img { height: 125px; max-width: 400px; }
.footer-socials { display: flex; gap: 2rem; }
.footer-socials a { color: rgb(255, 255, 255); font-size: 1.75rem; transition: color 0.3s ease, transform 0.3s ease; }
.footer-socials a:hover { color: var(--dark-text); transform: translateY(-3px); }
.footer-details { margin-top: 0.1rem; font-size: 0.9rem; line-height: 1; opacity: 0.9; }
.footer-details p { margin: 0.25rem 0; }
.footer-copyright { font-size: 0.875rem; letter-spacing: 0.05em; text-transform: uppercase; margin-top: 1rem; }
.product-modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.product-modal.show {
    display: block;
    opacity: 1;
}
.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: 1rem;
    width: 90%;
    max-width: 1100px;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}
.product-modal.show .modal-content {
    transform: scale(1);
}
.close-modal {
    color: #000;
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.close-modal:hover {
    transform: rotate(90deg);
}
.modal-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: flex-start;
}
.modal-image-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.modal-image-col img {
    width: 100%;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.modal-details {
    padding-top: 0.5rem;
}
.modal-details h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--brand-orange);
    margin-top: 0;
    margin-bottom: 1rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}
.modal-details p {
    font-size: 1.1rem;
    line-height: 1.6;
}
.modal-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--dark-text);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--premium-dark);
}
.detailed-info-container ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}
.detailed-info-container ul li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.4;
    font-size: 1rem;
}
.detailed-info-container ul li::before {
    content: '★';
    color: var(--brand-orange);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    top: 0.2rem;
}
.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 0.95rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    overflow: hidden;
}
.nutrition-table th, .nutrition-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #eee;
    text-align: left;
}
.nutrition-table th {
    font-weight: 700;
    color: var(--light-text);
    background-color: var(--brand-orange);
    border-bottom: none;
}
.nutrition-table tbody tr:last-child td {
     border-bottom: none;
}
.nutrition-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--premium-dark);
}
.product-order-button.in-modal {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
}
.modal-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}
.modal-cta-group .product-order-button {
    width: 100%;
}
@media (min-width: 768px) {
    .why-us-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
    .full-screen-section { padding: 5rem 0; }
    .story-grid { gap: 2rem; }
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .product-card-large { margin-bottom: 3rem; }
    .team-card {
        width: 45%;
    }
}
@media (max-width: 768px) {
    #header {
        height: 80px;
    }
    #header.scrolled {
        height: 60px;
    }
    .full-screen-section {
        min-height: auto;
        padding: 3rem 0;
    }
    .section-title { font-size: 2rem; margin-bottom: 0.5rem; }
    .section-subtitle { margin-top: 0.5rem; font-size: 1rem; }
    .hero-title { font-size: clamp(3rem, 12vw, 4rem); }
    #desktop-nav { display: none; }
    .hamburger { display: block; }
    .why-us-grid { margin-top: 2.5rem; }
    .why-us-card h3 { font-size: 1.5rem; }
    .story-grid { grid-template-columns: 1fr; }
    .story-visual {
        order: -1;
        margin-bottom: 1.5rem;
        aspect-ratio: 16 / 9;
    }
    .story-paragraph { font-size: 1rem; line-height: 1.5; margin-bottom: 0.75rem; }
    .product-card-large, .product-card-large.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
        text-align: center;
    }
    .product-card-large.reverse .product-image-large { order: 1; }
    .product-content-large { display: flex; flex-direction: column; align-items: center; }
    .product-title-large { font-size: 2.2rem; }
    .product-desc-large { font-size: 1rem; }
    .product-cta-group {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 300px;
        margin-top: 1rem;
    }
    .product-cta-group a {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1.4rem;
        font-size: 0.95rem;
    }
    .products-section, .footer { clip-path: none; margin-top: 0; padding-top: 3rem; padding-bottom: 3rem; }
    .modal-grid { grid-template-columns: 1fr; }
    .modal-content { padding: 1rem; }
    .modal-details h2 { font-size: 2rem; }
    .team-cards-container {
        gap: 2rem;
    }
    .team-card {
        width: 100%;
        max-width: 300px;
        aspect-ratio: 3 / 4;
    }
    .team-card-back h4 { font-size: 1.4rem; }
    .team-card-bio { font-size: 0.95rem; }
    .instagram-posts-container { margin-top: 2rem; }
    .embed-placeholder {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    .embed-placeholder blockquote.instagram-media {
        max-width: 380px !important;
        min-width: 90% !important;
        flex-basis: auto !important;
    }
    .calculator-intro { margin-bottom: 1.5rem; }
    .calculator-form-container { padding: 1.5rem; }
    .purchase-cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    .purchase-cta-group .whatsapp-button {
        font-size: 1rem;
        width: 100%;
    }
    .footer { padding-top: 2rem; padding-bottom: 2rem; }
    .footer-logo img { height: 100px; }
    .footer-details { font-size: 0.85rem; }
}
@media (max-width: 480px) {
    .container { padding-left: 0.75rem; padding-right: 0.75rem; }
    .results-grid { grid-template-columns: 1fr; }
    .result-card.full-width { grid-column: auto; }
    .logo-img { height: 45px; }
    #header.scrolled .logo-img { height: 40px; }
    .platform-logos { flex-direction: column; }
    .hero-title { font-size: clamp(2.5rem, 10vw, 3.5rem); }
    .hero-cta { padding: 0.8rem 2rem; font-size: 1rem; }
}
