/* --- DRIBBBLE CLONE: Organic Premium Restaurant Theme for Pastilla --- */

:root {
    /* Premium Unified Palette: Beige, Gold, Black, White */
    --bg-terracotta: #FAF4EB;  /* Renamed logically below but keeping class name for compatibility: Soft Beige background */
    --brand-green: #D4AF37;    /* Replaced Green with elegant Gold */
    --brand-green-hover: #C5A028; /* Slightly darker gold on hover */
    --brand-yellow: #D4AF37;   /* Using Gold instead of yellow */
    
    --text-white: #111111;     /* Main text becomes dark (almost black) on beige background */
    --text-dark: #111111;      /* Pure dark text */
    --text-muted: #7A746B;     /* Warm grey/beige for muted text */
    
    --card-bg: #FFFFFF;        /* Crisp white for cards against beige bg */
    
    --font-heading: 'Outfit', sans-serif;
    --font-sans: 'Outfit', sans-serif;
    
    --radius-pill: 50px;
    --radius-card: 24px;
    --radius-large: 40px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-terracotta);
    color: var(--text-white);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

/* Utils */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.d-flex { display: flex; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-green);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(20, 157, 107, 0.3);
}
.btn-primary:hover {
    background-color: var(--brand-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(20, 157, 107, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-dark); /* Changed from white to dark for light bg */
    padding: 11px 24px;
    border-radius: var(--radius-pill);
    font-weight: 500;
    border: 1px solid rgba(0,0,0,0.3); /* Darker border */
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    border-color: var(--text-dark);
    background-color: rgba(0,0,0,0.05); /* Dark background hover instead of light */
}

/* Section Labels (Small title with line) */
.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-yellow);
    margin-bottom: 15px;
}
.section-label span {
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: var(--brand-yellow);
}

/* Typography Overrides */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* --- NAVBAR --- */
.navbar {
    padding: 30px 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-heading);
}
.logo i { color: var(--brand-yellow); font-size: 24px; }

.main-menu ul {
    display: flex;
    gap: 40px;
}
.main-menu a {
    font-size: 15px;
    font-weight: 500; /* Slightly bolder for beige bg */
    opacity: 0.7; /* Dark text needs less opacity reduction */
    color: var(--text-dark); /* Ensure links are dark */
}
.main-menu a:hover, .main-menu a.active {
    opacity: 1;
    font-weight: 500;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.search-btn {
    background: transparent;
    border: none;
    color: var(--text-dark); /* Dark search icon */
    font-size: 18px;
    cursor: pointer;
    opacity: 0.7;
}
.search-btn:hover { opacity: 1; }

/* --- INNOVATIVE HERO SECTION --- */
.innovative-hero {
    padding: 40px 0 120px;
    position: relative;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}
.badge-innovative {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.7); /* More opaque white for beige bg */
    border: 1px solid rgba(0, 0, 0, 0.1); /* Dark border */
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600; /* Bolder text */
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--text-dark); /* Ensure text is dark */
    backdrop-filter: blur(5px);
}
.badge-innovative .dot {
    width: 8px;
    height: 8px;
    background: var(--brand-yellow);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--brand-yellow);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}
.hero-title {
    font-size: 85px;
    font-family: var(--font-heading);
    line-height: 1.05;
    margin-bottom: 40px;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
}
.italic-serif {
    font-style: italic;
    color: var(--brand-yellow);
    font-weight: 400;
}
.glass-desc-card {
    background: rgba(255, 255, 255, 0.6); /* White glass for light theme */
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 35px 35px 35px 45px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    transform: translateX(40px); /* Overlap image slightly */
    box-shadow: 0 20px 40px rgba(0,0,0,0.05); /* Lighter shadow */
    border-left: 4px solid var(--brand-yellow);
}
.glass-desc-card p {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.8); /* Dark text for light glass */
    margin-bottom: 35px;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}
