/* ========================================
    AVL OIL MILLS - Modern Design Enhancements
    ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
    --ink: #0f0f0d;
    --paper: #f7f3ec;
    --sand: #d1a354;
    --sage: #2b3425;
    --mist: #e7dfd2;
    --font-sans: 'Manrope', 'Inter', system-ui, sans-serif;
    --font-serif: 'Manrope', 'Inter', system-ui, sans-serif;
    --card-radius: 16px;
}

/* ==================== ANIMATIONS ==================== */

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Stagger animation delays */
.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

.animate-delay-5 {
    animation-delay: 0.5s;
}

/* ==================== STICKY HEADER ==================== */

.ul-header {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ul-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 6, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.ul-header.sticky .ul-header-bottom {
    padding: 6px 0;
}

.ul-header.sticky .logo {
    max-height: 50px;
    transition: max-height 0.3s ease;
}

/* Align header contents vertically without increasing height */
.ul-header-bottom {
    padding: 0;
}

.ul-header-bottom-wrapper {
    align-items: center;
    transform: translateY(-4px);
}

.site-title {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.site-title:hover {
    color: var(--white);
    opacity: 0.8;
}

/* ==================== TAYLORS-INSPIRED HOMEPAGE ==================== */
.homepage {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-sans);
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
}

.section-heading.center {
    align-items: center;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 32px;
}

.section-heading h2,
.hero-copy h1,
.range-content h3,
.story-copy h2,
.arrivals-section h3,
.heritage h3,
.membership h2 {
    font-family: var(--font-serif);
    letter-spacing: -0.02em;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 12px;
    color: rgba(15, 15, 13, 0.7);
    margin: 0;
}

.lede {
    color: rgba(15, 15, 13, 0.7);
    max-width: 620px;
    line-height: 1.6;
}

.btn-dark,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-dark {
    background: var(--ink);
    color: var(--paper);
}

.btn-dark:hover {
    transform: translateY(-2px);
}

.btn-ghost {
    border: 1px solid rgba(15, 15, 13, 0.2);
    color: var(--ink);
}

.btn-ghost:hover {
    border-color: var(--ink);
    transform: translateY(-2px);
}

.btn-dark.small {
    padding: 12px 18px;
    font-size: 14px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
}

.announcement-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 22px;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--font-sans);
}

.announcement-link {
    color: var(--paper);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.taylors-hero {
    padding: 0;
    position: relative;
    z-index: 5;
    background: #ffffff;
    color: var(--ink);
    overflow: visible !important;
}

.taylors-hero:hover {
    z-index: 2001 !important;
    /* Higher than header (1000) */
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(32px, 4vw, 64px);
    align-items: center;
    overflow: visible !important;
}

.hero-copy h1 {
    font-size: clamp(36px, 5vw, 64px);
    margin: 12px 0;
    color: var(--paper);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0 14px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.meta-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
}

.hero-visual {
    position: relative;
    padding: 18px;
}

.hero-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--sand);
    color: var(--ink);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.bottle-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--card-radius);
    padding: 18px;
    backdrop-filter: blur(6px);
}

.bottle-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 12px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.bottle-card img {
    width: 100%;
    height: 170px;
    object-fit: contain;
}

.bottle-card span {
    display: block;
    margin-top: 8px;
    color: var(--paper);
    font-weight: 600;
}

.bottle-card:hover {
    transform: translateY(-6px);
    border-color: var(--sand);
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(80px, 1fr));
    gap: 10px;
    margin-top: 14px;
    font-family: var(--font-serif);
    color: var(--paper);
}

.hero-facts strong {
    font-size: 22px;
    display: block;
}

.hero-grid.solo {
    display: flex;
    justify-content: center;
    padding-top: 0;
}

.hero-rotator {
    position: relative;
    display: block;
    max-width: 100%;
    width: 100%;
    margin: 0;
    overflow: visible !important;
}

.hero-rotator-header {
    display: none;
}

.hero-carousel {
    width: 100%;
    padding: 12px 4px 28px;
    overflow: visible !important;
}

.hero-carousel .swiper-wrapper {
    align-items: center;
    transition-timing-function: linear !important;
    overflow: visible !important;
}

