:root {
    --font-display: 'Rowdies', sans-serif;

    --color-black: #000;
    --color-white: #fff;
    --color-brand-gold: #d4af37;
    --color-brand-gold-soft: rgba(212, 175, 55, 0.16);
    --color-brand-gold-line: rgba(212, 175, 55, 0.32);
    --color-brand-gold-border: rgba(212, 175, 55, 0.35);
    --color-brand-gold-strong: rgba(212, 175, 55, 0.95);
    --color-brand-gold-shadow: rgba(212, 175, 55, 0.24);
    --color-text-muted: #ddd;
    --color-surface-dark: rgba(15, 15, 15, 0.96);
    --color-surface-modal: rgba(5, 3, 1, 0.96);
    --color-surface-white-soft: rgba(255, 255, 255, 0.12);

    --radius-full: 999px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;

    --shadow-brand-hover: 0 16px 32px var(--color-brand-gold-shadow);
    --shadow-image-hover: 0 18px 40px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(212, 166, 42, 0.18);
    --shadow-modal: 0 24px 80px rgba(0, 0, 0, 0.55);
    --shadow-dropdown: 0 18px 34px rgba(0, 0, 0, 0.28);

    --transition-base: 0.35s ease;
    --transition-image: 0.45s ease;
    --transition-sweep: 0.7s ease;

    --scroll-offset: 90px;
    --navbar-z: 1020;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--scroll-offset);
}

/* ================= GLOBAL ================= */
body {
    margin: 0;
    font-family: var(--font-display);
    background: var(--color-black);
}

img {
    transition: transform var(--transition-image), box-shadow var(--transition-image), filter var(--transition-image);
    transform-origin: center;
}

img:hover {
    transform: translateY(-6px) scale(1.02);
    filter: brightness(1.05) saturate(1.08);
    box-shadow: var(--shadow-image-hover);
}

.image-lightbox-trigger {
    cursor: zoom-in;
}

.image-preview-modal .modal-content {
    background: var(--color-surface-modal);
    border: 1px solid var(--color-brand-gold-line);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    box-shadow: var(--shadow-modal);
}

.image-preview-modal .modal-dialog {
    max-width: min(92vw, 1200px);
}

.image-preview-modal-img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.image-preview-modal-img:hover {
    transform: none;
    filter: none;
    box-shadow: none;
}

.image-preview-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    background-color: var(--color-surface-white-soft);
    border-radius: 50%;
    opacity: 1;
}

.image-preview-close:hover {
    background-color: var(--color-brand-gold-strong);
}

.reel-player-modal .modal-dialog {
    max-width: min(92vw, 430px);
}

.reel-player-modal .modal-content {
    background: rgba(6, 6, 6, 0.98);
    border: 1px solid rgba(212, 166, 42, 0.28);
    border-radius: 28px;
    padding: 18px;
    box-shadow: var(--shadow-modal);
}

.reel-player-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    opacity: 1;
}

.reel-player-close:hover {
    background-color: var(--color-brand-gold-strong);
}

.reel-player-frame-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 22px;
    background: #111;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.reel-player-embed-wrap {
    width: 100%;
    height: 100%;
}

.reel-player-embed-wrap blockquote.instagram-media {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

.reel-player-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--color-white);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.03em;
}

.reel-player-fallback:hover {
    color: var(--color-brand-gold);
}

.reel-player-note,
.reel-player-error {
    margin: 10px 0 0;
    text-align: center;
    font-size: 12px;
    line-height: 1.5;
}

.reel-player-note {
    color: rgba(255, 255, 255, 0.68);
}

.reel-player-error {
    color: #f2c7c7;
}

.reel-player-spinner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
    color: var(--color-white);
    font-size: 13px;
}

.btn,
.nav-btn,
.navbar-toggler {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base),
        color var(--transition-base), border-color var(--transition-base);
}

.btn::after,
.nav-btn::after,
.navbar-toggler::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -30%;
    width: 45%;
    height: 320%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.42), transparent);
    transform: translateX(-220%) rotate(18deg);
    transition: transform var(--transition-sweep);
    pointer-events: none;
}

.btn:hover,
.nav-btn:hover,
.navbar-toggler:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-brand-hover);
}

.btn:hover::after,
.nav-btn:hover::after,
.navbar-toggler:hover::after {
    transform: translateX(340%) rotate(18deg);
}

/* ================= TOP BAR ================= */
.top-bar {
    background: var(--color-brand-gold);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .left,
.top-bar .right {
    display: flex;
    align-items: center;
}

.top-bar .left {
    flex-wrap: wrap;
}

.top-bar .left span {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
}

.top-bar .right a {
    display: inline-flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.top-bar .right a:visited,
.top-bar .right a:hover,
.top-bar .right a:focus {
    color: inherit;
    text-decoration: none;
}

.top-bar i {
    margin-right: 6px;
}

.top-bar .right i {
    margin-left: 15px;
    cursor: pointer;
}

/* ================= NAVBAR ================= */
.custom-navbar {
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.72), rgba(12, 12, 12, 0.58));
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: var(--navbar-z);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px) saturate(135%);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.custom-navbar .container {
    align-items: center;
}

.navbar-brand img {
    height: 68px;
}

.nav-link {
    color: var(--color-white) !important;
    margin: 0 12px;
    font-weight: 500;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.18);
}

.nav-link.active,
.nav-link:hover {
    color: var(--color-brand-gold) !important;
}

.nav-action-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-shop-btn {
    background: var(--color-brand-gold);
    color: var(--color-black);
    border-radius: var(--radius-full);
    padding: 8px 18px;
    font-weight: 600;
    border: 0;
    box-shadow: none;
}

.nav-shop-btn:hover,
.nav-shop-btn.show {
    background: var(--color-white);
    color: var(--color-black);
}

.nav-shop-btn.dropdown-toggle::before {
    display: none;
}

.nav-shop-btn.dropdown-toggle::after {
    position: static;
    width: auto;
    height: auto;
    margin-left: 8px;
    vertical-align: middle;
    border-top: 0.35em solid currentColor;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    background: none;
    transform: none;
    transition: none;
}

.nav-shop-btn:hover::after,
.nav-shop-btn.show::after {
    transform: none;
}

.shop-menu {
    min-width: 220px;
    padding: 10px;
    border: 1px solid var(--color-brand-gold-border);
    border-radius: 16px;
    background: var(--color-surface-dark);
    box-shadow: var(--shadow-dropdown);
}

.shop-menu .dropdown-item {
    border-radius: 10px;
    padding: 10px 14px;
    color: var(--color-white);
    font-weight: 500;
}

.shop-menu .dropdown-item:hover,
.shop-menu .dropdown-item:focus {
    background: var(--color-brand-gold-soft);
    color: var(--color-brand-gold);
}

/* Button */
.groceries-btn {
    background: var(--color-brand-gold);
    color: var(--color-black);
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 600;
}

.groceries-btn:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.navbar-toggler {
    border-color: rgba(212, 166, 42, 0.5);
}

.navbar-toggler:hover {
    background: var(--color-white);
    color: var(--color-black) !important;
    border-color: var(--color-white);
}

.navbar-toggler:hover i {
    color: var(--color-black);
}

/* ================= VIDEO HERO ================= */
.hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Video */
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: translate(-50%, -50%);
}

/* Optional overlay (reduce or remove if not needed) */
.hero-video .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* adjust or remove */
    top: 0;
    left: 0;
}

.hero-sound-toggle {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-full);
    background: rgba(9, 9, 9, 0.56);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    backdrop-filter: blur(10px);
    transition: background-color var(--transition-base), border-color var(--transition-base), color var(--transition-base), transform var(--transition-base);
}

.hero-sound-toggle i {
    font-size: 14px;
}