.btn-innovative {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--brand-yellow); /* Gold background */
    color: var(--card-bg); /* White text for visibility */
    padding: 8px 8px 8px 25px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-innovative .arrow-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--text-dark); /* Black circle */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-terracotta); /* Light arrow */
    transition: 0.4s;
}
.btn-innovative:hover {
    background: var(--text-dark);
    color: var(--card-bg); /* White text */
    transform: translateY(-2px);
}
.btn-innovative:hover .arrow-circle {
    transform: rotate(-45deg);
    background: var(--brand-yellow);
    color: var(--text-dark);
}
.rating-hero {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.rating-hero .stars {
    color: var(--brand-yellow);
    font-size: 13px;
    letter-spacing: 2px;
}
.rating-hero span {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6); /* Darker text for beige bg */
    font-weight: 500;
}

.hero-visual-innovative {
    position: relative;
    z-index: 1;
}
.floating-product-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-main-img {
    width: 130%; /* Make the floating product large and imposing */
    max-width: none;
    transform: scale(1.1) rotate(6deg);
    /* mix-blend-mode multiply makes the black background of the generated image become fully transparent and blend with the terracotta! */
    mix-blend-mode: multiply; 
    /* Clip path removes the table edges and keeps only the round pastilla */
    clip-path: circle(38% at 50% 50%);
    z-index: 1;
    animation: floating-img 8s ease-in-out infinite;
}
@keyframes floating-img {
    0% { transform: scale(1.1) rotate(6deg) translateY(0); }
    50% { transform: scale(1.1) rotate(3deg) translateY(-20px); }
    100% { transform: scale(1.1) rotate(6deg) translateY(0); }
}

.floating-tag {
    position: absolute;
    background: rgba(255,255,255,0.95);
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(5px);
}
.floating-tag i {
    color: var(--brand-green);
    font-size: 18px;
}
.tag-1 {
    top: 20%;
    left: -15%;
    animation-delay: 0s;
}
.tag-2 {
    bottom: 15%;
    right: -10%;
    animation-delay: 3s;
}

/* Circular Text Badge */
.rotating-badge {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 130px;
    height: 130px;
    background: var(--brand-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
.rotating-badge svg {
    width: 110px;
    height: 110px;
    animation: rotate 15s linear infinite;
}
.rotating-badge .inner-icon {
    position: absolute;
    font-size: 28px;
    color: var(--text-dark);
}
@keyframes rotate {
    100% { transform: rotate(360deg); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* --- QUICK MENU PILLS --- */
.quick-menu {
    margin-top: -30px; /* Overlaps hero slightly */
    padding-bottom: 80px;
}
.quick-card {
    background-color: var(--card-bg);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    padding: 12px;
    padding-right: 25px;
    border-radius: var(--radius-pill);
    gap: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    flex: 1;
    margin: 0 10px;
    position: relative;
    transition: transform 0.3s;
    cursor: pointer;
}
.quick-card:hover {
    transform: translateY(-5px);
}
.quick-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.quick-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.quick-info {
    flex: 1;
}
.quick-info .rating {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
}
.quick-info .rating i { color: var(--brand-yellow); margin-right: 3px; }
.quick-info h4 {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    margin: 2px 0;
}
.quick-info .price {
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-green);
}
.quick-add {
    width: 30px;
    height: 30px;
    background-color: var(--brand-yellow);
    border: none;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}
.quick-card:hover .quick-add {
    background-color: var(--brand-green);
    transform: scale(1.1);
}

/* --- ABOUT SECTION --- */
.about-section {
    padding: 80px 0;
}
.about-video {
    flex: 1;
    position: relative;
    padding-right: 60px;
}
.about-video img {
    border-radius: var(--radius-large);
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.play-btn {
    position: absolute;
    top: 50%;
    left: calc(50% - 30px);
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--brand-yellow);
    color: white;
    font-size: 24px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 184, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px; /* Optically center play icon */
    transition: 0.3s;
}
.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.about-text {
    flex: 1;
}
.about-text h2 {
    font-size: 45px;
    line-height: 1.1;
    margin-bottom: 25px;
}
.about-text p {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.8;
}

/* --- SPECIAL DISHES (POP-OUT CARDS) --- */
.special-dishes {
    padding: 80px 0 120px;
}
.menu-intro {
    margin-bottom: 120px; /* Extra margin for popout overlap */
}
.section-heading {
    font-size: 50px;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    row-gap: 80px;
}

/* The Dribbble Card Design */
.dish-card {
    background-color: var(--card-bg);
    color: var(--text-dark);
    border-radius: var(--radius-card);
    padding: 25px;
    padding-top: 80px; /* Space for pop-out image */
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.dish-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.2);
}

/* Pop-out Image */
.dish-img-wrapper {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #EBE1D9; /* Soft background behind plate */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
    transition: 0.3s;
}
.dish-img-wrapper img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.3));
    transition: 0.5s;
}
.dish-card:hover .dish-img-wrapper img {
    transform: rotate(10deg) scale(1.05);
}