.hero-slide {
    width: clamp(240px, 22vw, 360px);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-slide-inner {
    background: #F9F8F3;
    border: none;
    border-radius: 0;
    padding: 40px 26px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: none;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: 380px;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.hero-slide-info {
    color: var(--ink);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-slide-info h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    margin: 0;
    color: var(--ink);
}

.hero-slide .pill {
    background: #f3e6cf;
    color: var(--ink);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    display: inline-flex;
    width: fit-content;
}

.swiper-slide-active.hero-slide {
    transform: none;
}

.hero-slide:hover img {
    transform: scale(1.65) translateY(-30px);
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.2));
}

.hero-slide:hover {
    z-index: 2000 !important;
}

.hero-view-btn {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translate(-50%, 12px);
    padding: 10px 20px;
    border-radius: 999px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(18px) saturate(180%);
    color: var(--ink);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.hero-slide:hover .hero-view-btn {
    opacity: 1;
    transform: translate(-50%, 0) scale(1.02);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.hero-slide:hover {
    transform: none;
    filter: none;
}

main {
    padding-top: 120px;
    overflow: visible !important;
}

@media (max-width: 768px) {
    main {
        padding-top: 110px;
    }
}

.range-section,
.arrivals-section,
.signature-slider,
.heritage,
.membership,
.origin-story {
    padding: clamp(40px, 6vw, 80px) clamp(20px, 6vw, 80px);
}

.range-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.range-card {
    display: grid;
    grid-template-rows: 220px auto;
    text-decoration: none;
    color: var(--ink);
    background: #fff;
    border: 1px solid #e6dfd3;
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.range-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

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

.range-content {
    padding: 18px 18px 22px;
}

.range-content h3 {
    margin: 6px 0;
    font-size: 22px;
}

.range-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--ink);
}

.origin-story {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(24px, 4vw, 48px);
    align-items: stretch;
}

.story-image {
    border-radius: var(--card-radius);
    background-size: cover;
    background-position: center;
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

.story-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 40%);
}

.story-copy {
    background: #fff;
    border: 1px solid #e6dfd3;
    border-radius: var(--card-radius);
    padding: clamp(22px, 3vw, 36px);
    display: grid;
    gap: 12px;
    align-content: start;
}

.story-points {
    display: grid;
    gap: 10px;
    color: rgba(15, 15, 13, 0.75);
}

.story-points .point {
    padding-left: 12px;
    border-left: 2px solid var(--sand);
}