.hero-sound-toggle:hover {
    background: rgba(212, 166, 42, 0.16);
    border-color: rgba(212, 166, 42, 0.5);
    color: var(--color-brand-gold);
    transform: translateY(-2px);
}
/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .hero-video {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        height: 48svh;
        min-height: 300px;
        max-height: 420px;
    }

    .bg-video {
        object-position: center 36%;
    }

    .hero-sound-toggle {
        right: 18px;
        bottom: 18px;
        padding: 10px 16px;
        font-size: 12px;
    }

    .top-bar {
        padding: 8px 0;
    }

    .top-bar .container {
        display: flex !important;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .top-bar .left {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .top-bar .left span {
        margin-right: 0;
        font-size: 11px;
        line-height: 1;
        white-space: nowrap;
    }

    .top-bar .right {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        flex-shrink: 0;
    }

    .top-bar .right i {
        margin-left: 0;
        margin-right: 0;
        font-size: 12px;
    }

    .custom-navbar {
        padding: 12px 0;
    }

    .custom-navbar .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        row-gap: 10px;
    }

    .navbar-brand {
        margin-right: 0;
    }

    .navbar-brand img {
        height: 56px;
    }

    .navbar-toggler {
        margin-left: auto;
        padding: 8px 10px;
    }

    .navbar-collapse {
        width: 100%;
        text-align: center;
        padding-top: 10px;
        margin-top: 8px;
        padding-bottom: 14px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 22px;
        background: rgba(10, 10, 10, 0.55);
        box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
        backdrop-filter: blur(16px) saturate(130%);
        -webkit-backdrop-filter: blur(16px) saturate(130%);
    }

    .navbar-nav {
        text-align: center;
        margin-top: 12px;
    }

    .nav-link {
        margin: 0;
        padding: 10px 0;
    }

    .nav-action-group {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 15px;
    }

    .shop-dropdown {
        width: fit-content;
    }

    .shop-menu {
        min-width: 200px;
    }

    .groceries-btn {
        display: block;
        width: fit-content;
        margin: 0;
    }
}

@media (max-width: 576px) {
    .hero-video {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        height: 30svh;
        min-height: 220px;
        max-height: 270px;
    }

    .bg-video {
        object-position: center 34%;
    }

    .hero-sound-toggle {
        right: 14px;
        bottom: 14px;
        gap: 8px;
        padding: 9px 14px;
    }

    .hero-sound-toggle span {
        display: none;
    }

    .top-bar .left {
        gap: 8px;
    }

    .top-bar .left span {
        font-size: 10px;
    }

    .top-bar .right {
        gap: 6px;
    }

    .navbar-brand img {
        height: 50px;
    }
}

/* ================= HOME ENTRY ================= */
.home-entry-section {
    background: #000;
    padding: 72px 0 24px;
}

.home-entry-card {
    display: block;
    text-align: center;
    color: #fff;
    text-decoration: none;
}

.home-entry-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.home-entry-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.home-entry-card:hover h3 {
    color: #d4a62a;
}