/* Heart Button */
.heart-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}
.heart-btn:hover {
    color: #ff4757;
    transform: scale(1.2);
}

/* Dish Info */
.dish-content {
    text-align: center;
    margin-top: 10px;
}
.dish-content h3 {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    height: 48px;
    overflow: hidden;
}
.dish-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    height: 60px;
    overflow: hidden;
}

.dish-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 10px;
}
.dish-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-green);
}
.dish-rating {
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}
.dish-rating i { color: var(--brand-yellow); }

.btn-add-cart {
    width: 100%;
    background-color: var(--text-white);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-weight: 600;
    padding: 12px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.btn-add-cart:hover {
    background-color: var(--brand-green);
    color: var(--text-white);
    border-color: var(--brand-green);
}

/* --- NEW SUSHI STYLE SECTIONS --- */

/* 1. Marquee */
.marquee-bar {
    background-color: var(--text-dark); /* Black marquee */
    color: var(--brand-yellow); /* Gold text on black */
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}
.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}
.marquee-reverse {
    animation-direction: reverse;
}
.marquee-item {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin: 0 40px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
}
.marquee-icon {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 50%;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 2. Favorites Grid */
.favorites-section {
    background-color: #EFE9E1;
    color: var(--text-dark);
    padding: 100px 0;
}
.heavy-heading {
    font-size: 55px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 15px;
}
.heading-sub {
    font-size: 16px;
    opacity: 0.7;
    margin-bottom: 40px;
}
.filter-pills {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}
.filter-pills button {
    background: transparent;
    border: 1px solid var(--text-dark);
    border-radius: var(--radius-pill);
    padding: 8px 24px;
    font-family: var(--font-sans);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.filter-pills button.active, .filter-pills button:hover {
    background: var(--brand-green);
    color: white;
    border-color: var(--brand-green);
}

.favorites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    row-gap: 50px;
}
.fav-card-modern {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-large);
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08); /* Soft continuous shadow */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy transition */
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}
.fav-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 50px rgba(0,0,0,0.12);
}
.fav-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    background: #FDF9F5;
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    overflow: hidden;
}
.fav-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.fav-card-modern:hover .fav-img-wrap img {
    transform: scale(1.1) rotate(5deg);
}
.fav-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--brand-yellow);
    color: var(--text-dark);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 10px rgba(255, 184, 0, 0.3);
    z-index: 2;
}
.fav-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.fav-info h4 {
    font-family: var(--font-heading);
    font-size: 21px;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.2;
}
.fav-info p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
    flex: 1; /* Automatically pushes footer to bottom */
}
.fav-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 15px;
}
.fav-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--brand-green);
    font-family: var(--font-sans);
}
.fav-cart-btn {
    background: var(--text-dark);
    color: white;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}
.fav-cart-btn:hover {
    background: var(--brand-green);
    transform: scale(1.15) rotate(-10deg);
}