.arrivals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.arrival-card {
    background: #fff;
    border: 1px solid #e6dfd3;
    border-radius: var(--card-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.arrival-media {
    position: relative;
    overflow: hidden;
    background: var(--mist);
}

.arrival-media img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    transition: transform 0.25s ease;
    padding: 18px;
}

.arrival-card:hover img {
    /* transform: translateY(-6px); Removed to prevent movement */
}

.inline-cta {
    position: absolute;
    inset: auto 16px 16px 16px;
    background: rgba(15, 15, 13, 0.9);
    color: var(--paper);
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.arrival-card:hover .inline-cta {
    opacity: 1;
    transform: translateY(0);
}

.arrival-body {
    padding: 16px 18px 22px;
    display: grid;
    gap: 6px;
}

.price {
    font-weight: 700;
    font-size: 18px;
}

.price.muted {
    text-decoration: line-through;
    color: rgba(15, 15, 13, 0.5);
    margin-right: 8px;
}

.signature-slider .swiper {
    overflow: visible;
}

.signature-card {
    background: #fff;
    border: 1px solid #e6dfd3;
    border-radius: var(--card-radius);
    overflow: hidden;
    display: grid;
    grid-template-rows: 260px auto;
}

.signature-media {
    position: relative;
    background: #f4eddf;
}

.signature-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.signature-media .pill {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--sand);
    color: var(--ink);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
}

.signature-body {
    padding: 18px 18px 22px;
    display: grid;
    gap: 8px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-nav {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.slider-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #d8d0c4;
    background: #fff;
    color: var(--ink);
}

.heritage {
    background: var(--mist);
}

.heritage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 12px;
}

.heritage-grid div {
    background: #fff;
    border: 1px solid #e6dfd3;
    border-radius: var(--card-radius);
    padding: 18px;
}

.membership {
    padding-bottom: clamp(50px, 6vw, 90px);
}

.membership-inner {
    background: linear-gradient(120deg, #11110f 0%, #1d1f1a 100%);
    color: var(--paper);
    border-radius: var(--card-radius);
    padding: clamp(24px, 5vw, 48px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.membership-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .announcement-banner {
        flex-direction: column;
        text-align: center;
    }

    .hero-facts {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}

/* ==================== ENHANCED PRODUCT CARDS ==================== */

/* ==================== TAYLORS EDITORIAL GRID ==================== */
:root {
    --taylors-bg: #F9F8F3;
    --taylors-text: #1a1a1a;
    --taylors-accent: #d4a574;
}

.ul-product {
    background: var(--taylors-bg);
    border: none;
    padding: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    border-radius: 0;
    /* Clean editorial look */
}

.ul-product-img {
    background: transparent;
    padding: 30px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 350px;
}

.ul-product-img img {
    max-height: 100%;
    width: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
}

.ul-product-txt {
    padding: 0 10px;
}

.ul-product-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--taylors-text);
}

.ul-product-category {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.ul-product-price.discounted {
    color: var(--taylors-accent);
    font-weight: 500;
}

/* Hover Animation: Scale + Reveal Second Image (if exists) */
.ul-product:hover {
    background: #ffffff;
    transform: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.ul-product:hover .ul-product-img img {
    transform: translateY(-10px) scale(1.05);
}


/* ==================== TRUST BADGES ==================== */

.trust-badges {
    background: linear-gradient(135deg, #2d5016 0%, #3d6b1f 100%);
    padding: 20px 0;
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(45, 80, 22, 0.2);
}

.trust-badges-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.trust-badge-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.trust-badge:nth-child(1) {
    animation-delay: 0.1s;
}

.trust-badge:nth-child(2) {
    animation-delay: 0.2s;
}

/* ==================== ULTIMATE HERO (Parallax + Glass) ==================== */
:root {
    --hero-accent: #b9ff3d;
    --hero-dark: #0b1a12;
    --hero-glass: rgba(255, 255, 255, 0.03);
    --hero-white: #ffffff;
}

.hero-section-wrapper {
    background: var(--hero-dark);
    height: 100vh !important;
    perspective: 1000px;
    position: relative;
    overflow: hidden;
}

.hero-section-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(11, 26, 18, 0.75) 0%, rgba(11, 26, 18, 0.35) 40%, rgba(11, 26, 18, 0) 65%);
    pointer-events: none;
    z-index: 1;
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
    z-index: 0;
    user-select: none;
    white-space: nowrap;
    pointer-events: none;
}

.modern-hero .ul-banner-slide.split-slide {
    align-items: center;
    min-height: 90vh;
    position: relative;
    overflow: visible;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.modern-hero .slide-content-left {
    position: relative;
    z-index: 2;
    color: var(--hero-white);
    max-width: 640px;
}

.modern-hero .slide-content-left .ul-banner-slide-sub-title,
.modern-hero .slide-content-left .ul-banner-slide-price,
.modern-hero .slide-content-left .ul-banner-slide-title {
    color: var(--hero-white);
}

.modern-hero .slide-content-left .ul-banner-slide-title {
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.modern-hero .slide-image-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-glass-box {
    background: rgba(11, 26, 18, 0.4) !important;
    backdrop-filter: blur(25px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6) !important;
    padding: 60px !important;
    border-radius: 30px !important;
    position: relative;
    overflow: hidden;
}

.hero-glass-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(185, 255, 61, 0.08), transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.06), transparent 50%);
    pointer-events: none;
}

.ul-banner-slide-title {
    font-size: clamp(50px, 8vw, 100px) !important;
    text-transform: uppercase;
    letter-spacing: -3px;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-prod-img.parallax-img {
    animation: floatingBottle 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.5));
    transition: transform 0.2s ease-out;
}

@keyframes floatingBottle {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.slide-bg-shape {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(185, 255, 61, 0.08), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05), transparent 50%);
    filter: blur(0px);
    z-index: 1;
}

.hero-img-zoom img {
    position: relative;
    z-index: 3;
}

.hero-section-wrapper .ul-banner-slider-nav button {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.hero-section-wrapper .ul-banner-slider-nav button:hover {
    background: var(--hero-accent);
    color: #0b1a12;
}

@media (max-width: 1024px) {
    .hero-section-wrapper {
        height: auto !important;
    }

    .modern-hero .ul-banner-slide.split-slide {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-glass-box {
        padding: 36px !important;
    }

    .ul-banner-slide-title {
        letter-spacing: -1px;
    }
}

.trust-badge:nth-child(3) {
    animation-delay: 0.3s;
}

.trust-badge:nth-child(4) {
    animation-delay: 0.4s;
}

/* ==================== COUNTER ANIMATIONS ==================== */

.stats-section {
    background: linear-gradient(135deg, #f5f1e8 0%, #e8e0d5 100%);
    padding: 60px 20px;
    margin: 60px 0;
    border-radius: 16px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 10px;
    font-family: var(--font-sans);
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== PARALLAX SECTIONS ==================== */

.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 40px;
}

.parallax-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-sans);
}

.parallax-content p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* ==================== PROCESS TIMELINE ==================== */

.process-timeline {
    padding: 80px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.timeline-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 60px;
    font-family: var(--font-sans);
}

.timeline-items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    flex-wrap: wrap;
    gap: 40px;
}