.home-entry-meta {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.home-entry-arrow {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #d4a62a;
    color: #000;
    font-size: 20px;
    box-shadow: 0 14px 32px rgba(212, 166, 42, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.home-entry-card:hover .home-entry-arrow {
    transform: translateX(4px);
    background: #fff;
    box-shadow: 0 18px 34px rgba(255, 255, 255, 0.18);
}

/* ================= HERITAGE ================= */
.heritage-section {
    background: #000;
    color: #fff;
    padding: 100px 0 0;
    overflow: hidden;
}

/* TOP CONTENT */
.subtitle {
    color: #d4a62a;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
}

.title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
}

.title span {
    color: #d4a62a;
}

/* Paragraph */
.desc {
    max-width: 750px;
    margin: 0 auto 15px;
    color: #cfcfcf;
    font-size: 16px;
    line-height: 1.7;
}

/* IMAGE */
.heritage-image {
    margin-top: 60px;
}

.heritage-image img {
    max-width: 900px;
    width: 100%;
    opacity: 0.95;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {
    .home-entry-card img {
        height: 300px;
    }

    .home-entry-card h3 {
        font-size: 24px;
    }

    .title {
        font-size: 34px;
    }

    .desc {
        font-size: 15px;
        padding: 0 15px;
    }

    .heritage-image img {
        max-width: 700px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .home-entry-section {
        padding: 56px 0 16px;
    }

    .home-entry-card img {
        height: 250px;
        border-radius: 22px;
    }

    .home-entry-card h3 {
        font-size: 22px;
    }

    .home-entry-meta {
        margin-top: 18px;
        gap: 14px;
    }

    .home-entry-arrow {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .title {
        font-size: 26px;
    }

    .subtitle {
        font-size: 12px;
    }

    .desc {
        font-size: 14px;
    }

    .heritage-image {
        margin-top: 40px;
    }
}

/* ================= COLLECTION ================= */
.collection-section {
    background: #000;
    color: #fff;
    padding: 100px 0;
}

/* Heading */
.subtitle {
    color: #d4a62a;
    letter-spacing: 2px;
    font-size: 14px;
}

.title {
    font-size: 48px;
    font-weight: 800;
    margin-top: 10px;
}

.title span {
    color: #d4a62a;
}

/* Product Card */
.product-card {
    position: relative;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    padding: 40px 20px;
    height: 100%;
    transition: 0.4s;
}

/* Image */
.product-card img {
    max-height: 220px;
    object-fit: contain;
    transition: 0.4s;
}

/* Overlay */
.product-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(212, 166, 42, 0.95); /* gold */
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: 0.4s;
}

/* Text */
.product-card .overlay h4 {
    color: #000;
    font-weight: 700;
    font-size: 20px;
}

/* Hover Effect */
.product-card:hover .overlay {
    opacity: 1;
}

.product-card:hover img {
    transform: scale(1.05);
    opacity: 0.2;
}

/* Button */
.view-btn {
    background: #d4a62a;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
}

.view-btn:hover {
    background: #fff;
    color: #000;
}
/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {
    .title {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .title {
        font-size: 26px;
    }

    .product-card {
        padding: 30px 15px;
    }

    .product-card img {
        max-height: 180px;
    }
}

/* ================= PROCESS ================= */
.process-section {
    background: #000;
    color: #fff;
    padding: 100px 0;
}

/* Heading */
.subtitle {
    color: #d4a62a;
    letter-spacing: 2px;
    font-size: 14px;
}

.title {
    font-size: 48px;
    font-weight: 800;
    margin-top: 10px;
}

.title span {
    color: #d4a62a;
}

/* Cards */
.process-card {
    border-radius: 20px;
    height: 100%;
    padding: 30px;
}

/* Image Card */
.image-card {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-card img {
    max-height: 250px;
    object-fit: contain;
}

/* Text Card */
.text-card {
    border: 1px solid #d4a62a;
    text-align: left;
    background: rgba(255,255,255,0.02);
}

.text-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.text-card p {
    color: #d4a62a;
    font-size: 15px;
    line-height: 1.6;
}

/* Line */
.line {
    width: 40px;
    height: 2px;
    background: #d4a62a;
    margin-top: 20px;
}

/* ================= STATS ================= */
.process-stats {
    border: 1px solid #d4a62a;
    border-radius: 40px;
    padding: 40px 20px;
}

.process-stats h3 {
    font-size: 32px;
    font-weight: 700;
}

.process-stats p {
    color: #d4a62a;
    font-size: 14px;
    margin-top: 5px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {
    .title {
        font-size: 34px;
    }

    .text-card {
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .title {
        font-size: 26px;
    }

    .process-card {
        padding: 20px;
    }

    .process-stats {
        border-radius: 20px;
    }
}

/* ================= INSTAGRAM ================= */
.instagram-section {
    background: #000;
    color: #fff;
    padding: 100px 0;
}

/* Heading */
.title {
    font-size: 48px;
    font-weight: 800;
}

.title span {
    color: #d4a62a;
}

.subtitle {
    color: #d4a62a;
    margin-top: 10px;
}

/* Card */
.insta-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 9 / 16;
    max-width: 250px;
    margin: 0 auto;
}

.insta-card-link,
.media-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.insta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Views */
.views {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
}

/* Hover effect */
.insta-card:hover {
    transform: scale(1.03);
    transition: 0.3s;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .title {
        font-size: 26px;
    }
}

/* ================= GROCERY ================= */
.grocery-section {
    background: #000;
    color: #fff;
    padding: 100px 0;
}

/* Subtitle */
.subtitle {
    color: #d4a62a;
    letter-spacing: 2px;
    font-size: 14px;
}

/* Title */
.title {
    font-size: 48px;
    font-weight: 800;
    margin-top: 10px;
}

.title span {
    color: #d4a62a;
}

/* Description */
.desc {
    color: #d4a62a;
    margin-top: 10px;
    font-size: 18px;
}

/* Image */
.grocery-image {
    margin: 50px 0;
}

.grocery-image img {
    max-width: 1000px;
    width: 100%;
}

/* Price */
.price {
    font-size: 48px;
    font-weight: 800;
    color: #d4a62a;
}

.price span {
    font-size: 24px;
    color: #fff;
    font-weight: 500;
}

/* Button */
.order-btn {
    background: #d4a62a;
    color: #000;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 20px;
}

/* Hover */
.order-btn:hover {
    background: #fff;
    color: #000;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {
    .title {
        font-size: 34px;
    }

    .price {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .title {
        font-size: 26px;
    }

    .desc {
        font-size: 14px;
        padding: 0 10px;
    }

    .price {
        font-size: 28px;
    }

    .price span {
        font-size: 16px;
    }
}

/* ================= UAE MALTA ================= */
.uae-malta-section {
    background: #000;
    color: #fff;
    padding: 100px 0;
}

/* Top line */
.top-line {
    width: 100%;
    height: 3px;
    background: #d4a62a;
    margin-bottom: 40px;
}

/* Malayalam Title */
.malayalam-title {
    color: #d4a62a;
    font-size: 36px;
    font-weight: 700;
}

/* Available */
.available-text {
    font-family: 'Brush Script MT', cursive;
    font-size: 32px;
    margin-top: 10px;
}

/* Main Title */
.main-title {
    font-size: 48px;
    font-weight: 800;
    margin-top: 10px;
}

/* Flags */
.flags {
    margin-top: 20px;
}

.flags img {
    width: 60px;
    margin: 0 15px;
}

/* Cards */
.country-card {
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
}

.country-card img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
    transition: 0.4s;
}

/* Hover */
.country-card:hover img {
    transform: scale(1.05);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {
    .main-title {
        font-size: 34px;
    }

    .malayalam-title {
        font-size: 28px;
    }

    .country-card {
        height: 430px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .main-title {
        font-size: 26px;
    }

    .available-text {
        font-size: 22px;
    }

    .flags img {
        width: 45px;
    }

    .country-card {
        height: 340px;
    }
}

/* ================= FIND US ================= */
.findus-section {
    background: #000;
    color: #fff;
    padding: 100px 0;
}

/* Heading */
.subtitle {
    color: #d4a62a;
    letter-spacing: 2px;
    font-size: 14px;
}

.title {
    font-size: 48px;
    font-weight: 800;
    margin-top: 10px;
}

.title span {
    color: #d4a62a;
}

/* Card */
.find-card {
    background: #111;
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    transition: 0.3s;
}

/* Hover */
.find-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(212,166,42,0.2);
}

/* Logo */
.logo {
    max-height: 50px;
}

/* Text */
.find-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.highlight {
    color: #d4a62a;
    font-weight: 600;
    margin-bottom: 5px;
}

.find-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

/* Link */
.link {
    color: #d4a62a;
    text-decoration: none;
    font-weight: 500;
}

/* Icon */
.icon {
    font-size: 28px;
    color: #d4a62a;
}

/* Divider */
.find-card hr {
    border-color: rgba(255,255,255,0.1);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {
    .title {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .title {
        font-size: 26px;
    }

    .find-card {
        padding: 20px;
    }
}

/* ================= VOICES ================= */
.voices-section {
    background: #000;
    color: #fff;
    padding: 100px 0;
    position: relative;
}

/* Heading */
.subtitle {
    color: #d4a62a;
    letter-spacing: 2px;
    font-size: 14px;
}

.title {
    font-size: 48px;
    font-weight: 800;
    margin-top: 10px;
}

.title span {
    color: #d4a62a;
}

/* Quotes */
.quote {
    position: absolute;
    font-size: 60px;
    color: #d4a62a;
    opacity: 0.8;
}

.quote.left {
    left: 10%;
    top: 40%;
}

.quote.right {
    right: 10%;
    bottom: 30%;
}

/* Testimonial */
.testimonial {
    display: none;
    max-width: 700px;
    margin: 40px auto 0;
}

.testimonial.active {
    display: block;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    color: #ccc;
}

.testimonial h4 {
    margin-top: 20px;
    font-weight: 700;
}

.testimonial span {
    color: #d4a62a;
    font-size: 14px;
}

/* Controls */
.controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* Buttons */
.nav-btn {
    width: 45px;
    height: 45px;
    border: 1px solid #d4a62a;
    background: transparent;
    color: #d4a62a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: #fff;
    color: #000;
}

/* Counter */
.counter {
    font-weight: 600;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .title {
        font-size: 26px;
    }

    .testimonial p {
        font-size: 15px;
    }

    .quote {
        display: none;
    }
}

/* ================= FAQ ================= */
.faq-section {
    background: #0a0502;
    color: #fff;
    padding: 100px 0;
}

/* Heading */
.subtitle {
    color: #d4a62a;
    letter-spacing: 2px;
    font-size: 14px;
}

.title {
    font-size: 48px;
    font-weight: 800;
    margin-top: 10px;
}

/* FAQ Item */
.faq-item {
    border: 1px solid #d4a62a;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    text-align: left;
}

/* Question */
.faq-question {
    padding: 20px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Icon */
.faq-question .icon {
    font-size: 22px;
    color: #fff;
}

/* Answer */
.faq-answer {
    display: none;
    padding: 0 20px 20px;
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
}

/* Active */
.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .icon {
    content: "-";
}

/* Hover */
.faq-item:hover {
    box-shadow: 0 0 15px rgba(212,166,42,0.2);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .title {
        font-size: 26px;
    }

    .faq-question {
        font-size: 15px;
    }
}

/* ================= JOURNEY ================= */
.journey-section {
    background: #0a0502;
    color: #fff;
    padding: 100px 0;
}

/* Borders */
.top-line,
.bottom-line {
    width: 100%;
    height: 2px;
    background: #d4a62a;
    margin: 40px 0;
}

/* Subtitle */
.subtitle {
    color: #d4a62a;
    letter-spacing: 2px;
    font-size: 14px;
}

/* Title */
.title {
    font-size: 48px;
    font-weight: 800;
    margin-top: 10px;
}

.title span {
    color: #d4a62a;
}

/* Description */
.desc {
    color: #d4a62a;
    font-size: 18px;
    margin-top: 20px;
    line-height: 1.6;
}

/* Button */
.shop-btn {
    background: #d4a62a;
    color: #000;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 25px;
}

.shop-btn:hover {
    background: #fff;
    color: #000;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #d4a62a;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .title {
        font-size: 26px;
    }

    .desc {
        font-size: 14px;
        padding: 0 10px;
    }

    .features {
        gap: 15px;
        font-size: 12px;
    }
}

/* ================= FOOTER ================= */
.footer-section {
    background: #000;
    color: #fff;
    padding: 40px 0;
    border-top: 1px solid #d4a62a;
}

/* Logo */
.footer-logo {
    max-height: 60px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 22px;
    text-align: center;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    display: inline-block;
    color: #d4a62a;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-links a:hover {
    color: #fff;
}

/* Social */
.social-icons a {
    color: #d4a62a;
    margin-left: 12px;
    font-size: 16px;
}

.social-icons a:hover {
    color: #fff;
}

.footer-talk-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 12px 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 11px;
    font-weight: 600;
    background: transparent;
    transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.footer-talk-btn i {
    font-size: 12px;
}

.footer-talk-btn:hover {
    border-color: #d4a62a;
    color: #d4a62a;
    background: rgba(212, 166, 42, 0.08);
    transform: translateY(-2px);
}

/* Copyright */
.footer-meta {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    text-align: center;
}

.copyright {
    margin: 0;
    font-size: 15px;
    color: #fff;
    text-align: center;
}

.copyright a {
    color: #d4a62a;
    text-decoration: none;
}

.copyright a:hover {
    color: #fff;
}

.developer-credit {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
}

.developer-credit a {
    color: #d4a62a;
    text-decoration: none;
}

.developer-credit a:hover {
    color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .footer-links {
        flex-wrap: wrap;
        gap: 10px 18px;
    }

    .social-icons a {
        margin: 0 8px;
    }

    .footer-talk-btn {
        margin-top: 16px;
    }
}

@media (max-width: 576px) {
    .footer-logo {
        max-height: 50px;
    }

    .footer-links a {
        font-size: 12px;
    }
}

/* ================= ABOUT BANNER ================= */
.about-banner {
    position: relative;
    height: 60vh;
    background: url('../images/about/about-banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

/* Content */
.banner-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

/* Heading */
.banner-content h1 {
    font-size: 60px;
    font-weight: 800;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6), 0 2px 6px rgba(0, 0, 0, 0.88);
}

/* Paragraph */
.banner-content p {
    margin-top: 15px;
    font-size: 18px;
    line-height: 1.6;
    color: #ddd;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {
    .about-banner {
        height: 52vh;
    }

    .banner-content h1 {
        font-size: 40px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .about-banner {
        height: 44vh;
        text-align: center;
    }

    .banner-content {
        margin: auto;
    }

    .banner-content h1 {
        font-size: 28px;
    }

    .banner-content p {
        font-size: 14px;
    }
}


/* ================= ORIGIN ================= */
.origin-section {
    background: #000;
}

/* LEFT IMAGE */
.origin-image {
    background: transparent;
    padding: 60px 20px;
}

.origin-image img {
    max-height: 500px;
}

/* RIGHT CONTENT */
.origin-content {
    background: #d4a62a;
    color: #000;
    padding: 60px;
}

/* Content wrapper */
.content-wrapper {
    max-width: 800px;
}

/* Heading */
.origin-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
}

/* Paragraph */
.origin-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {
    .origin-content {
        padding: 40px 30px;
    }

    .origin-content h2 {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .origin-image {
        padding: 40px 10px;
    }

    .origin-image img {
        max-height: 350px;
    }

    .origin-content {
        padding: 30px 20px;
        text-align: center;
    }

    .origin-content h2 {
        font-size: 26px;
    }

    .origin-content p {
        font-size: 14px;
    }
}

/* ================= COMMON ================= */
.make-section,
.savour-section {
    background: #d4a62a;
    padding: 28px 20px 18px;
    overflow: hidden;
}

.make-section .container-fluid,
.savour-section .container-fluid {
    max-width: 1320px;
}

.make-section .row,
.savour-section .row {
    background: #000;
    min-height: 670px;
    position: relative;
    overflow: hidden;
}

.make-image,
.savour-image {
    background: transparent;
    min-height: 670px;
    padding: 28px 28px 0 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}

.savour-image {
    background: #d4a62a;
}

.savour-image::before {
    content: "";
    position: absolute;
    right: 0;
    top: 120px;
    width: 320px;
    height: 470px;
    background: #d4a62a;
    z-index: 0;
}

.make-image img,
.savour-image img {
    max-height: 610px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    mix-blend-mode: normal;
}

.make-image img:hover,
.savour-image img:hover {
    transform: none;
    filter: none;
    box-shadow: none;
}

.make-content,
.savour-content {
    padding: 58px 32px 52px 74px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.content-box {
    background: transparent;
    padding: 0;
    color: #fff;
    width: 100%;
    max-width: 760px;
}

.content-box h2 {
    font-size: 64px;
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 26px;
    letter-spacing: 0.01em;
}

.content-box h2 span {
    color: #d4a62a;
}

.story-lead {
    font-size: 21px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 12px;
}

.content-box p {
    font-size: 20px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 24px;
}

.content-box p:last-child {
    margin-bottom: 0;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {
    .make-section,
    .savour-section {
        padding: 22px 14px;
    }

    .make-content,
    .savour-content {
        padding: 38px 26px 20px;
    }

    .content-box {
        max-width: none;
    }

    .content-box h2 {
        font-size: 48px;
    }

    .content-box p {
        font-size: 17px;
    }

    .make-image,
    .savour-image {
        min-height: 520px;
        padding: 8px 24px 0;
        justify-content: center;
    }

    .savour-image::before {
        right: 50%;
        transform: translateX(50%);
        top: 80px;
        width: 300px;
        height: 390px;
    }
}

/* Mobile */
@media (max-width: 576px) {

    /* Stack */
    .make-section .row,
    .savour-section .row {
        flex-direction: column;
        min-height: auto;
    }

    .make-image,
    .savour-image {
        min-height: auto;
        padding: 10px 18px 28px;
        justify-content: center;
    }

    .savour-image::before {
        width: 240px;
        height: 320px;
        top: 48px;
    }

    .make-image img,
    .savour-image img {
        max-height: 360px;
    }

    .content-box {
        text-align: left;
    }

    .content-box h2 {
        font-size: 34px;
    }

    .content-box p {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .story-lead {
        font-size: 16px;
    }
}

/* ================= COMMON ================= */
.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
}

.section-title span {
    color: #d4a62a;
}

/* ================= DIRECTOR ================= */
.director-section {
    background: #000;
    padding: 100px 0;
}

.director-img {
    border: 4px solid #d4a62a;
    border-radius: 20px;
    overflow: hidden;
    max-height: 380px;
}

.director-img img {
    width: 100%;
    height: 100%;
    max-height: 380px;
    object-fit: cover;
}

.director-content {
    border: 1px solid #d4a62a;
    padding: 40px;
    text-align: left;
}

.director-content p {
    color: #ccc;
    line-height: 1.7;
}

.director-section h4 {
    color: #fff;
}

.role {
    color: #d4a62a;
}

/* ================= VISION ================= */
.vision-section {
    background: #000;
    padding: 100px 0;
}

.vm-card {
    border: 1px solid #d4a62a;
    padding: 40px;
    text-align: left;
    height: 100%;
}

.vm-card .icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #d4a62a;
    color: #000;
    font-size: 30px;
    margin-bottom: 16px;
}

.vm-card h4 {
    color: #fff;
}

.vm-card p {
    color: #ccc;
}

/* ================= TASTE ================= */
.taste-section {
    background: #0a0502;
    padding: 100px 0;
    border-top: 1px solid #d4a62a;
    border-bottom: 1px solid #d4a62a;
}

.subtitle {
    color: #d4a62a;
}

.title {
    font-size: 48px;
    color: #fff;
    font-weight: 800;
}

.title span {
    color: #d4a62a;
}

.desc {
    color: #d4a62a;
    margin-top: 15px;
}

.taste-btn {
    background: #d4a62a;
    color: #000;
    padding: 15px 30px;
    border-radius: 30px;
    margin-top: 20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .section-title {
        font-size: 32px;
    }

    .title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .director-content,
    .vm-card {
        text-align: center;
    }

    .title {
        font-size: 26px;
    }
}

.product-banner {
    height: 60vh;
    background: url('../images/products/products-banner.jpg') center/cover no-repeat;
    position: relative;
    color: #fff;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h1 {
    font-size: 60px;
    font-weight: 800;
}

.banner-home-link {
    color: #d4a62a;
    text-decoration: none;
    transition: color 0.25s ease;
}

.banner-home-link:hover {
    color: #fff;
}

.banner-content p {
    max-width: 500px;
    color: #ddd;
}

@media (max-width: 991px) {
    .product-banner {
        height: 52vh;
        background-position: 58% center;
    }

    .product-banner .banner-content {
        max-width: 420px;
    }

    .product-banner .banner-content h1 {
        font-size: 42px;
        line-height: 1.02;
    }

    .product-banner .banner-content p {
        max-width: 320px;
        font-size: 15px;
        line-height: 1.35;
    }
}

@media (max-width: 576px) {
    .product-banner {
        height: 38vh;
        min-height: 280px;
        background-position: 62% center;
    }

    .product-banner .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .product-banner .banner-content {
        max-width: 250px;
    }

    .product-banner .banner-content h1 {
        font-size: 28px;
        line-height: 1;
        margin-bottom: 10px;
    }

    .product-banner .banner-content p {
        max-width: 210px;
        font-size: 13px;
        line-height: 1.3;
    }
}

.products-title {
    background: #000;
    padding: 80px 0 40px;
}

.products-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
}

.products-title span {
    color: #d4a62a;
}

.product-section {
    background: #000;
    padding: 42px 0;
}

.product-showcase {
    --product-accent: #76891f;
    --product-card: #d6d86b;
    --product-scene: url("../images/products/grossberry.png");
    scroll-margin-top: 120px;
}

.theme-gooseberry {
    --product-accent: #708319;
    --product-card: #d6d86b;
    --product-scene: url("../images/products/grossberry.png");
}

.theme-nutmeg {
    --product-accent: #72452f;
    --product-card: #cc8148;
    --product-scene: url("../images/products/classic-red.png");
}

.theme-classic-red {
    --product-accent: #a2211a;
    --product-card: #e2aba7;
    --product-scene: url("../images/products/nutmeg.png");
}

.theme-wildfire {
    --product-accent: #d27a2e;
    --product-card: #ee7f2c;
    --product-scene: url("../images/products/wildfire.png");
}

.product-stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(280px, 0.95fr);
    align-items: stretch;
    min-height: 560px;
    overflow: hidden;
    background: transparent;
}

.product-copy {
    position: relative;
    z-index: 1;
    background: #f8f8f6;
    padding: 54px 42% 54px 48px;
    color: #141414;
}

.product-name {
    margin: 0;
    color: var(--product-accent);
    font-size: clamp(3.2rem, 5.2vw, 4.85rem);
    line-height: 0.95;
    letter-spacing: 0.01em;
}

.product-flavour {
    margin: -4px 0 28px;
    color: #121212;
    font-family: "Allura", cursive;
    font-size: clamp(2.7rem, 4.2vw, 4.3rem);
    line-height: 0.8;
}

.product-copy p,
.product-notes {
    max-width: 690px;
}

.product-copy p {
    margin-bottom: 24px;
    font-size: 1.02rem;
    line-height: 1.35;
    color: #202020;
}

.product-notes {
    margin: 0 0 24px;
    padding-left: 26px;
    color: #202020;
}

.product-notes li {
    margin-bottom: 8px;
    line-height: 1.25;
}

.product-notes strong {
    color: #111;
}

.product-btn {
    padding: 14px 28px;
    border-radius: 999px;
    background: var(--product-accent);
    color: #fff;
    font-size: 1.08rem;
    box-shadow: 0 16px 26px rgba(0, 0, 0, 0.12);
}

.product-btn:hover {
    color: #111;
}

.product-scene {
    min-height: 100%;
    background-image: var(--product-scene);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.product-bottle-card {
    position: absolute;
    top: 50%;
    left: 68.5%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 248px);
    height: 372px;
    padding: 22px 18px 16px;
    border-radius: 28px;
    background: var(--product-card);
    transform: translate(-50%, -50%);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

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

.theme-gooseberry .product-bottle-card img,
.theme-classic-red .product-bottle-card img {
    filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.14));
}

.theme-nutmeg .product-bottle-card img {
    filter: saturate(1.02) contrast(1.06) drop-shadow(0 10px 14px rgba(0, 0, 0, 0.18));
}

.theme-wildfire .product-bottle-card img {
    filter: hue-rotate(-8deg) saturate(1.15) drop-shadow(0 10px 14px rgba(0, 0, 0, 0.14));
}

@media (max-width: 1199px) {
    .product-copy {
        padding-right: 39%;
    }

    .product-bottle-card {
        left: 69.5%;
        width: 226px;
        height: 344px;
    }
}

@media (max-width: 991px) {
    .product-section {
        padding: 28px 0;
    }

    .product-stage {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .product-copy {
        padding: 38px 24px 92px;
    }

    .product-copy p,
    .product-notes {
        max-width: none;
    }

    .product-bottle-card {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 212px;
        height: 316px;
        margin: -68px auto -36px;
    }

    .product-scene {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .products-title {
        padding: 58px 0 18px;
    }

    .products-title h2 {
        font-size: 34px;
    }

    .product-copy {
        padding: 30px 20px 84px;
    }

    .product-flavour {
        margin-bottom: 24px;
    }

    .product-copy p,
    .product-notes li {
        font-size: 0.98rem;
    }

    .product-bottle-card {
        width: 188px;
        height: 286px;
        margin-top: -58px;
    }

    .product-scene {
        min-height: 248px;
    }

    .product-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

.cocktail-section {
    background: #000;
    padding: 100px 0;
}

/* TITLE */
.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
}

.section-title span {
    color: #d4a62a;
}

.recipe-name {
    font-size: 36px;
    color: #ccc;
    margin-top: 20px;
}

.recipe-sub {
    color: #999;
    margin-bottom: 50px;
}

/* BOX */
.recipe-box {
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    height: 100%;
}

.recipe-box h4 {
    color: #d4a62a;
    margin-bottom: 15px;
}

.recipe-box ul {
    padding-left: 20px;
}

.recipe-box li {
    margin-bottom: 8px;
    color: #ddd;
}

.recipe-box p {
    color: #ddd;
}

.inspiration {
    margin-top: 15px;
    color: #d4a62a;
}

/* IMAGE */
.recipe-img {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
}

.recipe-img img {
    max-height: 200px;
}

/* ROW SPACING */
.recipe-row {
    margin-bottom: 60px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .section-title {
        font-size: 30px;
    }

    .recipe-name {
        font-size: 24px;
    }

    .recipe-box {
        text-align: center;
    }
}

/* ================= SECTION ================= */
.taste-story-section {
    background: #0a0502;
    min-height: 70vh;
    padding: 100px 20px;
    border-top: 1px solid #d4a62a;
    border-bottom: 1px solid #d4a62a;
}

/* SUBTITLE */
.taste-sub {
    color: #d4a62a;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* TITLE */
.taste-title {
    font-size: 48px;
    font-weight: 800;
    color: #ddd;
    line-height: 1.3;
}

.taste-title span {
    color: #d4a62a;
}

/* BUTTON */
.taste-btn {
    margin-top: 30px;
    background: #d4a62a;
    color: #000;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.taste-btn:hover {
    background: #b8931f;
    color: #000;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .taste-title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .taste-title {
        font-size: 26px;
    }

    .taste-story-section {
        padding: 80px 15px;
    }
}

/* ================= TYPE SCALE ================= */
p {
    font-size: 18px;
    line-height: 1.7;
}

.desc,
.banner-content p,
.origin-content p,
.text-card p,
.find-card p,
.testimonial p,
.faq-answer,
.content-box p,
.director-content p,
.vm-card p,
.recipe-box p {
    font-size: 18px;
    line-height: 1.7;
}

@media (max-width: 576px) {
    p,
    .desc,
    .banner-content p,
    .origin-content p,
    .text-card p,
    .find-card p,
    .testimonial p,
    .faq-answer,
    .content-box p,
    .director-content p,
    .vm-card p,
    .recipe-box p {
        font-size: 16px;
    }
}

/* ================= HERO ================= */
.media-hero{
    height: 60vh;
    background: url('../images/media/media-banner.jpg') center/cover no-repeat;
    position: relative;
    color: #fff;
}

.media-hero::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
}

.media-hero .container{
    position: relative;
    z-index: 2;
}

.media-hero h1{
    font-size: 60px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.media-hero .banner-home-link,
.dist-hero .banner-home-link{
    color: #d4a62a;
}

.media-hero .banner-home-link:hover,
.dist-hero .banner-home-link:hover{
    color: #fff;
}

.media-hero p{
    font-size: 18px;
    color: #fff;
    opacity: 1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

@media (max-width: 991px) {
    .media-hero{
        height: 52vh;
    }
}

@media (max-width: 576px) {
    .media-hero{
        height: 44vh;
    }

    .media-hero h1{
        font-size: 28px;
    }

    .media-hero p{
        font-size: 16px;
    }
}


/* ================= SECTION ================= */
.media-section{
    padding: 80px 0;
}

.section-title{
    font-size: 48px;
    font-weight: 800;
}

.section-title span{
    color: #d4a62a;
}

.section-sub{
    color: #aaa;
    margin-top: 10px;
}


/* ================= CARD ================= */
.media-card{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 9 / 16;
    max-width: 250px;
    margin: 0 auto;
}

.media-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.4s;
}

/* Overlay */
.overlay{
    position: absolute;
    bottom: 10px;
    left: 15px;
    color: #fff;
    font-weight: 500;
    background: rgba(0,0,0,0.6);
    padding: 5px 12px;
    border-radius: 20px;
}


/* ================= RESPONSIVE ================= */
@media(max-width:991px){
    .media-hero h1{
        font-size: 40px;
    }

    .section-title{
        font-size: 32px;
    }
}

@media(max-width:576px){
    .media-hero{
        height: 44vh;
    }

    .media-hero h1{
        font-size: 28px;
    }

    .media-hero p{
        font-size: 14px;
    }
}

/* ================= HERO ================= */
.dist-hero{
    height: 60vh;
    background: url('../images/distributor/distributor-banner.jpg') center/cover no-repeat;
    position: relative;
    color: #fff;
}

.dist-hero::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
}

.dist-hero .container{
    position:relative;
    z-index:2;
}

.dist-hero h1{
    font-size:60px;
    font-weight:800;
    color: #fff;
}

.dist-hero p{
    font-size:18px;
    color: #fff;
}


/* ================= TITLE ================= */
.dist-title{
    padding:80px 0 40px;
}

.dist-title h2{
    font-size:48px;
    font-weight:800;
    color: #fff;
}

.dist-title span{
    color:#d4a62a;
}

.dist-title p{
    color:#aaa;
}


/* ================= REGION ================= */
.region-section{
    padding:40px 0 80px;
}

.region-box{
    border:1px solid #d4a62a;
    padding:50px 30px;
    border-radius:10px;
    background:#0a0502;
}

.region-box h3{
    font-size:36px;
    font-weight:700;
    color: #fff;
}

.region-box span{
    color:#d4a62a;
}

.region-box p{
    color:#bbb;
}


/* ================= CARD ================= */
.dist-card{
    border:1px solid #333;
    padding:25px;
    border-radius:10px;
    background:#111;
    height:100%;
}

.dist-card img{
    max-width:120px;
    margin-bottom:15px;
}

.dist-card h5{
    color:#fff;
}

.dist-card p{
    color:#ccc;
}


/* ================= BUTTON ================= */
.gold-btn{
    background:#d4a62a;
    color:#000;
    padding:12px 30px;
    border-radius:30px;
    font-weight:600;
    margin-top:20px;
}

.gold-btn:hover{
    background:#b8931f;
}


/* ================= BECOME ================= */
.become-section{
    padding:80px 20px;
}

.become-section .container{
    border:1px solid #aaa;
    border-radius:40px;
    padding:60px 30px;
}

.become-section h2{
    font-size:40px;
    font-weight:800;
    color:#fff;
}

.become-section span{
    color:#d4a62a;
}

.become-section p{
    color:#bbb;
    max-width:600px;
    margin:auto;
}

@media (max-width: 991px) {
    .dist-hero{
        height: 52vh;
    }
}

@media (max-width: 576px) {
    .dist-hero{
        height: 44vh;
    }
}


/* ================= RESPONSIVE ================= */
@media(max-width:991px){
    .dist-hero h1{
        font-size:40px;
    }

    .dist-title h2{
        font-size:32px;
    }

    .region-box h3{
        font-size:26px;
    }
}

@media(max-width:576px){
    .dist-hero{
        height:44vh;
    }

    .dist-hero h1{
        font-size:28px;
    }
}

/* ================= FLOATING ACTIONS ================= */
.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1100;
}

.floating-action-btn {
    position: relative;
    overflow: visible;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
    isolation: isolate;
    animation: floatingActionLift 3.2s ease-in-out infinite;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.floating-action-btn::before,
.floating-action-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
}

.floating-action-btn::before {
    z-index: -2;
    background: inherit;
    filter: blur(18px);
    opacity: 0.45;
    transform: scale(0.92);
}

.floating-action-btn::after {
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.28);
    opacity: 0.75;
    animation: floatingActionPulse 2.8s ease-out infinite;
}

.floating-action-btn i {
    color: #fff;
    font-size: 24px;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.floating-action-btn:hover {
    transform: translateY(-5px) scale(1.04);
    color: #fff;
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.4);
    filter: brightness(1.05);
}

.floating-actions .floating-action-btn.call-btn {
    background: linear-gradient(135deg, #d4a62a, #b8931f);
    color: #fff;
}

.floating-actions .floating-action-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c3d);
    color: #fff;
}

.floating-actions .floating-action-btn.call-btn:hover,
.floating-actions .floating-action-btn.whatsapp-btn:hover {
    color: #fff;
}

@keyframes floatingActionLift {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes floatingActionPulse {
    0% {
        transform: scale(1);
        opacity: 0.68;
    }
    70% {
        transform: scale(1.18);
        opacity: 0;
    }
    100% {
        transform: scale(1.18);
        opacity: 0;
    }
}

@media (max-width: 576px) {
    .floating-actions {
        right: 14px;
        bottom: 14px;
        gap: 10px;
    }

    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .floating-action-btn i {
        font-size: 22px;
    }
}

/* ================= AGE GATE ================= */
body.age-gate-open {
    overflow: hidden;
}

.age-gate-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 2000;
}

.age-gate-modal {
    width: min(100%, 520px);
    background: linear-gradient(180deg, #120b03, #000);
    border: 1px solid rgba(212, 166, 42, 0.45);
    border-radius: 28px;
    padding: 34px 28px 30px;
    text-align: center;
    color: #fff;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

.age-gate-logo {
    width: 190px;
    max-width: 70%;
    margin-bottom: 22px;
}

.age-gate-title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #fff;
}

.age-gate-age {
    font-size: 46px;
    line-height: 1;
    color: #d4a62a;
    margin-bottom: 16px;
}

.age-gate-disclaimer,
.age-gate-note {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 22px;
}

.age-gate-note {
    display: none;
    color: #fff;
}

.age-gate-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.age-gate-btn {
    min-width: 120px;
    border: none;
    border-radius: 999px;
    padding: 14px 22px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.age-gate-btn.no-btn {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.32);
}

.age-gate-btn.yes-btn {
    background: #d4a62a;
    color: #000;
    box-shadow: 0 12px 28px rgba(212, 166, 42, 0.22);
}

.age-gate-modal.denied .age-gate-disclaimer,
.age-gate-modal.denied .age-gate-actions {
    display: none;
}

.age-gate-modal.denied .age-gate-note {
    display: block;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .age-gate-modal {
        padding: 28px 20px 24px;
        border-radius: 22px;
    }

    .age-gate-title {
        font-size: 24px;
    }

    .age-gate-age {
        font-size: 38px;
    }

    .age-gate-actions {
        flex-direction: column;
    }

    .age-gate-btn {
        width: 100%;
    }
}


/* HERO */
.contact-banner {
    position: relative;
    height: 60vh;
    background: url('../images/contact/contact-banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

.contact-banner .banner-home-link {
    color: #d4a62a;
}

.contact-banner .banner-home-link:hover {
    color: #fff;
}

.contact-banner .banner-content p {
    color: #ddd;
}

/* CONTACT SECTION */
.contact-section {
    padding: 80px 20px;
    color: #fff;
}

.contact-section h2 {
    font-size: 48px;
    font-weight: 800;
}

.contact-section span {
    color: #d4a62a;
}

.contact-card {
    border: 1px solid #444;
    border-radius: 15px;
    padding: 30px;
    transition: 0.3s;
}

.contact-card:hover {
    border-color: #d4a62a;
}

.contact-card i {
    font-size: 24px;
    color: #d4a62a;
    margin-bottom: 10px;
}

/* GROCERY BOX */
.grocery-box {
    margin: 60px 0;
    padding: 0 20px;
}

.grocery-box .container {
    width: min(100%, 1200px);
    max-width: 1200px;
    padding: 60px;
    border: 1px solid #d4a62a;
    border-radius: 15px;
    text-align: center;
    color: #fff;
}

.grocery-box span {
    color: #d4a62a;
}

.call-btn {
    margin-top: 20px;
    font-weight: bold;
    color: #d4a62a;
}

.contact-form-section {
    padding: 24px 20px 80px;
}

/* MAP */
.map-box {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

/* FORM */
.form-box {
    border: 1px solid #d4a62a;
    padding: 30px;
    border-radius: 15px;
}

.form-box label {
    color: #fff;
}

.form-control {
    background: #111;
    border: 1px solid #444;
    color: #fff;
}

.form-control:focus {
    border-color: #d4a62a;
    box-shadow: none;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    border: none;
    background: #d4a62a;
    color: #000;
    border-radius: 30px;
    font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-banner {
        height: 52vh;
        background-position: center;
    }

    .contact-banner .banner-content {
        max-width: 360px;
    }

    .contact-section h2 {
        font-size: 30px;
    }

    .grocery-box .container {
        padding: 30px;
    }

    .contact-form-section {
        padding: 8px 20px 64px;
    }

    .contact-form-section .row {
        --bs-gutter-y: 1.5rem;
    }

    .map-box {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .contact-banner {
        height: 36vh;
        min-height: 250px;
        text-align: left;
        background-position: center;
    }

    .contact-banner .banner-content {
        margin: 0;
        max-width: 210px;
    }

    .contact-banner .banner-content h1 {
        font-size: 24px;
        line-height: 1.05;
        margin-bottom: 10px;
    }

    .contact-banner .banner-content p {
        max-width: 190px;
        margin-top: 8px;
        font-size: 12px;
        line-height: 1.35;
    }

    .contact-form-section {
        padding-top: 0;
        padding-bottom: 56px;
    }

    .contact-form-section .container {
        padding-top: 0;
    }

    .contact-form-section .row {
        --bs-gutter-y: 1.25rem;
        margin-top: 0;
    }

    .map-box {
        height: 220px;
    }

    .form-box {
        padding: 22px 18px;
    }
}

/* ================= GROCERIES PAGE ================= */
.groceries-banner {
    position: relative;
    height: 60vh;
    background: url('../images/groceries/groceries-banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #000;
}

.groceries-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18));
}

.groceries-banner .banner-home-link {
    color: #000;
}

.groceries-banner .banner-home-link:hover {
    color: #d4a62a;
}

.groceries-banner .banner-content p {
    color: #111;
    max-width: 560px;
}

.grocery-info,
.pricing,
.items,
.order {
    background: #000;
    color: #fff;
    padding: 80px 20px;
}

.grocery-info h2,
.pricing h2,
.items h2,
.order h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
}

.grocery-info span,
.pricing span,
.items span,
.order span {
    color: #d4a62a;
}

.grocery-info > .container > p,
.pricing > .container > p,
.order .bank p,
.item-card {
    color: rgba(255, 255, 255, 0.8);
}

.info-card,
.price-card,
.item-card {
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.info-card {
    padding: 30px 24px;
    border-radius: 18px;
}

.info-card:hover,
.price-card:hover,
.item-card:hover {
    border-color: rgba(212, 166, 42, 0.58);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
    transform: translateY(-4px);
}

.info-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: rgba(212, 166, 42, 0.14);
    color: #d4a62a;
    font-size: 22px;
}

.info-card p,
.price-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.84);
}

.pricing {
    padding-top: 30px;
}

.price-card {
    position: relative;
    padding: 42px 28px;
    border-radius: 20px;
}

.price-card h3 {
    margin-bottom: 12px;
    color: #fff;
    font-size: 2.15rem;
}

.price-card.active {
    border-color: #d4a62a;
    box-shadow: 0 0 0 1px rgba(212, 166, 42, 0.18);
}

.price-card .badge {
    display: inline-block;
    margin-bottom: 14px;
    background: #d4a62a;
    color: #000;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.04em;
}

.items {
    padding-top: 30px;
}

.items .container {
    max-width: 1240px;
}

.items-title {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    padding-bottom: 12px;
}

.items-title::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
}

.item-card {
    padding: 16px 18px 14px;
    border-color: rgba(212, 166, 42, 0.42);
    border-radius: 0;
    font-size: 14px;
    text-align: left;
}

.item-meta,
.item-name {
    margin-bottom: 0;
}

.item-meta {
    position: relative;
    padding-left: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.35;
}

.item-meta::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d4a62a;
}

.item-name {
    margin-top: 6px;
    padding-left: 16px;
    color: #d4a62a;
    font-size: 13px;
    line-height: 1.35;
}

.order .btn-group {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-gold,
.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 260px;
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.btn-gold {
    background: #d4a62a;
    color: #000;
    margin-right: 0;
}

.btn-outline-gold {
    border: 1px solid #d4a62a;
    color: #d4a62a;
}

.btn-outline-gold:hover {
    background: #fff;
    color: #000;
}

.order .bank {
    margin-top: 28px;
}

.order .bank strong {
    color: #fff;
}

.bank .price {
    color: #d4a62a;
}

@media (max-width: 991px) {
    .groceries-banner {
        height: 52vh;
        background-position: 62% center;
    }

    .groceries-banner .banner-content {
        max-width: 400px;
    }

    .grocery-info h2,
    .pricing h2,
    .items h2,
    .order h2 {
        font-size: 38px;
    }
}

@media (max-width: 576px) {
    .groceries-banner {
        height: 36vh;
        min-height: 250px;
        text-align: left;
        background-position: 68% center;
    }

    .groceries-banner .banner-content {
        margin: 0;
        max-width: 210px;
    }

    .groceries-banner .banner-content h1 {
        font-size: 24px;
        line-height: 1.05;
        margin-bottom: 10px;
    }

    .groceries-banner .banner-content p {
        max-width: 190px;
        margin-top: 8px;
        font-size: 12px;
        line-height: 1.35;
    }

    .grocery-info,
    .pricing,
    .items,
    .order {
        padding: 64px 20px;
    }

    .grocery-info h2,
    .pricing h2,
    .items h2,
    .order h2 {
        font-size: 28px;
    }

    .price-card,
    .info-card {
        padding: 28px 20px;
    }

    .item-card {
        min-height: 100%;
        padding: 14px 14px 13px;
    }

    .item-meta {
        font-size: 12px;
    }

    .item-name {
        font-size: 12px;
    }

    .btn-gold,
    .btn-outline-gold {
        width: 100%;
        min-width: 0;
    }
}

/* ================= LEGAL PAGES ================= */
.legal-banner {
    position: relative;
    height: 60vh;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.32)),
        url('../images/about/about-banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

.legal-banner .banner-home-link {
    color: #d4a62a;
}

.legal-banner .banner-home-link:hover {
    color: #fff;
}

.legal-banner .banner-content p {
    color: #ddd;
    max-width: 640px;
}

.legal-page {
    background: #000;
    padding: 80px 20px 100px;
    color: #fff;
}

.legal-shell {
    max-width: 1240px;
    margin: 0 auto;
}

.legal-intro {
    max-width: 820px;
    margin-bottom: 42px;
}

.legal-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: #d4a62a;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legal-intro h2 {
    margin-bottom: 14px;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
}

.legal-intro h2 span {
    color: #d4a62a;
}

.legal-intro p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.legal-card {
    padding: 28px 26px;
    border: 1px solid rgba(212, 166, 42, 0.3);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.legal-card h3 {
    margin-bottom: 14px;
    color: #fff;
    font-size: 24px;
}

.legal-card p,
.legal-note p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.legal-card a,
.legal-note a {
    color: #d4a62a;
    text-decoration: none;
}

.legal-card a:hover,
.legal-note a:hover {
    color: #fff;
}

.legal-note {
    margin-top: 28px;
    padding: 28px 30px;
    border: 1px solid rgba(212, 166, 42, 0.36);
    border-radius: 18px;
    background: rgba(212, 166, 42, 0.05);
}

.legal-note h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 26px;
}

@media (max-width: 991px) {
    .legal-banner {
        height: 52vh;
    }

    .legal-intro h2 {
        font-size: 38px;
    }

    .legal-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .legal-banner {
        height: 44vh;
        text-align: center;
    }

    .legal-banner .banner-content {
        margin: auto;
    }

    .legal-page {
        padding: 64px 20px 84px;
    }

    .legal-intro h2 {
        font-size: 28px;
    }

    .legal-card,
    .legal-note {
        padding: 22px 18px;
    }

    .legal-card h3,
    .legal-note h3 {
        font-size: 22px;
    }
}

/* ================= GLOBAL MOBILE FIT ================= */
@media (max-width: 991px) {
    .container,
    .container-fluid {
        padding-left: 18px;
        padding-right: 18px;
    }

    .banner-content {
        max-width: min(100%, 420px);
    }

    .banner-content h1,
    .media-hero h1,
    .dist-hero h1 {
        line-height: 1.05;
        overflow-wrap: anywhere;
    }

    .btn-group {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    html,
    body {
        overflow-x: hidden;
    }

    body {
        width: 100%;
    }

    img,
    video,
    iframe {
        max-width: 100%;
        height: auto;
    }

    .container,
    .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
    }

    .row {
        --bs-gutter-x: 1rem;
    }

    .about-banner,
    .product-banner,
    .media-hero,
    .dist-hero,
    .contact-banner,
    .groceries-banner,
    .legal-banner {
        height: 36vh;
        min-height: 250px;
        text-align: left;
        background-position: center center;
    }

    .banner-content {
        margin: 0 !important;
        max-width: 220px;
    }

    .banner-content h1,
    .media-hero h1,
    .dist-hero h1 {
        font-size: 24px;
        line-height: 1.05;
        margin-bottom: 10px;
    }

    .banner-content p,
    .media-hero p,
    .dist-hero p {
        max-width: 190px;
        margin-top: 8px;
        font-size: 12px;
        line-height: 1.35;
    }

    .title,
    .section-title,
    .main-title,
    .products-title h2,
    .legal-intro h2,
    .taste-title,
    .contact-section h2,
    .grocery-info h2,
    .pricing h2,
    .items h2,
    .order h2 {
        font-size: clamp(26px, 8vw, 30px);
    }

    .btn-group,
    .order .btn-group,
    .age-gate-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-group > .btn,
    .order .btn-group > a,
    .footer-talk-btn,
    .taste-btn,
    .shop-btn,
    .order-btn,
    .view-btn,
    .btn-submit {
        width: 100%;
        max-width: 100%;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links {
        gap: 10px 16px;
        justify-content: center;
    }

    .footer-meta {
        text-align: center;
    }
}

/* ================= GLOBAL SECTION SPACING ================= */
.heritage-section,
.collection-section,
.process-section,
.instagram-section,
.grocery-section,
.uae-malta-section,
.findus-section,
.voices-section,
.faq-section,
.journey-section,
.origin-section,
.make-section,
.savour-section,
.director-section,
.vision-section,
.taste-section,
.products-title,
.product-section,
.cocktail-section,
.taste-story-section,
.media-section,
.dist-title,
.region-section,
.become-section,
.contact-section,
.grocery-box,
.contact-form-section,
.grocery-info,
.pricing,
.items,
.order,
.legal-page {
    padding-top: 88px;
    padding-bottom: 88px;
}

@media (max-width: 576px) {
    .heritage-section,
    .collection-section,
    .process-section,
    .instagram-section,
    .grocery-section,
    .uae-malta-section,
    .findus-section,
    .voices-section,
    .faq-section,
    .journey-section,
    .origin-section,
    .make-section,
    .savour-section,
    .director-section,
    .vision-section,
    .taste-section,
    .products-title,
    .product-section,
    .cocktail-section,
    .taste-story-section,
    .media-section,
    .dist-title,
    .region-section,
    .become-section,
    .contact-section,
    .grocery-box,
    .contact-form-section,
    .grocery-info,
    .pricing,
    .items,
    .order,
    .legal-page {
        padding-top: 64px;
        padding-bottom: 64px;
    }
}

/* ================= HERO ================= */
.uae-hero {
    min-height: 520px;
    display: flex;
    align-items: center;
    background: url('../images/uae-malta/uae-malta-banner.png') no-repeat center/cover;
}

/* Overlay text */
.hero-content {
    padding: 72px 0 72px 54px;
    max-width: 620px;
    color: #000;
    text-align: left;
}

.hero-content h1 {
    margin: 0 0 14px;
    font-size: clamp(3rem, 4.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.02;
    color: #000;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28), 0 2px 6px rgba(0, 0, 0, 0.45);
}

.hero-content p {
    max-width: 390px;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.35;
    color: #000;
}

.hero-home-link {
    color: #000;
    text-decoration: none;
}

.hero-home-link:hover {
    color: #d4a62a;
}

/* ================= TITLE ================= */
.uae-title {
    padding: 80px 20px;
    background: #000;
}

.uae-title h2 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
}

.uae-title span {
    color: #d4a62a;
}

.uae-title p {
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 18px;
    color: #ccc;
}

/* ================= AVAILABILITY ================= */
.uae-availability {
    padding: 80px 20px;
    border: 1px solid #d4a62a;
}

.uae-availability h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
}

.uae-availability span {
    color: #d4a62a;
}

/* CARD */
.store-card {
    background: #111;
    border: 1px solid #444;
    padding: 25px;
    height: 100%;
    transition: 0.3s;
    color: #fff;
}

.store-card:hover {
    border-color: #d4a62a;
    transform: translateY(-5px);
}

.store-logo {
    max-width: 120px;
    margin-bottom: 15px;
}

.store-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.store-title {
    font-weight: 600;
    color: #fff;
}

.store-card p {
    font-size: 14px;
    color: #ccc;
}

.store-card a {
    color: #d4a62a;
    text-decoration: none;
}

/* ICON */
.location-icon {
    font-size: 30px;
    color: #d4a62a;
    margin-bottom: 10px;
}

/* BUTTON */
.contact-btn {
    background: #d4a62a;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
}

.contact-btn:hover {
    background: #b8931f;
}

/* ================= MALTA AVAILABILITY ================= */
.malta-availability {
    background: #000;
    padding: 24px 20px 88px;
}

.malta-divider {
    width: min(100%, 860px);
    height: 3px;
    margin: 0 auto 64px;
    background: rgba(212, 166, 42, 0.78);
}

.malta-box {
    max-width: 960px;
    margin: 0 auto;
    padding: 72px 32px 66px;
    background: #171310;
    border: 1px solid rgba(212, 166, 42, 0.58);
}

.malta-box h2 {
    margin: 0 0 22px;
    font-size: 42px;
    font-weight: 800;
    color: #fff;
}

.malta-box h2 span {
    color: #d4a62a;
}

.malta-box p {
    max-width: 620px;
    margin: 0 auto 34px;
    font-size: 18px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.9);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {
    .uae-hero {
        min-height: 360px;
    }

    .hero-content {
        padding: 48px 0 48px 32px;
        max-width: 440px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        max-width: 300px;
        font-size: 16px;
    }

    .uae-title h2 {
        font-size: 32px;
    }

    .malta-divider {
        margin-bottom: 44px;
    }

    .malta-box {
        padding: 56px 26px 52px;
    }

    .malta-box h2 {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .uae-hero {
        min-height: 300px;
        background-position: center;
    }

    .hero-content {
        padding: 28px 0 28px 18px;
        max-width: 280px;
    }

    .hero-content h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .hero-content p {
        max-width: 210px;
        font-size: 14px;
        line-height: 1.3;
    }

    .uae-title h2 {
        font-size: 26px;
    }

    .uae-availability h2 {
        font-size: 26px;
    }

    .malta-availability {
        padding: 12px 16px 64px;
    }

    .malta-divider {
        margin-bottom: 32px;
    }

    .malta-box {
        padding: 38px 20px 36px;
    }

    .malta-box h2 {
        font-size: 26px;
        line-height: 1.12;
    }

    .malta-box p {
        margin-bottom: 26px;
        font-size: 15px;
    }
}

/* ================= FLAVOURS ================= */
.flavours-section {
    background: #000;
    padding: 100px 20px;
}

/* TITLE */
.flavour-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
}

.flavour-title span {
    color: #d4a62a;
}

/* GOLD UNDERLINE */
.title-underline {
    width: 220px;
    height: 3px;
    background: #d4a62a;
    margin: 10px auto 0;
}

/* CARD */
.flavour-card {
    transition: 0.4s;
}

.flavour-card:hover {
    transform: translateY(-10px);
}

/* BOTTLE IMAGE */
.bottle-img {
    max-height: 380px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: 0.4s;
}

.flavour-card:hover .bottle-img {
    transform: scale(1.05);
}

/* NAME */
.flavour-card h4 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

/* SCRIPT STYLE TEXT */
.flavour-text {
    font-size: 22px;
    color: #d4a62a;
    font-family: 'Brush Script MT', cursive;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {
    .flavour-title {
        font-size: 36px;
    }

    .bottle-img {
        max-height: 300px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .flavours-section {
        padding: 60px 15px;
    }

    .flavour-title {
        font-size: 26px;
    }

    .title-underline {
        width: 150px;
    }

    .flavour-card h4 {
        font-size: 22px;
    }

    .flavour-text {
        font-size: 18px;
    }

    .bottle-img {
        max-height: 260px;
    }
}

/* ================= EXPERIENCE BANNER ================= */
.experience-banner {
    position: relative;
    background: url('../images/uae-malta/the-experience.png') no-repeat center/cover;
    padding: 140px 20px;
    color: #fff;
}

/* DARK OVERLAY */
.experience-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* CONTENT ABOVE OVERLAY */
.experience-banner .container {
    position: relative;
    z-index: 2;
}

/* TAG LINE */
.tag-line {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #ddd;
}

/* MAIN TITLE */
.experience-banner h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* SUB TEXT */
.sub-text {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* BUTTON */
.experience-btn {
    background: #d4a62a;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.experience-btn:hover {
    background: #b8931f;
    color: #000;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {
    .experience-banner {
        padding: 100px 20px;
    }

    .experience-banner h1 {
        font-size: 36px;
    }

    .sub-text {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .experience-banner {
        padding: 80px 15px;
    }

    .experience-banner h1 {
        font-size: 26px;
    }

    .tag-line {
        font-size: 12px;
    }

    .sub-text {
        font-size: 14px;
    }
}