/* 3. Parallax Banner */
.full-parallax {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
}
.parallax-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    z-index: 0;
    filter: brightness(0.4);
}
.parallax-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
}
.parallax-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.massive-text {
    font-size: 70px;
    font-family: var(--font-heading);
    line-height: 1.1;
    text-transform: uppercase;
}
.highlight-orange { color: var(--brand-yellow); font-style: italic; }
.parallax-right {
    max-width: 400px;
    background: rgba(0,0,0,0.5);
    padding: 40px;
    border-radius: var(--radius-card);
    backdrop-filter: blur(10px);
}
.parallax-right p { margin-bottom: 25px; font-size: 16px; line-height: 1.6; }
.btn-orange {
    background: var(--brand-yellow);
    color: #fff; /* White text on gold */
    border: none;
    padding: 12px 30px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-orange:hover {
    transform: scale(1.05);
    background: var(--text-dark); /* Black on hover */
}

/* 4. Stats Section */
.stats-section {
    background-color: var(--card-bg);
    color: var(--text-dark);
    padding: 100px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}
.stat-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: var(--radius-card);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.stat-icon-fa {
    font-size: 55px;
    color: var(--brand-yellow);
    margin-bottom: 25px;
    display: inline-block;
}
.stat-card h3 {
    font-size: 40px;
    font-family: var(--font-heading);
    margin-bottom: 5px;
    color: var(--text-dark); /* Explicit dark color */
}
.stat-card p {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-green);
    letter-spacing: 1px;
}

/* 5. Testimonials (Masonry style) */
.testimonials-section {
    padding: 100px 0;
}
.section-label-small {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}
.testi-card {
    background: #fff;
    color: var(--text-dark);
    border-radius: var(--radius-card);
    padding: 40px;
    text-align: left;
    position: relative;
}
.testi-card.d-dark {
    background: #2F2119;
    color: #fff;
}
.testi-author-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
.testi-author-top img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.author-info strong { display: block; font-size: 18px; font-family: var(--font-heading); }
.author-info span { font-size: 13px; opacity: 0.6; }
.quote-icon {
    margin-left: auto;
    font-size: 30px;
    opacity: 0.1;
}
.quote {
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
}

/* 7. Split Section */
.split-section {
    height: 600px;
    background: #FFFFFF; /* Match clean light theme */
}
.split-left {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}
.overlay-gold {
    position: absolute;
    inset: 0;
    background: rgba(212, 175, 55, 0.85); /* Gold overlay instead of red */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.huge-split-text {
    font-size: 80px;
    font-family: var(--font-heading);
    color: white; /* Keep white on the red overlay */
    line-height: 1.1;
}
.split-right {
    flex: 1;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px;
}
.split-right > h3 {
    margin-bottom: 40px;
    letter-spacing: 3px;
    font-size: 14px;
    opacity: 0.5;
}
.split-product img {
    width: 250px;
    margin: 0 auto 20px;
    filter: drop-shadow(0 20px 20px rgba(0,0,0,0.1));
}
.cursive-sign {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 45px;
    margin-bottom: 10px;
}
.mt-20 { margin-top: 20px; }

/* 8. Massive Footer */
.massive-bottom-footer {
    background-color: #0A0A0A;
    color: white;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}
.footer-top-links {
    margin-bottom: 80px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}
.brand-info h4 { font-family: var(--font-heading); font-size: 24px; color: var(--brand-yellow); margin-bottom: 20px; }
.brand-info p { opacity: 0.7; margin-bottom: 25px; }
.socials i { font-size: 24px; margin-right: 15px; cursor: pointer; transition: 0.3s; }
.socials i:hover { color: var(--brand-yellow); }

.links h4 { font-size: 16px; margin-bottom: 25px; letter-spacing: 1px; }
.links ul li { margin-bottom: 15px; }
.links a { opacity: 0.6; }
.links a:hover { opacity: 1; color: var(--brand-yellow); }

.huge-brand-text {
    font-family: var(--font-heading);
    font-size: 16vw; 
    line-height: 0.8;
    color: #1A1A1A; /* Very dark grey, almost invisible */
    white-space: nowrap;
    text-align: center;
    font-weight: 900;
}
.footer-legal {
    position: absolute;
    bottom: 20px;
    width: 100%;
    opacity: 0.4;
    font-size: 14px;
}

/* --- VIDEO MODAL --- */
.video-modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: hidden; 
    background-color: rgba(0,0,0,0.9); 
    backdrop-filter: blur(5px);
}
.video-modal-content {
    background-color: #000;
    margin: 5% auto; 
    padding: 0;
    width: 80%; 
    max-width: 900px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.close-video {
    color: white;
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.close-video:hover {
    color: var(--brand-yellow);
}
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- HAMBURGER BUTTON & MOBILE DRAWER --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
    transition: opacity 0.3s ease;
}

.hamburger-bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Open animation & Fade out active toggle */
.menu-toggle.active {
    opacity: 0;
    pointer-events: none;
}
.menu-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.menu-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Backdrop */
.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    pointer-events: none;
    z-index: 9998;
    transition: opacity 0.4s ease;
}