.timeline-items::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2d5016, #d4a574, #2d5016);
    z-index: 0;
}

.timeline-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #2d5016 0%, #3d6b1f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    box-shadow: 0 8px 24px rgba(45, 80, 22, 0.3);
    transition: transform 0.3s ease;
    border: 6px solid white;
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.1) rotate(5deg);
}

.timeline-step {
    font-size: 14px;
    color: #d4a574;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.timeline-label {
    font-size: 18px;
    font-weight: 600;
    color: #2d5016;
    margin-bottom: 8px;
}

.timeline-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ==================== TOAST NOTIFICATIONS ==================== */

.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    animation: slideInRight 0.3s ease-out;
    border-left: 4px solid #2d5016;
}

.toast.success {
    border-left-color: #27ae60;
}

.toast.error {
    border-left-color: #e74c3c;
}

.toast.info {
    border-left-color: #3498db;
}

.toast-icon {
    font-size: 24px;
}

.toast-message {
    flex: 1;
    font-weight: 500;
    color: #2c3e50;
}

.toast-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s ease;
}

.toast-close:hover {
    color: #333;
}

/* ==================== SKELETON LOADERS ==================== */

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

    100% {
        background-position: -200% 0;
    }
}

.skeleton-card {
    border-radius: 12px;
    overflow: hidden;
}

.skeleton-image {
    width: 100%;
    height: 250px;
}

.skeleton-text {
    height: 20px;
    margin: 10px 0;
    border-radius: 4px;
}

.skeleton-text.short {
    width: 60%;
}

/* ==================== PURITY METER ==================== */

.purity-meter {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    margin: 40px 0;
}

.purity-meter-title {
    font-size: 24px;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 20px;
    text-align: center;
}

.purity-bar-container {
    position: relative;
    height: 40px;
    background: #e0e0e0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.purity-bar {
    height: 100%;
    background: linear-gradient(90deg, #27ae60, #2ecc71, #58d68d);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
    font-weight: 700;
    color: white;
    font-size: 18px;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.4);
}

.purity-bar.animate {
    animation: fillBar 2s ease-out forwards;
}

@keyframes fillBar {
    from {
        width: 0%;
    }
}

/* ==================== RECIPE BADGES ==================== */

.recipe-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #e65100;
    border: 2px solid #ffb74d;
    margin-top: 10px;
}

.recipe-badge-icon {
    font-size: 16px;
}

/* ==================== MOBILE OPTIMIZATIONS ==================== */

