:root {
    --primary-teal: #1A5F61;
    --primary-dark: #134648;
    --primary-light: #E0F2F2;
    --accent-yellow: #FFD200;
    --accent-orange: #F59E0B;
    --text-main: #2D3748;
    --text-light: #4A5568;
    --white: #ffffff;
    --bg-light: #F7FAFC;
    --grey-header: #E2E8F0;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
    --radius-lg: 16px;
    --radius-md: 8px;
    --transition: all 0.3s ease;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
}

.logo span {
    color: var(--primary-teal);
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    font-weight: 500;
    color: var(--text-main);
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--primary-teal);
}

.nav-btn {
    background-color: var(--accent-yellow);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    color: var(--text-main) !important;
    transition: transform 0.2s;
}

.nav-btn:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, #F0F9FF 0%, #E6FFFA 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.badge-hero {
    display: inline-block;
    background: rgba(26, 95, 97, 0.1);
    color: var(--primary-teal);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.headline {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1A202C;
}

.subheadline {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.cta-button {
    background-color: var(--accent-yellow);
    color: #1A202C;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(255, 210, 0, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 210, 0, 0.5);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 210, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 210, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 210, 0, 0);
    }
}

.guarantee-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

.hero-trust {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-bottle-img {
    max-height: 550px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.hero-bottle-img:hover {
    transform: translateY(-5px);
}

/* Features Strip */
.features-strip {
    background: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item i {
    color: var(--primary-teal);
    width: 32px;
    height: 32px;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Science Section */
.science-section {
    padding: 4rem 0;
    background: var(--white);
}

.science-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.science-text h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #000;
}

.science-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #333;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 2rem;
}

.signature {
    margin-top: 3rem;
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

.sig-name {
    font-weight: 700;
    font-size: 1.2rem;
}

.sig-title {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.sig-image {
    font-family: 'Dancing Script', cursive;
    /* Fallback if no image */
    font-size: 2rem;
    color: var(--primary-teal);
    width: fit-content;
}

/* Bonus Banner */
.bonus-banner {
    background: var(--primary-teal);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.bonus-banner h2 {
    color: white;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.bonuses-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.bonus-item {
    width: 300px;
    text-align: center;
}

.book-cover-wrap {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-book-img {
    max-width: 100%;
    max-height: 400px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.bonus-book-img:hover {
    transform: scale(1.03) translateY(-5px);
}

.bonus-item h4 {
    color: #FFD200;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.bonus-desc {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Ingredients Section */
.ingredients-section {
    padding: 6rem 0;
    background: #E6FFFA;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.section-header p {
    font-size: 1.1rem;
    color: #4A5568;
}

.ingredients-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 700px;
}

.ingredient-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s;
}

.ingredient-item:hover {
    transform: translateY(-5px);
}

.hex-icon {
    width: 60px;
    height: 60px;
    background: #EDF2F7;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    /* 3D Styling */
    box-shadow:
        0 10px 15px rgba(0, 0, 0, 0.1),
        inset 0 -5px 10px rgba(0, 0, 0, 0.05),
        inset 0 5px 10px rgba(255, 255, 255, 0.8);
    transform: perspective(500px) rotateX(10deg);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.hex-icon:hover {
    transform: perspective(500px) rotateX(0deg) translateY(-5px) scale(1.1);
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 -5px 10px rgba(0, 0, 0, 0.05),
        inset 0 5px 10px rgba(255, 255, 255, 0.8);
}

/* Color accents for icons */
.color-1 {
    background: linear-gradient(135deg, #F0FFF4 0%, #C6F6D5 100%);
    color: #2F855A;
}

.color-2 {
    background: linear-gradient(135deg, #FFFFF0 0%, #FEFCBF 100%);
    color: #B7791F;
}

.color-3 {
    background: linear-gradient(135deg, #E6FFFA 0%, #B2F5EA 100%);
    color: #2C7A7B;
}

.color-4 {
    background: linear-gradient(135deg, #F0F5FF 0%, #BEE3F8 100%);
    color: #2B6CB0;
}

.color-5 {
    background: linear-gradient(135deg, #FFF5F5 0%, #FED7D7 100%);
    color: #C53030;
}

.color-6 {
    background: linear-gradient(135deg, #FAF5FF 0%, #E9D8FD 100%);
    color: #6B46C1;
}

.ingredient-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2D3748;
}

.ingredient-item p {
    font-size: 0.85rem;
    color: #718096;
    line-height: 1.4;
}

.ingredients-bottle {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
}

.ing-bottle-img {
    max-height: 450px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

@media (max-width: 1024px) {
    .ingredients-container {
        flex-direction: column-reverse;
    }
}

/* Comparison Section */
.comparison-section {
    padding: 6rem 0;
    background: white;
}

.comparison-wrapper {
    display: flex;
    gap: 4rem;
    align-items: flex-end;
    justify-content: center;
}

.comparison-visual {
    width: 350px;
    display: flex;
    align-items: flex-end;
}

.bottles-stack img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.comparison-content {
    flex: 1;
    max-width: 600px;
}

.comparison-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #000;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.table-header {
    display: flex;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 1rem;
}

.th {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-align: center;
}

.th.empty {
    flex: 2;
}

.th.product {
    flex: 1;
    color: var(--primary-teal);
    font-size: 1.2rem;
}

.th.competitor {
    flex: 1;
    color: #A0AEC0;
    font-size: 0.9rem;
    line-height: 1.2;
}

.tr {
    display: flex;
    padding: 1rem 0;
    border-bottom: 1px solid #f7fafc;
    align-items: center;
}

.td {
    text-align: center;
}

.td.feature {
    flex: 2;
    text-align: left;
    font-weight: 500;
    font-size: 0.95rem;
    color: #4A5568;
}

.td.product {
    flex: 1;
}

.td.competitor {
    flex: 1;
}

.check {
    color: #48BB78;
    width: 24px;
    height: 24px;
}

.cross {
    color: #E53E3E;
    width: 24px;
    height: 24px;
}

/* Pricing Section */
.offer-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fff 0%, #f4f8fa 100%);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pricing-card {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    width: 320px;
    text-align: center;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.pricing-card.best-value {
    border: 2px solid var(--primary-teal);
    transform: scale(1.05);
    z-index: 5;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.best-value-badge {
    background: var(--primary-teal);
    color: white;
    padding: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.card-header {
    padding: 1.5rem 0;
}

.card-header.grey {
    background: #EDF2F7;
    color: #2D3748;
}

.card-header.teal {
    background: var(--primary-teal);
    color: white;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.card-header p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.bottle-visual {
    margin: 1.5rem 0;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.bottle-visual img {
    max-height: 100%;
    object-fit: contain;
}

.price-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 5px;
    width: fit-content;
    border: 1px solid #ccc;
    /* Optional: Hide this if it looks cluttered, based on user ref it seemed just like text above price */
    display: none;
}

.price-area {
    padding: 0 1.5rem 2rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1A202C;
    line-height: 1;
}

.per-bottle {
    font-size: 1rem;
    color: #718096;
    font-weight: 500;
}

.no-bonus-text {
    color: #A0AEC0;
    margin: 0.5rem 0 1rem;
    font-size: 0.9rem;
    height: 24px;
}

.bonus-badge {
    background: #E53E3E;
    color: white;
    display: inline-block;
    padding: 0.2rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    margin: 0.5rem 0 1rem;
}

.buy-btn {
    display: block;
    width: 100%;
    background: var(--accent-yellow);
    padding: 1.2rem;
    border-radius: 6px;
    font-weight: 800;
    color: #1A202C !important;
    text-transform: uppercase;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.buy-btn:hover {
    transform: scale(1.02);
}

.guarantee-small {
    font-size: 0.75rem;
    color: #718096;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
}

.guarantee-small::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.cards-row {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.total-text {
    font-size: 0.9rem;
    color: #4A5568;
    line-height: 1.3;
}

.total-text span {
    font-weight: 700;
    color: #E53E3E;
}

.free-shipping-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #F0FFF4;
    border: 1px solid #C6F6D5;
    color: #276749;
    padding: 1rem;
    margin: 3rem auto 0;
    max-width: 600px;
    border-radius: 8px;
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 0;
    background: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: #FAFAFA;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #EDF2F7;
}

.stars {
    color: #F6AD55;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-quote {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.review-text {
    font-style: italic;
    color: #4A5568;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 45px;
    height: 45px;
    background: #CBD5E0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.verified {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #10B981;
    font-size: 0.8rem;
    font-weight: 600;
}

.review-meta {
    display: block;
    font-size: 0.8rem;
    color: #A0AEC0;
    margin-top: 0.2rem;
}

/* FAQ Section */
/* FAQ Section styles are now handled in faq_styles.css */
/* 
.faq-section {
    padding: 4rem 0;
    background: #F7FAFC;
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto;
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2D3748;
}

.faq-item p {
    color: #4A5568;
    font-size: 1rem;
    line-height: 1.6;
} 
*/

/* Footer Guarantee */
.footer-guarantee {
    padding: 4rem 0;
    background: white;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.guarantee-badge-large {
    margin-bottom: 2rem;
}

.footer-guarantee h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.footer-guarantee p {
    max-width: 800px;
    margin: 0 auto;
    color: #4A5568;
}

/* References */
.references-section {
    padding: 3rem 0;
    background: #F7FAFC;
    border-bottom: 1px solid #E2E8F0;
}

.references-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #2D3748;
}

.ref-list {
    list-style: decimal;
    padding-left: 1.5rem;
    color: #718096;
    font-size: 0.8rem;
}

.ref-list li {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    padding: 3rem 0;
    color: #ffffff;
    font-size: 0.8rem;
    background-color: #1A202C;
    background-image: url('./assets/footer_bg.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: underline;
    color: #ffffff;
}

.disclaimer-text p {
    margin-bottom: 1rem;
    text-align: justify;
    color: #ffffff;
    opacity: 0.8;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    font-weight: 600;
}

/* Responsive */
/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-actions {
        align-items: center;
    }

    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
    }

    .headline {
        font-size: 2.8rem;
    }

    .hero-bottle-img {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .nav a {
        font-size: 0.9rem;
    }

    .headline {
        font-size: 2.2rem;
    }

    .subheadline {
        margin: 0 auto 2rem;
    }

    .features-grid {
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card.best-value {
        transform: scale(1);
        order: -1;
        /* Show best value first on mobile */
        margin-bottom: 2rem;
    }

    .comparison-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .comparison-visual {
        display: none;
    }

    .ingredients-container {
        flex-direction: column-reverse;
    }

    .ingredients-grid {
        grid-template-columns: 1fr;
    }

    .bonuses-grid {
        gap: 2rem;
    }

    /* Free Shipping Banner Responsive */
    .free-shipping-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .free-shipping-banner img {
        margin: 0 auto;
    }
}

.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* References Section Updates */
.references-section {
    padding: 6rem 0;
    background-color: #EFF6F6;
    /* Light cyan/grey background from reference image */
    text-align: center;
}

.ref-title {
    font-size: 2.5rem;
    color: #1A202C;
    /* Dark text */
    margin-bottom: 2rem;
    font-family: 'Outfit', sans-serif;
    text-align: center;
}

.ref-logos {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.ref-logos img {
    max-width: 100%;
}

.ref-disclaimer {
    color: #718096;
    font-size: 0.85rem;
    margin-bottom: 3rem;
    font-style: italic;
    text-align: center;
}

.ref-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

.ref-list {
    list-style-position: inside;
    margin: 0;
    padding: 0;
    font-size: 0.8rem;
    color: #4A5568;
    line-height: 1.6;
}

.ref-list li {
    margin-bottom: 0.5rem;
    display: list-item;
}

@media (max-width: 768px) {
    .ref-columns {
        grid-template-columns: 1fr;
    }
}

/* Shipping Banner Updates */
.free-shipping-banner {
    max-width: 800px;
    padding: 1.5rem 2rem;
    gap: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* 3D Ingredient Showcase Styles */
.ingredients-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin-top: 5rem;
    perspective: 1000px;
}

.showcase-visual-3d {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    transform-style: preserve-3d;
}

.showcase-bottle-3d {
    max-height: 400px;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.25));
    transform: rotateY(-10deg) translateZ(20px);
    transition: transform 0.6s ease;
}

.showcase-bottle-3d:hover {
    transform: rotateY(0deg) translateZ(50px) scale(1.05);
}

.recipe-explanation-3d {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    perspective: 1000px;
}

.explanation-card {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05), -5px 5px 15px rgba(0, 0, 0, 0.03);
    transform-style: preserve-3d;
    transform: translateZ(0) rotateX(5deg);
    transition: all 0.4s ease;
    border-left: 5px solid var(--primary-teal);
}

.explanation-card:hover {
    transform: translateZ(30px) rotateX(0deg) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), -10px 10px 20px rgba(0, 0, 0, 0.05);
    z-index: 10;
}

.explanation-card h4 {
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.explanation-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Hero 3D Effect */
.hero-3d-effect {
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* No border-radius or box-shadow here as it disrupts transparent images unless carefully handled */
    /* Using filter for shadow */
    filter: drop-shadow(15px 15px 30px rgba(0, 0, 0, 0.3));
}

.hero-3d-effect:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
    filter: drop-shadow(25px 25px 50px rgba(0, 0, 0, 0.4));
}

/* Entrance Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .ingredients-showcase {
        flex-direction: column;
        gap: 2rem;
    }

    .showcase-visual-3d {
        justify-content: center;
    }

    .showcase-bottle-3d {
        transform: rotateY(0);
    }

    .explanation-card {
        transform: none;
    }
}