.drawer-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile Drawer Container */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: rgba(250, 244, 235, 0.98); /* var(--bg-terracotta) */
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    margin-bottom: 40px;
}

.close-drawer {
    background: transparent;
    border: none;
    font-size: 26px;
    color: var(--text-dark);
    cursor: pointer;
    transition: color 0.3s;
}

.close-drawer:hover {
    color: var(--brand-yellow);
}

.drawer-menu ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.drawer-menu a {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    opacity: 0.8;
    display: inline-block;
    transition: all 0.3s ease;
}

.drawer-menu a.active,
.drawer-menu a:hover {
    opacity: 1;
    color: var(--brand-yellow);
    transform: translateX(5px);
}

.drawer-footer {
    margin-top: auto;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 30px;
}

.drawer-footer .btn-primary {
    width: 100%;
    padding: 14px 24px;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 65px;
    }
    .glass-desc-card {
        transform: translateX(0); /* Remove desktop overlap */
        padding: 30px;
    }
    .floating-product-wrapper {
        height: 480px;
    }
    .hero-main-img {
        width: 110%;
    }
    .tag-1 {
        left: -5%;
    }
    .tag-2 {
        right: -5%;
    }
    .quick-menu .container {
        flex-wrap: wrap;
        gap: 20px;
    }
    .quick-card {
        flex: unset;
        width: calc(50% - 10px);
        margin: 0;
    }
    .about-video {
        padding-right: 30px;
    }
    .about-text h2 {
        font-size: 35px;
    }
    
    .favorites-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Navbar & Mobile Menu */
    .main-menu {
        display: none; /* Hide desktop menu */
    }
    .menu-toggle {
        display: flex; /* Show hamburger */
    }
    .navbar {
        padding: 20px 0;
    }
    
    /* Hero Section */
    .innovative-hero {
        padding: 20px 0 40px;
    }
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    .hero-content {
        display: contents; /* Promotes children to direct children of hero-grid */
    }
    .badge-innovative {
        grid-row: 1;
        justify-self: center;
        margin-bottom: 0px;
    }
    .hero-title {
        grid-row: 2;
        font-size: 40px;
        line-height: 1.1;
        margin-bottom: 10px;
    }
    .hero-visual-innovative {
        grid-row: 3;
        position: relative;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .glass-desc-card {
        grid-row: 4;
        transform: none;
        padding: 25px;
        border-left: none;
        border-top: 4px solid var(--brand-yellow);
        text-align: left;
        width: 100%;
        max-width: 550px;
        margin: 0 auto;
    }
    .hero-actions {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    .btn-innovative {
        justify-content: center;
    }
    .rating-hero {
        align-items: center;
    }
    .floating-product-wrapper {
        height: 320px;
    }
    .hero-main-img {
        width: 100%;
        max-width: 320px;
        transform: scale(1) rotate(4deg);
        clip-path: circle(46% at 50% 50%);
        animation: floating-img-mobile 8s ease-in-out infinite;
    }
    .rotating-badge {
        width: 100px;
        height: 100px;
        top: -10px;
        right: 10px;
    }
    .rotating-badge svg {
        width: 85px;
        height: 85px;
    }
    .rotating-badge .inner-icon {
        font-size: 20px;
    }
    .floating-tag {
        padding: 8px 16px;
        font-size: 12px;
    }
    .tag-1 {
        top: 10%;
        left: 5%;
    }
    .tag-2 {
        bottom: 10%;
        right: 5%;
    }
    
    /* Quick Menu Horizontal Carrousel Scroll */
    .quick-menu {
        margin-top: 0px;
        padding-bottom: 40px;
    }
    .quick-menu .container {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        padding-left: 20px;
        padding-right: 20px;
        gap: 15px;
        justify-content: flex-start;
        -ms-overflow-style: none;  /* IE/Edge */
        scrollbar-width: none;  /* Firefox */
    }
    .quick-menu .container::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    .quick-card {
        flex: 0 0 280px;
        width: 280px;
        margin: 0;
        scroll-snap-align: start;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }
    
    /* About Section */
    .about-section {
        padding: 50px 0;
    }
    .about-section .container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .about-video {
        width: 100%;
        padding-right: 0;
        margin-bottom: 0;
    }
    .about-video img {
        height: 280px;
    }
    .section-label {
        justify-content: center;
    }
    .about-text h2 {
        font-size: 28px;
    }
    
    /* Favorites Section */
    .favorites-section {
        padding: 60px 0;
    }
    .heavy-heading {
        font-size: 32px;
    }
    .heading-sub {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .filter-pills {
        gap: 8px;
        margin-bottom: 40px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .filter-pills button {
        padding: 6px 16px;
        font-size: 13px;
    }
    .favorites-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
        gap: 25px;
    }
    
    /* Parallax Banner */
    .full-parallax {
        height: auto;
        padding: 60px 0;
    }
    .parallax-bg {
        background-attachment: scroll; /* Fix lag on mobile */
    }
    .parallax-content {
        flex-direction: column;
        text-align: center;
        gap: 35px;
    }
    .massive-text {
        font-size: 38px;
    }
    .parallax-right {
        text-align: center;
        margin: 0 auto;
        padding: 25px;
        max-width: 100%;
    }
    
    /* Stats Section */
    .stats-section {
        padding: 60px 0;
    }
    .stats-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 15px;
        gap: 15px;
        justify-content: flex-start;
        -ms-overflow-style: none;  /* IE/Edge */
        scrollbar-width: none;  /* Firefox */
        margin-top: 35px;
    }
    .stats-grid::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    .stat-card {
        flex: 0 0 220px;
        width: 220px;
        margin: 0;
        scroll-snap-align: start;
        padding: 25px 15px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    }
    .stat-icon-fa {
        font-size: 38px;
        margin-bottom: 15px;
    }
    .stat-card h3 {
        font-size: 28px;
    }
    
    /* Testimonials */
    .testimonials-section {
        padding: 60px 0;
    }
    .testi-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        padding-left: 20px;
        padding-right: 20px;
        gap: 15px;
        justify-content: flex-start;
        -ms-overflow-style: none;  /* IE/Edge */
        scrollbar-width: none;  /* Firefox */
        margin-top: 40px;
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }
    .testi-grid::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    .testi-card {
        flex: 0 0 300px;
        width: 300px;
        margin: 0;
        scroll-snap-align: start;
        padding: 30px 25px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    }
    
    /* Split Section */
    .split-section {
        display: block !important;
        height: auto;
    }
    .split-left {
        display: block !important;
        height: 300px !important;
        min-height: 300px !important;
        width: 100% !important;
        position: relative !important;
    }
    .huge-split-text {
        font-size: 45px;
    }
    .split-right {
        width: 100%;
        padding: 40px 20px;
    }
    .split-product img {
        width: 180px;
    }
    .cursive-sign {
        font-size: 32px;
    }
    
    /* Footer */
    .massive-bottom-footer {
        padding-top: 50px;
    }
    .footer-top-links {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
        margin-bottom: 40px;
    }
    .brand-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .socials {
        margin-top: 10px;
    }
    .socials i {
        margin: 0 10px;
    }
    .huge-brand-text {
        font-size: 13vw;
        margin-top: 25px;
    }
    
    /* Video Modal */
    .video-modal-content {
        width: 95%;
        margin: 25% auto;
    }
    .close-video {
        top: -45px;
        right: 5px;
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .header-actions .btn-primary {
        display: none; /* Hide Commander button in header on very small screens to fit logo and menu toggle */
    }
}

@keyframes floating-img-mobile {
    0% { transform: scale(1) rotate(4deg) translateY(0); }
    50% { transform: scale(1) rotate(2deg) translateY(-10px); }
    100% { transform: scale(1) rotate(4deg) translateY(0); }
}