@media (max-width: 768px) {
    .trust-badges-container {
        flex-direction: column;
        gap: 20px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline-items {
        flex-direction: column;
    }

    .timeline-items::before {
        display: none;
    }

    .parallax-section {
        background-attachment: scroll;
        min-height: 300px;
    }

    .parallax-content h2 {
        font-size: 32px;
    }

    .toast-container {
        right: 10px;
        left: 10px;
    }

    .toast {
        min-width: auto;
    }
}

/* ==================== SMOOTH SCROLLING ==================== */

html {
    scroll-behavior: smooth;
}

/* ==================== BUTTON RIPPLE EFFECT ==================== */

.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:active::after {
    width: 300px;
    height: 300px;
}

/* ==================== FLOATING WHATSAPP BUTTON ==================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    color: #25d366;
    box-shadow: none;
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.whatsapp-float .whatsapp-icon {
    width: 64px;
    height: 64px;
    fill: #25d366;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

/* ==================== MODERN HERO SECTION ==================== */

.hero-section-wrapper {
    background: linear-gradient(135deg, var(--dark-industrial-green) 0%, var(--dark-industrial-green-light) 100%);
    height: calc(100dvh - 140px);
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.modern-hero {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 100% !important;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-img-zoom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

.hero-glass-box {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: clamp(35px, 4vw, 60px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    max-width: 550px;
    z-index: 5;
}

.modern-hero .ul-banner-slide-title {
    font-family: var(--font-serif) !important;
    font-size: clamp(42px, 5vw, 72px) !important;
    line-height: 1.1 !important;
    color: var(--white) !important;
    margin-bottom: 20px !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
}

.modern-hero .ul-banner-slide-sub-title {
    color: var(--lime-accent) !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 15px;
    font-size: clamp(11px, 0.9vw, 14px) !important;
}

.modern-hero .ul-banner-slide-price {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: clamp(15px, 1.2vw, 18px) !important;
    margin-bottom: 30px !important;
    line-height: 1.6 !important;
}

.modern-hero .ul-banner-slide-price .price {
    color: var(--lime-accent);
    font-weight: 700;
    font-size: clamp(20px, 1.8vw, 28px);
    font-family: var(--font-serif);
}

.modern-nav button {
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--white) !important;
    border-radius: 50% !important;
    font-size: 18px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ul-banner-slider-nav-wrapper {
    position: absolute !important;
    bottom: 40px !important;
    left: 8% !important;
    z-index: 10 !important;
    width: auto !important;
}

.modern-nav {
    display: flex !important;
    gap: 15px !important;
}

.modern-nav button:hover {
    background: var(--lime-accent) !important;
    color: var(--dark-industrial-green) !important;
    border-color: var(--lime-accent) !important;
    transform: scale(1.1);
}

/* Hero Thumbs */
.hero-thumbs {
    position: absolute !important;
    right: 30px !important;
    bottom: 30px !important;
    width: 500px !important;
    height: auto !important;
    z-index: 100 !important;
    max-width: 40% !important;
}

.thumb-card {
    width: 180px !important;
    margin-left: 20px;
}

.thumb-inner {
    background: white;
    padding: 15px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.swiper-slide-thumb-active .thumb-inner {
    border-color: #2d5016;
    transform: translateY(-10px);
}

.thumb-inner img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
}

.thumb-inner span {
    display: block;
    font-weight: 700;
    color: #2d5016;
    font-size: 14px;
}

/* Responsive Hero */
@media (max-width: 991px) {
    .hero-glass-box {
        left: 5%;
        right: 5%;
        padding: 30px;
        max-width: none;
    }

    .modern-hero .ul-banner-slide-title {
        font-size: 42px !important;
    }

    .hero-thumbs {
        display: none !important;
    }
}

/* ==================== PREMIUM AD SECTION ==================== */

.premium-ad {
    background: linear-gradient(135deg, #1a330a 0%, #2d5016 100%) !important;
    padding: 80px 0 !important;
    position: relative;
    overflow: hidden;
}

.premium-ad::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/avl/sesame_category.png') no-repeat center center;
    background-size: cover;
    opacity: 0.15 !important;
    mix-blend-mode: overlay;
}

.ad-glass-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    color: white;
}

.premium-ad .ul-section-title {
    color: white !important;
    font-family: var(--font-sans);
    line-height: 1.2;
}

.premium-ad .ul-ad-sub-title {
    background: rgba(212, 165, 116, 0.2) !important;
    color: #d4a574 !important;
    border: 1px solid rgba(212, 165, 116, 0.3);
}

.ad-actions {
    display: flex;
    gap: 20px;
}

.ad-actions .ul-btn.secondary:hover {
    background: #2d5016 !important;
    color: white !important;
}

/* ==================== REFINED FEATURED PRODUCTS ==================== */

.featured-products-section {
    padding-bottom: 100px;
}

.featured-product {
    border: 1px solid #f0f0f0 !important;
    background: #ffffff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.featured-product .recipe-badge {
    background: #fdf5e6;
    color: #8b4513;
    border: 1px solid #deb887;
}

.featured-product .ul-product-title a {
    font-family: var(--font-sans);
    font-weight: 700 !important;
    font-size: 22px !important;
}

@media (max-width: 991px) {
    .ad-glass-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .ad-actions {
        flex-direction: column;
        width: 100%;
    }

    .ad-actions .ul-btn {
        margin: 10px 0 !important;
        width: 100%;
    }
}

/* ==================== FULL PAGE HERO ADJUSTMENTS ==================== */

.modern-hero .ul-banner-slider,
.modern-hero .ul-banner-slider .swiper-wrapper,
.modern-hero .ul-banner-slide {
    height: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

.modern-hero {
    display: block !important;
    position: relative !important;
}

.modern-hero .ul-banner-slider-wrapper {
    height: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Split Slide Layout */
.split-slide {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%) !important;
}

.slide-content-left {
    flex: 0 0 50%;
    padding-left: 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    z-index: 5;
}

.slide-image-right {
    flex: 0 0 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #fdfbf7;
}

.slide-image-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/avl/sesame_category.png') no-repeat center center;
    background-size: cover;
    opacity: 0.05;
    filter: grayscale(100%);
}

.main-prod-img {
    max-width: 75% !important;
    max-height: 75% !important;
    object-fit: contain !important;
    z-index: 5;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.12));
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.split-slide:hover .main-prod-img {
    transform: scale(1.05) rotate(2deg);
}

.slide-bg-shape {
    position: absolute;
    right: -15%;
    top: 55%;
    transform: translateY(-50%);
    width: 100%;
    height: 130%;
    background: #f5f1e8;
    border-radius: 50%;
    z-index: 2;
}

.modern-hero .hero-glass-box {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    transform: none !important;
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

@media (max-width: 991px) {
    .split-slide {
        flex-direction: column !important;
        text-align: center;
    }

    .slide-content-left,
    .slide-image-right {
        flex: 0 0 100%;
        padding: 40px 20px;
    }

    .slide-content-left {
        order: 2;
    }

    .slide-image-right {
        order: 1;
        height: 40%;
    }

    .main-prod-img {
        max-width: 60% !important;
    }
}


.hero-thumbs {
    position: absolute !important;
    right: 30px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 100 !important;
    width: 150px !important;
    height: auto !important;
    max-height: 80% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    padding: 20px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.thumb-card {
    width: 100% !important;
    height: auto !important;
}

.thumb-inner {
    background: white !important;
    border-radius: 12px !important;
    padding: 10px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
}

.swiper-slide-thumb-active .thumb-inner {
    border: 2px solid #2d5016 !important;
    transform: scale(1.05) !important;
}

.thumb-inner img {
    width: 100% !important;
    height: 80px !important;
    object-fit: contain !important;
}

.thumb-inner span {
    font-size: 11px !important;
}

.hero-section-wrapper .ul-container {
    height: 100%;
    padding: 0;
    max-width: 100%;
}

/* Aligning content within the flex/center layout */
}

/* ==================== PREMIUM CATEGORIES ==================== */

.ul-categories {
    padding: 80px 0;
    background: #fff;
}

.ul-category {
    background: white;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    display: block;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.ul-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #2d5016;
}

.ul-category-img {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fdfbf7;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.ul-category:hover .ul-category-img {
    transform: scale(1.1) rotate(5deg);
    border-color: #d4a574;
}

.ul-category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ul-category-txt span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 10px;
    font-family: var(--font-sans);
}

.ul-category-btn {
    width: 40px;
    height: 40px;
    background: #fdfbf7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #2d5016;
    transition: all 0.3s ease;
}

.ul-category:hover .ul-category-btn {
    background: #2d5016;
    color: white;
}

/* ==================== VIDEO SECTION ENHANCEMENTS ==================== */

.ul-video {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ul-video-cover {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 1s ease;
}

.ul-video:hover .ul-video-cover {
    transform: scale(1.05);
}

.ul-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
}

.ul-video-play-btn {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.ul-video-play-btn i {
    font-size: 30px;
    color: white;
    margin-left: 5px;
    /* Offset for visual center of play icon */
}

.ul-video-play-btn:hover {
    background: white;
    transform: scale(1.1);
}

.ul-video-play-btn:hover i {
    color: #2d5016;
}

.ul-video-title {
    color: white;
    font-size: 36px;
    font-family: var(--font-sans);
    font-weight: 700;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.3s;
}

.ul-video-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    opacity: 0;
    transform: translateY(20px);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.5s;
}

/* ==================== MODERN REVIEWS ==================== */

.modern-reviews {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #fdfbf7 100%);
    position: relative;
}

.modern-review-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modern-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: #d4a574;
}

.review-stars {
    color: #e6b325;
    margin-bottom: 20px;
    font-size: 14px;
}

.review-text {
    font-size: 18px;
    line-height: 1.6;
    color: #4a4a4a;
    font-style: italic;
    margin-bottom: 30px;
    font-family: var(--font-sans);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fdfbf7;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #2d5016;
    margin: 0;
}

.author-info span {
    font-size: 13px;
    color: #999;
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 60px;
    color: #f5f1e8;
    z-index: 0;
    font-family: serif;
    line-height: 1;
}