@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-bg: #FCF8F4;
    /* Soft warm cream off-white */
    --text-primary: #3C2317;
    /* Dark coffee brown */
    --text-muted: #7A6A61;
    /* Muted brownish grey */
    --accent-brown: #5C3D2E;
    /* Deep warm chocolate brown */
    --accent-light: #F5EBE6;
    /* Soft pinkish cream for banners */
    --card-bg: #FFFFFF;
    --primary-font: 'Outfit', sans-serif;
    --heading-font: 'DM Serif Display', serif;
    --transition-speed: 0.35s;
    --card-shadow: 0 10px 30px rgba(92, 61, 46, 0.04);
    --hover-shadow: 0 15px 40px rgba(92, 61, 46, 0.08);
}

/* Global Reset & Base Styles */
html {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-primary);
    font-family: var(--primary-font);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    color: var(--text-primary);
    font-weight: 400;
}

p {
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.6;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

a:hover {
    color: var(--accent-brown);
}

/* Custom Buttons */
.btn-coffee-primary {
    background-color: var(--accent-brown);
    color: #ffffff;
    font-family: var(--primary-font);
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 50px;
    border: 1px solid var(--accent-brown);
    transition: all var(--transition-speed) cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-coffee-primary:hover {
    background-color: transparent;
    color: var(--accent-brown);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(92, 61, 46, 0.15);
}

.btn-coffee-outline {
    background-color: transparent;
    color: var(--text-primary);
    font-family: var(--primary-font);
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 50px;
    border: 1px solid var(--text-primary);
    transition: all var(--transition-speed) cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-coffee-outline:hover {
    background-color: var(--text-primary);
    color: var(--primary-bg);
    transform: translateY(-2px);
}

/* Header & Navbar */
.custom-navbar {
    background-color: rgba(252, 248, 244, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: all var(--transition-speed) ease;
    z-index: 1050;
}

.custom-navbar.navbar-scrolled {
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(92, 61, 46, 0.05);
}

/* Custom Navbar Toggler & Hamburger Menu */
.navbar-toggler {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 6px 8px !important;
    transition: background-color 0.2s ease, transform 0.1s ease;
    border-radius: 8px;
    background: transparent;
    display: none;
}

.navbar-toggler:active {
    transform: scale(0.92);
}

.navbar-toggler i {
    color: var(--text-primary) !important;
    font-size: 1.5rem !important;
    display: inline-block;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* .navbar-toggler:not(.collapsed) i {
    transform: rotate(90deg);
} */

@media (max-width: 1199.98px) {
    .navbar-toggler {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
}

.navbar-brand img {
    height: 38px;
    object-fit: contain;
}

.nav-link {
    font-family: var(--primary-font);
    font-weight: 500;
    color: var(--text-primary) !important;
    padding: 8px 8px !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 16px;
    background-color: var(--accent-brown);
    transition: width var(--transition-speed) ease;
}

.nav-link:hover::after {
    width: calc(100% - 32px);
}

/* Custom Dropdown Chevron fixes */
.dropdown-toggle::after {
    display: none !important;
    /* Hide Bootstrap default caret */
}

.dropdown-toggle.show .dropdown-chevron {
    transform: rotate(180deg) !important;
    /* Smooth rotate arrow when dropdown is open */
}

.nav-icons a {
    color: var(--text-primary);
    font-size: 1.15rem;
    margin-right: 20px;
    position: relative;
}

.nav-icons a:hover {
    color: var(--accent-brown);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: var(--accent-brown);
    color: #fff;
    font-size: 0.65rem;
    padding: 2px 5px;
    border-radius: 50%;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 0px 0;
    position: relative;
}

.hero-title {
    font-size: clamp(2.3rem, 8.5vw, 6.8rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -2px;
    /* text-transform: uppercase; */
    margin-bottom: 8px;
    background: linear-gradient(90deg, #A47E6C 0%, #311B13 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-family: var(--primary-font);
    font-size: clamp(1.8rem, 4vw, 2rem);
    font-weight: 600;
    color: #3C2317;
    /* Dark coffee brown */
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-desc {
    font-size: 0.95rem;
    max-width: 480px;
    margin-bottom: 35px;
    color: var(--text-muted);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-hero-outline {
    background-color: transparent;
    color: var(--text-primary);
    font-family: var(--primary-font);
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 50px;
    border: 1px solid #D9C8BF;
    /* very soft brown-grey border */
    transition: all var(--transition-speed) ease;
    display: inline-block;
    text-decoration: none;
}

.btn-hero-outline:hover {
    background-color: rgba(92, 61, 46, 0.05);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.hand-drawn-arrow {
    position: absolute;
    right: -65px;
    top: 50%;
    transform: translateY(-30%);
    pointer-events: none;
    animation: float-arrow 3s ease-in-out infinite;
}

@keyframes float-arrow {
    0% {
        transform: translateY(-30%) translateX(0px);
    }

    50% {
        transform: translateY(-30%) translateX(-4px);
    }

    100% {
        transform: translateY(-30%) translateX(0px);
    }
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.stat-item h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--primary-font);
    margin: 0;
}

/* Hero Right Side Graphic */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 520px;
    padding-right: 5%;
    perspective: 1000px;
    /* Enable 3D perspective for Earth-like rotation */
}

.hero-card-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 82%;
    height: 88%;
    /* background-color: #FAF2EE; */
    /* Light peach/cream card bg */
    border-radius: 40px;
    z-index: 1;
    /* box-shadow: 0 10px 40px rgba(92, 61, 46, 0.03); */
}

.hero-cup-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transform-style: preserve-3d;
    animation: float-cup-slider 6s ease-in-out infinite;
}

.hero-cup-img {
    position: absolute;
    max-width: 60%;
    max-height: 420px;
    object-fit: contain;
    opacity: 0;
    transform: translateY(-180px);
    /* Entry state: starts much higher above */
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.hero-cup-img.active {
    opacity: 1;
    transform: translateY(-35px);
    /* Active state: sits slightly higher to keep bottom fully visible */
    pointer-events: auto;
    z-index: 3;
}

.hero-cup-img.exit {
    opacity: 0;
    transform: translateY(120px);
    /* Exit state: slides further down and out */
    z-index: 1;
}

@keyframes spin-cup-earth {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

@keyframes float-cup-slider {
    0% {
        transform: translateY(0px) rotate(-8deg);
    }

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

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

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1.5deg);
    }

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

@keyframes blob-morph {
    0% {
        border-radius: 50% 40% 60% 45% / 40% 50% 45% 55%;
    }

    50% {
        border-radius: 45% 55% 40% 60% / 50% 40% 60% 45%;
    }

    100% {
        border-radius: 50% 40% 60% 45% / 40% 50% 45% 55%;
    }
}

/* Ticker/Marquee */
.ticker-double-container {
    position: relative;
    width: 100%;
    height: 150px;
    /* Container height to fit both angled strips */
    overflow: hidden;
    margin-top: 0px;
    margin-bottom: 0px;
}

.ticker-strip {
    position: absolute;
    width: 110%;
    left: -5%;
    padding: 5px 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(60, 35, 23, 0.2);
}

/* Left strip - angled down, dark brown background */
.ticker-left {
    background: linear-gradient(90deg, #23120B 0%, #3C2317 50%, #23120B 100%);
    transform: rotate(-2deg);
    top: 20px;
    z-index: 4;
    border-top: 1.5px solid rgba(250, 242, 238, 0.06);
    border-bottom: 1.5px solid rgba(250, 242, 238, 0.06);
}

/* Right strip - angled up, gold/accent background, overlaps on top */
.ticker-right {
    background: linear-gradient(90deg, #C19A70 0%, #D4A373 50%, #C19A70 100%);
    transform: rotate(2.5deg);
    top: 55px;
    z-index: 3;
    border-top: 1.5px solid rgba(60, 35, 23, 0.08);
    border-bottom: 1.5px solid rgba(60, 35, 23, 0.08);
    box-shadow: 0 15px 35px rgba(60, 35, 23, 0.25);
}

.ticker-wrap {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.ticker-inner {
    display: flex;
    white-space: nowrap;
    align-items: center;
}

/* Left scroll animation */
.ticker-inner.scroll-left {
    animation: scroll-left-keyframes 55s linear infinite;
}

/* Right scroll animation */
.ticker-inner.scroll-right {
    animation: scroll-right-keyframes 55s linear infinite;
}

.ticker-inner span {
    font-family: var(--primary-font);
    font-size: 1.7rem;
    font-weight: 800;
    padding: 0 20px;
    display: inline-block;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Ticker Left (Dark) text styling */
.ticker-left .ticker-inner span {
    color: var(--primary-bg);
}

.ticker-left .ticker-inner span.ticker-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--primary-bg);
    opacity: 0.75;
}

.ticker-left .ticker-inner span.ticker-divider {
    color: #F4A261;
    /* Orange/Gold divider star */
}

/* Ticker Right (Gold) text styling */
.ticker-right .ticker-inner span {
    color: #23120B;
    /* Dark text for contrast */
}

.ticker-right .ticker-inner span.ticker-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px #23120B;
    opacity: 0.75;
}

.ticker-right .ticker-inner span.ticker-divider {
    color: #2d190f;
    /* color: var(--primary-bg); */
    /* Light cream divider star */
}

@keyframes scroll-left-keyframes {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes scroll-right-keyframes {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Explore Recent Products */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 10px auto;
}

.section-subtitle {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--accent-brown);
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 0px;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0px;
}

.section-title span {
    color: var(--text-muted);
}

.recent-products-section {
    padding: 50px 0;
}

.product-card {
    background-color: var(--card-bg);
    border-radius: 28px;
    padding: 24px 20px;
    border: 1px solid rgba(92, 61, 46, 0.05);
    box-shadow: var(--card-shadow);
    transition: all var(--transition-speed) cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: visible;
    /* Crucial for overlapping image */
    margin-top: 60px;
    height: calc(100% - 60px);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
}

.product-tag {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
    display: block;
    text-align: center;
}

.product-img-wrapper {
    height: 190px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    background-color: transparent;
    border-radius: 0;
    overflow: visible;
    margin-top: -95px;
    /* Shifting bag image up to overlap card */
}

.product-img {
    max-height: 230px;
    max-width: 90%;
    object-fit: contain;
    filter: drop-shadow(0 20px 25px rgba(92, 61, 46, 0.12));
    transition: transform var(--transition-speed) cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-img {
    transform: translateY(-6px) scale(1.04);
}

.product-title {
    font-family: var(--primary-font);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
    text-align: center;
}

.product-price {
    font-size: 1.30rem;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 12px;
}

.card-footer-action {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
}

.add-cart-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color var(--transition-speed) ease;
}

.add-cart-link:hover {
    color: var(--accent-brown);
}

.wishlist-btn {
    border: none;
    background: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
    padding: 0;
}

.wishlist-btn:hover {
    color: #DC3545;
    transform: scale(1.1);
}

.wishlist-btn.active {
    color: #DC3545;
}

/* Banner Coffee Beans */
.beans-banner-section {
    padding: 60px 0;
}

.banner-card {
    background-color: var(--accent-light);
    border-radius: 28px;
    padding: 60px 80px;
    position: relative;
    overflow: visible;
    /* Allows the spilled sack image to overlap the top border */
    z-index: 2;
    box-shadow: var(--card-shadow);
}

.banner-content {
    max-width: 480px;
    position: relative;
    z-index: 2;
}

.banner-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.banner-hand-arrow {
    position: absolute;
    top: -25px;
    right: -25px;
    pointer-events: none;
    animation: float-arrow-banner 3s ease-in-out infinite;
}

@keyframes float-arrow-banner {
    0% {
        transform: translateY(0px) translateX(0px);
    }

    50% {
        transform: translateY(3px) translateX(3px);
    }

    100% {
        transform: translateY(0px) translateX(0px);
    }
}

.banner-img-container {
    position: absolute;
    right: 0;
    bottom: -40px;
    width: 40%;
    max-width: 450px;
    height: 115%;
    /* Taller than card to enable top border overlap */
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 1;
    overflow: visible;
}

.banner-img {
    max-height: 110%;
    /* extends outside top border */
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(92, 61, 46, 0.16));
    transition: transform 0.5s ease;
    transform: translateY(-8px);
}

.banner-card:hover .banner-img {
    transform: translateY(-16px) scale(1.02);
}


/* Weekend Specials Section */
.weekend-specials-section {
    padding: 50px 0;
    position: relative;
}

/* Custom Tabs */
.custom-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    border: none;
    flex-wrap: wrap;
}

.custom-tab-btn {
    border: none;
    background: none;
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--text-muted);
    padding: 8px 0;
    position: relative;
    transition: color var(--transition-speed) ease;
}

.custom-tab-btn:hover {
    color: var(--text-primary);
}

.custom-tab-btn.active {
    color: var(--text-primary);
    font-weight: 600;
}

.custom-tab-btn.active::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    bottom: -6px;
    left: 20%;
    background-color: var(--accent-brown);
    border-radius: 4px;
}

/* Specials Cards Layout */
.special-card {
    background-color: var(--card-bg);
    border-radius: 28px;
    padding: 15px;
    border: 1px solid rgba(92, 61, 46, 0.05);
    box-shadow: var(--card-shadow);
    transition: all var(--transition-speed) cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.special-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hover-shadow);
}

.special-img-wrapper {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: start;
    margin-bottom: 0px;
    position: relative;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
}

/* Centered grey circular backdrop behind product */
.special-img-wrapper::before {
    content: '';
    position: absolute;
    width: 170px;
    height: 170px;
    background-color: #F5EBE6;
    /* soft light grey/cream circle */
    border-radius: 50%;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.7;
}

.special-img-wrapper img {
    position: relative;
    max-height: 100%;
    max-width: 80%;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 12px 20px rgba(92, 61, 46, 0.08));
    transition: transform var(--transition-speed) cubic-bezier(0.165, 0.84, 0.44, 1);
}

.special-card:hover .special-img-wrapper img {
    transform: scale(1.06);
}

.special-tag {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: capitalize;
    margin-bottom: 6px;
    display: block;
}

.special-title {
    font-family: var(--primary-font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
    line-height: 1.25;
}

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

.special-old-price {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 400;
}

.special-new-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-primary);
}

.special-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0px;
}

/* Discount Badges */
.discount-badge-light {
    position: absolute;
    top: 20px;
    right: 0px;
    background-color: #FAF2EE;
    color: var(--accent-brown);
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 24px;
    border-radius: 30px 0px 0px 30px;
    z-index: 10;
    border: 1.5px solid rgba(92, 61, 46, 0.08);
}

.discount-badge-dark {
    position: absolute;
    top: 20px;
    right: 0px;
    background-color: var(--accent-brown);
    color: #ffffff;
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 24px;
    border-radius: 30px 0px 0px 30px;
    z-index: 10;
    border: 1.5px solid var(--accent-brown);
}


/* Tabs animation transition */
.tab-content .tab-pane {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-content .tab-pane.show.active {
    opacity: 1;
    transform: translateY(0);
}

/* Quality section */
.quality-section {
    padding: 50px 0;
    background-color: #FAF5F0;
}

.quality-img-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quality-beans-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(92, 61, 46, 0.12));
}

/* Testimonial overlapping badge */
.testimonial-badge {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background-color: #ffffff;
    border-radius: 60px;
    padding: 14px 24px;
    box-shadow: 0 15px 35px rgba(92, 61, 46, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 320px;
    z-index: 5;
    transition: transform var(--transition-speed) ease;
}

.testimonial-badge:hover {
    transform: translateY(-4px) scale(1.02);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h5 {
    font-family: var(--primary-font);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-info p {
    font-size: 0.75rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

/* Features Grid */
.feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-light);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: background-color var(--transition-speed) ease;
}

.feature-item:hover .feature-icon-wrapper {
    background-color: var(--accent-brown);
}

.feature-icon-wrapper i {
    font-size: 1.15rem;
    color: var(--accent-brown);
    transition: color var(--transition-speed) ease;
}

.feature-item:hover .feature-icon-wrapper i {
    color: #ffffff;
}

.feature-info h4 {
    font-family: var(--primary-font);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-info p {
    font-size: 0.9rem;
    margin: 0;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
}

.newsletter-card {
    background-color: var(--accent-light);
    border-radius: 24px;
    padding: 55px 70px;
    position: relative;
    overflow: hidden;
}

.newsletter-art-img {
    position: absolute;
    left: -50px;
    bottom: -40px;
    width: 260px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(92, 61, 46, 0.12));
    z-index: 1;
    transform: rotate(12deg);
}

.newsletter-beans-img {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 250px;
    height: auto;
    object-fit: contain;
    z-index: 1;
    transform: rotate(-15deg);
}

.newsletter-content {
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.newsletter-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 12px;
}

.newsletter-desc {
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.newsletter-form-container {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    background-color: #ffffff;
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 25px rgba(92, 61, 46, 0.03);
}

.newsletter-input {
    border: none;
    font-family: var(--primary-font);
    font-size: 0.95rem;
    color: var(--text-primary);
    width: 100%;
    outline: none;
    background: transparent;
}

.newsletter-input::placeholder {
    color: #A09085;
}

.newsletter-btn {
    background-color: var(--accent-brown);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.newsletter-btn:hover {
    background-color: var(--text-primary);
    transform: scale(1.02);
}

/* Footer Section */
.footer-section {
    background-color: #20120C;
    padding: 50px 0 20px 0;
    color: #F6EEE6;
}

.footer-section h5 {
    color: #ffffff;
    font-family: var(--primary-font);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #A08C82;
    font-size: 0.95rem;
    transition: color var(--transition-speed) ease;
}

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

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.05rem;
    transition: all var(--transition-speed) ease;
}

.social-links a:hover {
    background-color: var(--accent-brown);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 35px;
    padding-top: 25px;
    font-size: 0.85rem;
    color: #A08C82;
}

.footer-bottom-links a {
    color: #A08C82;
    margin-left: 20px;
}

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

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {

    /* Mobile Navbar Adjustments */
    .navbar-collapse {
        background-color: var(--primary-bg);
        border-radius: 20px;
        padding: 24px;
        margin-top: 15px;
        box-shadow: 0 15px 35px rgba(60, 35, 23, 0.1);
        border: 1px solid rgba(92, 61, 46, 0.08);
    }

    .navbar-nav {
        gap: 8px;
        text-align: center;
        width: 100%;
    }

    .nav-link {
        padding: 10px 16px !important;
        display: block !important;
        width: 100%;
        border-radius: 10px;
        transition: background-color 0.2s ease, color 0.2s ease !important;
    }

    .nav-link.d-inline-flex {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: var(--accent-light) !important;
        color: var(--accent-brown) !important;
    }

    .nav-link::after {
        display: none !important;
    }

    .custom-dropdown-menu {
        position: static !important;
        float: none !important;
        background-color: rgba(92, 61, 46, 0.03) !important;
        box-shadow: none !important;
        border: none !important;
        margin-top: 5px !important;
        width: 100% !important;
        padding: 10px !important;
    }

    .custom-dropdown-menu .dropdown-item {
        justify-content: start;
        text-align: center;
        padding: 8px 16px !important;
    }

    /* Hide desktop-specific search/cart/order inside the collapse menu on mobile */
    .navbar-collapse .d-flex.align-items-center.justify-content-center.flex-wrap {
        display: none !important;
    }

    .hero-section {
        padding: 60px 0 60px 0;
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 30px auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-container {
        margin-top: 0px;
    }

    .banner-card {
        padding: 50px;
    }

    .hero-cup-img {
        max-width: 100%;
    }

    /* .banner-img-container {
        position: relative;
        right: 0;
        bottom: 0;
        width: 100%;
        margin-top: 40px;
        height: auto;
        justify-content: center;
    } */

    /* .banner-content {
        max-width: 100%;
        text-align: center;
    } */

    .banner-arrow-icon {
        display: none;
    }

    .newsletter-card {
        padding: 50px 30px;
    }

    .newsletter-art-img,
    .newsletter-beans-img {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-main-cup-3 {
        max-height: 100% !important;
        right: -40px !important;
        top: 0 !important;
        max-height: 100%;
    }

    .custom-tabs-nav {
        gap: 15px;
    }

    .testimonial-badge {
        position: relative;
        bottom: 0;
        left: 0;
        margin: 20px auto 0 auto;
    }

    .feature-item {
        margin-bottom: 25px;
    }

    .footer-section {
        padding: 60px 0 20px 0;
    }

    .footer-section h5 {
        margin-top: 30px;
    }

    .footer-bottom {
        margin-top: 40px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer-bottom-links a {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-input-group {
        flex-direction: column;
        border-radius: 20px;
        padding: 15px;
        gap: 10px;
    }

    .newsletter-input {
        text-align: center;
        padding: 5px 0;
    }

    .newsletter-btn {
        width: 100%;
    }
}

/* Hover Image Reveal Section Styles */
#hover-reveal-section {
    position: relative;
    width: 100%;
    min-height: 90vh;
    background-color: var(--primary-bg);
    display: flex;
    align-items: center;
    padding: 50px 0;
    box-sizing: border-box;
    z-index: 12;
}

.hover-reveal-image-container {
    position: relative;
    width: 320px;
    height: 420px;
    border-radius: 28px;
    overflow: hidden;
    pointer-events: none;
    z-index: 10;
    opacity: 1;
    /* Always visible */
    box-shadow: var(--hover-shadow);
    border: 1px solid rgba(92, 61, 46, 0.08);
    background-color: #ffffff;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.hover-reveal-images-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hover-reveal-images-track img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    padding: 0;
    box-sizing: border-box;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hover-reveal-images-track img.active {
    transform: translateY(0%);
}

.hover-reveal-images-track img.above {
    transform: translateY(-100%);
}

.hover-reveal-images-track img.below {
    transform: translateY(100%);
}

.hover-reveal-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    z-index: 2;
}

.hover-reveal-item {
    overflow: hidden;
    cursor: pointer;
    position: relative;
    padding: 6px 0;
    width: fit-content;
}

.hover-reveal-text {
    position: relative;
    display: block;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.hover-reveal-item:hover .hover-reveal-text {
    transform: translateY(-100%);
}

.hover-reveal-text span {
    display: block;
    font-family: var(--heading-font);
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--text-primary);
    transition: color 0.3s ease, opacity 0.3s ease;
    white-space: nowrap;
    text-align: left;
}

.hover-reveal-duplicate {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
}

/* Default active behavior (no hover, first item active, others dimmed) */
.hover-reveal-list:not(.any-active) .hover-reveal-item .hover-reveal-text span {
    color: var(--text-muted);
    opacity: 0.45;
}

.hover-reveal-list:not(.any-active) .hover-reveal-item:first-child .hover-reveal-text span {
    color: var(--accent-brown);
    opacity: 1;
}

/* Hover active behavior (when any item is hovered) */
.hover-reveal-list.any-active .hover-reveal-item .hover-reveal-text span {
    color: var(--text-muted);
    opacity: 0.45;
}

.hover-reveal-list.any-active .hover-reveal-item.active .hover-reveal-text span {
    color: var(--accent-brown);
    opacity: 1;
}

@media (max-width: 768px) {
    #hover-reveal-section {
        height: auto;
        min-height: auto;
        padding: 60px 20px;
    }

    .hover-reveal-image-container {
        width: 260px;
        height: 350px;
        border-radius: 20px;
    }

    .hover-reveal-text span {
        font-size: 2.2rem;
    }

    .hover-reveal-list {
        align-items: center;
        margin-bottom: 40px;
    }

    .hover-reveal-text span {
        text-align: center;
    }

    .hover-reveal-duplicate {
        text-align: center;
    }
}

/* About Section Styles */
#about-section {
    padding: 50px 0;
    background-color: var(--primary-bg);
    position: relative;
    z-index: 5;
}

.klarna-carousel {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
    overflow: hidden;
    box-sizing: border-box;
    padding: 10px 0;
}

.klarna-card-wrapper {
    position: relative;
    width: 250px;
    /* Same as React preview prop */
    height: 250px;
    border-radius: 50%;
    /* Rounded style matching team profiles */
    overflow: hidden;
    background-color: transparent;
    border: 3px solid var(--accent-light);
    box-shadow: var(--card-shadow);
}

.klarna-card {
    position: relative;
    width: 100%;
    height: 100%;
}

.klarna-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.klarna-label {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--text-primary);
    text-align: center;
    min-height: 35px;
}

.klarna-strip-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.klarna-strip {
    position: relative;
    width: 100%;
    height: 100%;
}

.klarna-btn {
    position: absolute;
    left: 50%;
    top: 40px;
    /* Offset by baseTop to prevent clipping at the top boundary */
    width: 44px;
    /* default buttonSize */
    height: 44px;
    margin-left: -22px;
    margin-top: -22px;
    transform-origin: center;
    will-change: transform, opacity;
}

.klarna-btn-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(92, 61, 46, 0.1);
    background-color: rgba(92, 61, 46, 0.25);
    border: 2px solid transparent;
    transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
}

.klarna-btn-inner:hover {
    transform: scale(1.1);
}

.klarna-btn.active .klarna-btn-inner {
    background-color: #ffffff;
    border-color: var(--accent-brown);
    box-shadow: 0 6px 12px rgba(92, 61, 46, 0.25);
    transform: scale(1.15);
}

.klarna-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

@media (max-width: 768px) {
    #about-section {
        padding: 60px 0;
    }
}

/* Our Shop Section Styles */
#shop-section {
    padding: 50px 0;
    background-color: var(--primary-bg);
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(92, 61, 46, 0.05);
}

.shop-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(92, 61, 46, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-brown);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.shop-feature-item:hover .shop-feature-icon {
    background-color: var(--accent-brown);
    color: #ffffff;
    transform: scale(1.05);
}

.shop-cta-btn {
    padding: 14px 28px;
    font-family: var(--primary-font);
    font-weight: 600;
    border-radius: 50px;
    background-color: var(--accent-brown);
    border-color: var(--accent-brown);
    color: #ffffff !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(92, 61, 46, 0.15);
    display: inline-block;
    text-decoration: none;
}

.shop-cta-btn:hover {
    background-color: var(--text-primary);
    border-color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 61, 46, 0.25);
}

/* 3D Coverflow Slideshow Styles */
.shop-3d-slideshow-container {
    position: relative;
    width: 100%;
    height: 480px;
    min-width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1600px;
    overflow: hidden;
    outline: none;
}

.shop-3d-slider-stage {
    position: relative;
    width: 400px;
    height: 400px;
    transform-style: preserve-3d;
}

.shop-3d-card {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 350px;
    height: 350px;
    border-radius: 30px;
    /* Calculated effective radius */
    overflow: hidden;
    transform-style: preserve-3d;
    transform-origin: center center;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    background-color: #1a1a1a;
    user-select: none;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.shop-3d-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    pointer-events: none;
}

.shop-3d-dim-overlay {
    position: absolute;
    inset: 0;
    background: #000000;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

/* Instagram Reel Crop Wrapper */
.instagram-crop-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 30px;
    background-color: #000;
}

.instagram-crop-wrapper iframe {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: calc(100% + 120px);
    border: none;
}

.instagram-crop-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .instagram-crop-wrapper {
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    #shop-section {
        padding: 60px 0;
    }

    .shop-3d-slideshow-container {
        height: 360px;
    }

    .shop-3d-slider-stage,
    .shop-3d-card {
        width: 280px;
        height: 280px;
        border-radius: 20px;
    }
}

/* ==========================================
   Our Promise Physics Sandbox Gallery Styles
   ========================================== */
.promise-physics-container {
    position: relative;
    width: 100%;
    height: 520px;
    background: radial-gradient(circle at 50% 50%, #FFFDFB 0%, #FAF6F2 70%, #F5ECE5 100%);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(92, 61, 46, 0.08);
    box-shadow: inset 0 10px 30px rgba(92, 61, 46, 0.02), 0 20px 45px rgba(92, 61, 46, 0.04);
    user-select: none;
}

.physics-bean {
    position: absolute;
    visibility: hidden;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border-radius: 50%;
    cursor: grab;
    will-change: transform, top, left;
    filter: drop-shadow(0 6px 12px rgba(92, 61, 46, 0.16));
    transform-origin: center;
    pointer-events: auto;
}

.physics-bean:active {
    cursor: grabbing;
}

/* Glassmorphic Badge Overlay in Sandbox */
.promise-physics-container .testimonial-badge {
    position: absolute;
    bottom: 35px;
    left: 35px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 35px rgba(92, 61, 46, 0.08);
    margin: 0;
    pointer-events: none;
    /* Allows grabbing beans behind/under the badge */
}

@media (max-width: 768px) {
    .promise-physics-container {
        height: 400px;
    }

    .promise-physics-container .testimonial-badge {
        bottom: 20px;
        left: 20px;
        padding: 10px 15px;
    }
}

/* ==========================================
   Orbital Product Showcase Section
   ========================================== */
#orbital-showcase-section {
    --radius: calc(max(260px, 36vh));
    --orbit-rotation: 90deg;
    --glow-color: rgba(139, 94, 60, 0.08);
    /* background-color: #FAF5F0; */
    /* Blends perfectly with primary website beige theme */
    position: relative;
    z-index: 10;
    width: 100%;
    /* No fixed height or overflow — GSAP pin-spacer controls the scroll length */
}

.orbital-sticky-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-radial-vignette {
    position: absolute;
    inset: 0;
    /* background: radial-gradient(circle at center, transparent 35%, rgba(250, 245, 240, 0.98) 100%); */
    z-index: 1;
}

#orbital-glow {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vw;
    max-width: 800px;
    max-height: 800px;
    border-radius: 50%;
    filter: blur(120px);
    /* background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%); */
    transition: background 1s ease-out;
    z-index: 0;
}

.orbital-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.orbital-info-panel {
    position: absolute;
    bottom: 1%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 90%;
    max-width: 650px;
}

/* Orbit Path visual dash line — hidden since only center cup is shown */
.orbital-track-visual {
    display: none;
}

@keyframes orbit-spin-slow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Inner orbit track that rotates */
#orbital-track {
    top: calc(30% + var(--radius));
    left: 50%;
    width: 0;
    height: 0;
    transform: translate(-50%, -50%) rotate(var(--orbit-rotation));
    transform-style: preserve-3d;
    z-index: 3;
}

/* Individual Cup Item positioning */
.orbital-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: center;
    transform: translate(-50%, -50%) rotate(var(--base-angle)) translateY(calc(-1 * var(--radius)));
    opacity: 0;
    visibility: hidden;
    filter: blur(0px) grayscale(0%);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, opacity;
    pointer-events: none;
    cursor: pointer;
}

.orbital-item.active {
    opacity: 1;
    visibility: visible;
    filter: blur(0px) grayscale(0%) drop-shadow(0 15px 30px rgba(92, 61, 46, 0.12));
    z-index: 10;
    pointer-events: auto;
}

/* Scale and rotate styling for cup images */
.orbital-item-inner {
    rotate: var(--counter-rotation, 0deg);
    scale: 0.65;
    transition: scale 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center center;
}

.orbital-item.active .orbital-item-inner {
    scale: 1.1;
}

/* Gently float active cup */
.orbital-item.active img {
    animation: float-cup-item 5s ease-in-out infinite alternate;
}

@keyframes float-cup-item {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(-8px) rotate(1.5deg);
    }
}

/* Info Panel Elements */
.orbital-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(92, 61, 46, 0.2);
    color: #5C3D2E;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 0px;
}

.orbital-title {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    font-weight: 700;
    color: #3C2A21;
    /* Rich dark roast brown */
    margin-bottom: 8px;
}

.orbital-details {
    font-size: 0.95rem;
    color: #5C3D2E;
    /* Contrast coffee brown */
    margin-bottom: 10px;
}

.orbital-cta-btn {
    background-color: #8B5E3C;
    color: #ffffff;
    font-weight: 600;
    padding: 10px 32px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 6px 20px rgba(139, 94, 60, 0.2);
    transition: all 0.3s ease;
}

.orbital-cta-btn:hover {
    background-color: #3C2A21;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 94, 60, 0.35);
}

/* Info Panel animations proxy styling */
#orbital-category,
#orbital-title,
#orbital-details,
#orbital-cta-wrapper {
    will-change: transform, opacity;
}

/* Mobile responsive orbit sizes */
@media (max-width: 768px) {
    #orbital-showcase-section {
        --radius: calc(max(180px, 24vh));
    }

    /* .orbital-item {
        width: 100px;
        height: 220px;
    } */

    .orbital-item.active .orbital-item-inner {
        scale: 1.1;
    }

    .orbital-title {
        font-size: 2rem;
    }

    .orbital-info-panel {
        bottom: 5%;
    }
}

@media (max-width: 480px) {
    #orbital-showcase-section {
        --radius: calc(max(140px, 18vh));
    }

    /* .orbital-item {
        width: 80px;
        height: 160px;
    } */

    .orbital-item.active .orbital-item-inner {
        scale: 1.0;
    }

    .orbital-title {
        font-size: 1.6rem;
    }
}

/* ==========================================================================
   Pixel Drift Interactive Branding Section Style Rules
   ========================================================================== */
.pixel-drift-section {
    background-color: var(--accent-light);
    /* Soft warm cream */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(92, 61, 46, 0.08);
    border-bottom: 1px solid rgba(92, 61, 46, 0.08);
}

.pixel-drift-section .section-subtitle {
    color: #F9731A !important;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.pixel-drift-section .section-title span {
    color: #F9731A;
}

.pixel-drift-container {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(92, 61, 46, 0.08);
    border-radius: 24px;
    box-shadow: inset 0 0 40px rgba(92, 61, 46, 0.02), 0 20px 40px rgba(92, 61, 46, 0.04);
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

#pixel-drift-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    cursor: none;
    /* Hide default cursor to render custom particle responses */
}

@media (max-width: 768px) {
    .pixel-drift-container {
        height: 300px;
        margin-top: 30px;
    }

    .pixel-drift-section {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .pixel-drift-container {
        height: 220px;
        margin-top: 20px;
    }

    .pixel-drift-section {
        padding: 50px 0;
    }
}

/* ==========================================================================
   WhatsApp Floating Widget Styling
   ========================================================================== */
.whatsapp-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: var(--primary-font);
}

.whatsapp-floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    /* Official WhatsApp green */
    border: none;
    color: #ffffff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0;
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
    background-color: #20BA5A;
}

.whatsapp-floating-btn i {
    line-height: 1;
}

.whatsapp-badge-ping {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background-color: #ff4d4d;
    border: 2px solid #ffffff;
    border-radius: 50%;
}

.whatsapp-badge-ping::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 12px;
    height: 12px;
    border: 2px solid #ff4d4d;
    border-radius: 50%;
    animation: whatsapp-ping 1.6s infinite ease-in-out;
    opacity: 0.8;
}

@keyframes whatsapp-ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* Chat Box Card */
.whatsapp-chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    max-width: calc(100vw - 60px);
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(92, 61, 46, 0.15);
    border: 1px solid rgba(92, 61, 46, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(30px) scale(0.85);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    transform-origin: bottom right;
}

.whatsapp-chat-box.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

/* Header */
.chat-box-header {
    background-color: #075E54;
    /* WhatsApp dark green */
    color: #ffffff;
    padding: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.avatar-img-placeholder {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 18px;
}

.status-badge-online {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 11px;
    height: 11px;
    background-color: #25D366;
    border: 2px solid #075E54;
    border-radius: 50%;
}

.btn-close-chat {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0;
    line-height: 1;
}

.btn-close-chat:hover {
    color: #ffffff;
}

/* Body */
.chat-box-body {
    padding: 20px;
    background-color: #E5DDD5;
    /* Classic WhatsApp background pattern cream */
    background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 0);
    background-size: 16px 16px;
    max-height: 250px;
    overflow-y: auto;
}

.chat-bubble-received {
    background-color: #ffffff;
    padding: 12px 16px;
    border-radius: 0 16px 16px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    max-width: 92%;
}

.chat-bubble-meta {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 5px;
    font-weight: 500;
}

.chat-bubble-content {
    font-size: 13.5px;
    color: var(--text-primary);
    line-height: 1.5;
}

/* Footer */
.chat-box-footer {
    padding: 15px 20px;
    background-color: #ffffff;
    border-top: 1px solid rgba(92, 61, 46, 0.06);
    display: flex;
    justify-content: center;
}

.btn-whatsapp-start {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 11px 24px;
    border-radius: 50px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
    transition: all 0.3s ease;
}

.btn-whatsapp-start:hover {
    background-color: #20BA5A;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

/* Responsiveness */
@media (max-width: 576px) {
    .whatsapp-widget-container {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-floating-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .whatsapp-chat-box {
        bottom: 70px;
        width: 300px;
    }
}

/* ==========================================================================
   AURORA PRO - Image Sequence Preloader & Canvas Lerp Scroll Showcase Styles
   ========================================================================== */

.hero-scroll-container {
    position: relative;
    height: 800vh;
    background: #07070a;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Ambient canvas overlays */
.canvas-vignette {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(circle at center, transparent 40%, rgba(7, 7, 10, 0.8) 90%);
}

.ambient-glow {
    position: absolute;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 2;
}

.glow-cyan {
    top: -10%;
    left: -10%;
    background: #00f2fe;
}

.glow-purple {
    bottom: -10%;
    right: -10%;
    background: #7f00ff;
}

/* Navbar Custom Dropdown & Home Icon Enhancements */
.custom-dropdown-menu {
    background-color: var(--primary-bg) !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 32px rgba(60, 35, 23, 0.12) !important;
    min-width: 210px;
    border: 1px solid rgba(92, 61, 46, 0.1) !important;
    animation: dropdownFadeIn 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.custom-dropdown-menu .dropdown-item {
    font-family: var(--primary-font);
    font-weight: 500;
    color: var(--text-primary);
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.custom-dropdown-menu .dropdown-item:hover,
.custom-dropdown-menu .dropdown-item:focus {
    background-color: var(--accent-light);
    color: var(--accent-brown);
    transform: translateX(4px);
}

.nav-home-link {
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px !important;
}

.nav-home-link i {
    transition: transform 0.2s ease, color 0.2s ease;
}

.nav-home-link:hover i {
    transform: scale(1.2);
    color: var(--accent-brown);
}

/* Sub-page Banner Hero & Components */
.page-banner-hero {
    background: linear-gradient(135deg, #2A170F 0%, #3C2317 50%, #5C3D2E 100%);
    padding: 130px 0 70px 0;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-banner-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 235, 230, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-banner-hero h1 {
    color: #FFFFFF;
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.custom-card-box {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(92, 61, 46, 0.08);
    box-shadow: 0 10px 30px rgba(92, 61, 46, 0.05);
    transition: all 0.3s ease;
}

.custom-card-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(92, 61, 46, 0.1);
}

.custom-input {
    border-radius: 12px;
    border: 1px solid rgba(92, 61, 46, 0.2);
    padding: 12px 18px;
    font-family: var(--primary-font);
}

.custom-input:focus {
    border-color: var(--accent-brown);
    box-shadow: 0 0 0 3px rgba(92, 61, 46, 0.15);
}

.badge-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: var(--accent-light);
    color: var(--accent-brown);
}

/* Category Filter Buttons */
.filter-pills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-pill-btn {
    background-color: #FFFFFF;
    color: var(--text-primary);
    border: 1px solid rgba(92, 61, 46, 0.15);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(92, 61, 46, 0.03);
}

.filter-pill-btn:hover,
.filter-pill-btn.active {
    background-color: var(--accent-brown);
    color: #FFFFFF;
    border-color: var(--accent-brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(92, 61, 46, 0.18);
}

/* Steam Animation */
@keyframes floatSteam {
    0% {
        opacity: 0;
        transform: translateY(0) scaleX(0.8);
    }

    50% {
        opacity: 0.6;
        transform: translateY(-15px) scaleX(1.1);
    }

    100% {
        opacity: 0;
        transform: translateY(-30px) scaleX(1.4);
    }
}

.steam-path-1 {
    animation: floatSteam 2.5s infinite ease-in-out;
}

.steam-path-2 {
    animation: floatSteam 2.5s infinite ease-in-out 0.8s;
}

.steam-path-3 {
    animation: floatSteam 2.5s infinite ease-in-out 1.6s;
}

/* Floating Cup Animation */
@keyframes heroCupFloat {

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

    50% {
        transform: translateY(-12px) rotate(1.5deg);
    }
}

.floating-hero-cup {
    animation: heroCupFloat 4.5s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(60, 35, 23, 0.25));
}

/* Taste Profile Progress Bars */
.taste-bar-wrapper {
    background: rgba(92, 61, 46, 0.08);
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
}

.taste-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #D4A373 0%, var(--accent-brown) 100%);
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

/* About Page Specific Exact Hero Banner (Matching Screenshot) */
.about-hero-banner {
    background: linear-gradient(to bottom, rgba(10, 5, 2, 0.25) 0%, rgba(20, 10, 5, 0.45) 100%),
        url('../image/about_banner.png') center/cover no-repeat !important;
    position: relative;
    padding: 190px 0 160px 0;
    color: #FFFFFF;
    overflow: hidden;
}

.about-hero-banner .hero-subtitle-tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 16px;
    display: inline-block;
}

.about-hero-banner .hero-title-main {
    font-family: var(--heading-font);
    font-size: 4.2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .about-hero-banner {
        padding: 150px 0 120px 0;
    }

    .about-hero-banner .hero-title-main {
        font-size: 2.6rem;
    }
}

.about-hero-banner .hero-desc-text {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    max-width: 600px;
    margin: 0 auto;
}

.banner-bottom-curve-svg {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 2;
    pointer-events: none;
}

.banner-bottom-curve-svg svg {
    width: 100%;
    height: 100%;
    display: block;
}

.scroll-down-circle-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #FFFFFF;
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-decoration: none;
}

.scroll-down-circle-btn:hover {
    transform: translateX(-50%) translateY(4px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
    color: var(--accent-brown);
}

/* About Page Statement Section */
.about-statement-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    line-height: 1.25;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .about-statement-title {
        font-size: 1.85rem;
    }
}

/* About Page Product Grid & Cards */
.about-product-card {
    background: #F9F7F5;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    border: 1px solid rgba(92, 61, 46, 0.05);
}

.about-product-card:hover {
    background: #FFFFFF;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(92, 61, 46, 0.08);
}

/* Feature Image Container */
.about-feature-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(60, 35, 23, 0.08);
}

.about-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-feature-img:hover img {
    transform: scale(1.03);
}

/* Wholesale Banner Box */
.wholesale-banner-card {
    background: linear-gradient(135deg, #1C100B 0%, #3C2317 100%),
        url('../image/coffee_beans.webp') center/cover no-repeat;
    border-radius: 24px;
    padding: 60px 40px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* About Page 3-Cup Overlap Composition */
.three-cups-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cups-bg-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.25) 0%, rgba(245, 235, 230, 0.05) 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.floating-cup {
    position: absolute;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 15px 25px rgba(60, 35, 23, 0.18));
}

.cup-left {
    width: 190px;
    left: 10px;
    top: 30px;
    transform: rotate(-12deg);
    z-index: 2;
}

.cup-center {
    width: 180px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -45%);
    z-index: 4;
}

.cup-right {
    width: 200px;
    right: 10px;
    top: 20px;
    transform: rotate(10deg);
    z-index: 3;
}

.three-cups-wrapper:hover .cup-left {
    transform: rotate(-16deg) translateY(-8px);
}

.three-cups-wrapper:hover .cup-center {
    transform: translate(-50%, -52%) scale(1.05);
}

.three-cups-wrapper:hover .cup-right {
    transform: rotate(14deg) translateY(-8px);
}

/* "Coffee Made Easy" Section Styles */
.center-cup-glow-container {
    position: relative;
    width: 280px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-cup-circle-bg {
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(212, 163, 115, 0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.center-cup-img {
    position: relative;
    z-index: 2;
    max-height: 320px;
    filter: drop-shadow(0 20px 30px rgba(60, 35, 23, 0.16));
    animation: heroCupFloat 4s ease-in-out infinite;
}

.feature-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(92, 61, 46, 0.08);
    color: var(--accent-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-item-box:hover .feature-icon-circle {
    background: var(--accent-brown);
    color: #FFFFFF;
    transform: scale(1.1);
}

/* ==========================================
   ABOUT US PAGE CUSTOM DESIGN STYLES
   ========================================== */

/* Typography & Decorative Elements */
.font-script {
    font-family: 'Caveat', cursive !important;
}

.script-accent {
    font-family: 'Caveat', cursive;
    color: #8C624E;
    font-size: 1.3em;
    font-weight: 600;
    line-height: 1;
}

.text-sublabel {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #9E887B;
    text-transform: uppercase;
}

/* --- Hero Section --- */
.about-hero-section {
    padding: 130px 0 60px 0;
    position: relative;
    background: var(--primary-bg);
    overflow: hidden;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #ffffff;
    background-color: var(--accent-brown);
    padding: 2px 4px;
    border-radius: 8px;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Caveat', cursive;
    font-size: 2.2rem;
    color: #5C3D2E;
    margin-bottom: 10px;
}

.about-hero-badge .heart-accent {
    font-size: 1.6rem;
    color: #7A5340;
}

.about-hero-title {
    font-family: var(--heading-font);
    font-size: 3.8rem;
    color: #3C2317;
    line-height: 1.12;
    margin-bottom: 24px;
}

.about-hero-desc {
    font-size: 1.1rem;
    color: #6C5A50;
    max-width: 460px;
    line-height: 1.65;
    margin-bottom: 32px;
}

.btn-hero-story {
    display: inline-flex;
    align-items: center;
    background-color: #3C2317;
    color: #FFFFFF;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 20px rgba(60, 35, 23, 0.15);
}

.btn-hero-story:hover {
    background-color: #5C3D2E;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(60, 35, 23, 0.25);
}

/* Hero Canvas & 3D Composition */
.about-hero-composition {
    position: relative;
    width: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-swirl-bg {
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(230, 210, 196, 0.65) 0%, rgba(245, 235, 226, 0.2) 65%, rgba(252, 248, 244, 0) 100%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-main-cup {
    position: absolute;
    z-index: 3;
    /* max-height: 380px; */
    width: 100%;
    /* filter: drop-shadow(0 25px 35px rgba(60, 35, 23, 0.2)); */
    transition: transform 0.4s ease;
    height: auto;
    right: -72px;
}

.hero-main-cup-2 {
    position: absolute;
    z-index: 3;
    max-height: 550px;
    filter: drop-shadow(0 25px 35px rgba(60, 35, 23, 0.2));
    transition: transform 0.4s ease;
    right: -40px;
    top: 50px;

}

.hero-main-cup-3 {
    position: absolute;
    z-index: 3;
    max-height: 500px;
    filter: drop-shadow(0 25px 35px rgba(60, 35, 23, 0.2));
    transition: transform 0.4s ease;
    right: -110px;
    top: -70px;

}

.hero-main-cup-4 {
    position: absolute;
    z-index: 3;
    max-height: 520px;
    filter: drop-shadow(0 25px 35px rgba(60, 35, 23, 0.2));
    transition: transform 0.4s ease;
    right: -100px;
    top: -200px;

}

.hero-main-cup:hover {
    transform: translateY(-8px) scale(1.02);
}

.hero-main-cup-blended {
    border-radius: 28px;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
}


.hero-iced-cup {
    position: absolute;
    right: 5%;
    bottom: 5%;
    z-index: 4;
    max-height: 310px;
    width: auto;
    filter: drop-shadow(0 20px 30px rgba(60, 35, 23, 0.18));
}

.circular-stamp-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    border: 1px dashed #B89B8A;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 20px rgba(92, 61, 46, 0.08);
    animation: rotateStamp 25s linear infinite;
}

@keyframes rotateStamp {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.circular-stamp-text {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #4A3326;
    text-transform: uppercase;
    line-height: 1.2;
    padding: 8px;
}

.floating-beans-decor {
    position: absolute;
    z-index: 4;
    pointer-events: none;
}

/* --- Our Story Section --- */
.our-story-section {
    padding: 30px 0 60px 0;
}

.story-card-wrapper {
    background: linear-gradient(145deg, #FAF4EF 0%, #F5ECE5 100%);
    border-radius: 28px;
    padding: 56px 48px;
    border: 1px solid #EFE4DB;
    box-shadow: 0 15px 40px rgba(60, 35, 23, 0.04);
    position: relative;
    overflow: hidden;
}

.story-heading {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    color: #3C2317;
    line-height: 1.2;
    margin-bottom: 24px;
}

.story-text {
    font-size: 1.02rem;
    color: #6C5A50;
    line-height: 1.7;
    margin-bottom: 18px;
}

.story-signature {
    font-family: 'Caveat', cursive;
    font-size: 2.2rem;
    color: #5C3D2E;
    margin-top: 28px;
    margin-bottom: 0;
}

/* Polaroid Card */
.polaroid-frame-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 440px;
}

.polaroid-card {
    background: #FFFFFF;
    padding: 16px 16px 24px 16px;
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(60, 35, 23, 0.12);
    transform: rotate(2.5deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    z-index: 2;
}

.polaroid-card:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 25px 55px rgba(60, 35, 23, 0.16);
}

.polaroid-tape {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    width: 80px;
    height: 24px;
    background: rgba(240, 230, 220, 0.75);
    border: 1px solid rgba(210, 195, 180, 0.5);
    backdrop-filter: blur(2px);
    z-index: 3;
}

.polaroid-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
}

.polaroid-caption {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: #3C2317;
    text-align: center;
    margin-top: 16px;
    margin-bottom: 0;
    line-height: 1.25;
}

/* --- Stats Strip Section --- */
.stats-strip-wrapper {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 12px 35px rgba(60, 35, 23, 0.05);
    border: 1px solid #F3EAE3;
    margin-top: 10px;
    margin-bottom: 70px;
}

.stat-item {
    text-align: center;
    padding: 12px 16px;
    position: relative;
}

.stat-icon-wrap {
    font-size: 2rem;
    color: #5C3D2E;
    margin-bottom: 8px;
    display: inline-block;
}

.stat-number {
    font-family: var(--heading-font);
    font-size: 2.6rem;
    color: #3C2317;
    margin-bottom: 4px;
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #8C786C;
    text-transform: uppercase;
    margin-bottom: 0;
}

.stat-divider {
    border-right: 1px solid #EFE4DB;
}

@media (max-width: 767.98px) {
    .stat-divider {
        border-right: none;
        border-bottom: 1px solid #EFE4DB;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}

/* --- What We Stand For Section --- */
.stand-for-section {
    padding: 20px 0 70px 0;
}

.stand-card {
    text-align: center;
    padding: 24px 16px;
    transition: transform 0.3s ease;
}

.stand-card:hover {
    transform: translateY(-5px);
}

.stand-icon-circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #F4ECE5;
    color: #5C3D2E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px auto;
    box-shadow: 0 6px 18px rgba(92, 61, 46, 0.06);
    transition: all 0.3s ease;
}

.stand-card:hover .stand-icon-circle {
    background: #5C3D2E;
    color: #FFFFFF;
    transform: scale(1.08);
}

.stand-title {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #3C2317;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.stand-desc {
    font-size: 0.92rem;
    color: #7A6A61;
    margin-bottom: 0;
    line-height: 1.5;
}

/* --- Our Process Section --- */
.process-section {
    padding: 20px 0 80px 0;
}

.process-heading {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    color: #3C2317;
    margin-bottom: 60px;
}

.process-timeline-container {
    position: relative;
}

.process-line {
    position: absolute;
    top: 55px;
    left: 12%;
    right: 12%;
    border-top: 2px dashed #D6C4B8;
    z-index: 1;
}

.process-step-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-node-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #FAF4EF;
    box-shadow: 0 10px 25px rgba(60, 35, 23, 0.12);
    margin: 0 auto 20px auto;
    position: relative;
    background: #FFFFFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step-item:hover .process-node-circle {
    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(60, 35, 23, 0.18);
}

.process-node-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-num-badge {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: #5C3D2E;
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    border: 2px solid #FFFFFF;
}

.process-step-title {
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #3C2317;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.process-step-desc {
    font-size: 0.88rem;
    color: #7A6A61;
    margin-bottom: 0;
    line-height: 1.45;
}

@media (max-width: 991.98px) {
    .process-line {
        display: none;
    }
}

/* --- Our Promise Section --- */
.promise-section {
    padding: 20px 0 70px 0;
}

.promise-card-wrapper {
    background: linear-gradient(135deg, #FAF2EC 0%, #F5ECE5 100%);
    border-radius: 28px;
    padding: 48px;
    border: 1px solid #EFE4DB;
    box-shadow: 0 15px 40px rgba(60, 35, 23, 0.04);
    position: relative;
    overflow: hidden;
}

.promise-heading {
    font-family: var(--heading-font);
    font-size: 2.7rem;
    color: #3C2317;
    line-height: 1.15;
    margin-bottom: 20px;
}

.promise-desc {
    font-size: 1.02rem;
    color: #6C5A50;
    line-height: 1.6;
    margin-bottom: 32px;
}

.promise-grid-item {
    text-align: center;
}

.promise-grid-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFFFFF;
    color: #5C3D2E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 10px auto;
    box-shadow: 0 4px 12px rgba(60, 35, 23, 0.06);
    border: 1px solid #EFE4DB;
}

.promise-grid-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #3C2317;
    margin-bottom: 0;
    line-height: 1.3;
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 20px 0 80px 0;
}

.testimonial-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 10px 30px rgba(60, 35, 23, 0.04);
    border: 1px solid #F3EAE3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(60, 35, 23, 0.08);
}

.testimonial-quote {
    font-size: 0.96rem;
    color: #5C4C42;
    line-height: 1.65;
    margin-bottom: 24px;
    position: relative;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #5C3D2E;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 0.98rem;
    font-weight: 700;
    color: #3C2317;
    margin-bottom: 2px;
}

.testimonial-role {
    font-size: 0.8rem;
    color: #8C786C;
    margin-bottom: 0;
}

.slider-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #EFE4DB;
    color: #3C2317;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(60, 35, 23, 0.06);
}

.slider-nav-btn:hover {
    background: #3C2317;
    color: #FFFFFF;
    border-color: #3C2317;
}

/* ==========================================
   CONTACT US PAGE CUSTOM DESIGN STYLES
   ========================================== */

/* --- Contact Hero Section --- */
.contact-hero-section {
    padding: 130px 0 50px 0;
    position: relative;
    background: #FAF5F0;
    overflow: visible;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    background: #EFE4DC;
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #4A2E20;
    text-transform: uppercase;
}

.contact-hero-title {
    font-family: var(--heading-font);
    font-size: 4.2rem;
    color: #3C2317;
    line-height: 1.05;
    margin-bottom: 2px;
    font-weight: 700;
}

.contact-hero-subtitle {
    font-family: 'Caveat', cursive;
    font-size: 2.8rem;
    color: #5C3D2E;
    font-weight: 600;
    margin-bottom: 20px;
}

.golden-underline-stroke {
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3.5px;
    background: #D4A853;
    border-radius: 4px;
}

.contact-hero-desc {
    font-size: 1rem;
    color: #6C5A50;
    max-width: 440px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.contact-breadcrumb {
    font-size: 0.92rem;
    color: #8C786C;
}

.contact-breadcrumb a {
    color: #3C2317;
    font-weight: 500;
    text-decoration: none;
}

.contact-hero-banner-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin-left: auto;
    filter: drop-shadow(0 20px 35px rgba(60, 35, 23, 0.12));
    transform: scale(1.35);

}


/* Hero Canvas & Composition */
.contact-hero-composition {
    position: relative;
    width: 100%;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-swirl-bg {
    position: absolute;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(230, 210, 196, 0.65) 0%, rgba(245, 235, 226, 0.2) 65%, rgba(252, 248, 244, 0) 100%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.contact-main-cup {
    position: relative;
    z-index: 3;
    max-height: 360px;
    width: auto;
    filter: drop-shadow(0 25px 35px rgba(60, 35, 23, 0.2));
    transition: transform 0.4s ease;
}

.contact-main-cup:hover {
    transform: translateY(-6px) scale(1.02);
}

.contact-top-mug {
    position: absolute;
    right: 2%;
    bottom: 10%;
    z-index: 4;
    max-height: 240px;
    width: auto;
    filter: drop-shadow(0 20px 30px rgba(60, 35, 23, 0.18));
}

/* --- Contact Form & Cards Section --- */
.contact-cards-section {
    padding: 20px 0 60px 0;
}

/* Left Card: Get In Touch */
.get-in-touch-card {
    background: linear-gradient(160deg, #4A2E20 0%, #351F14 100%);
    border-radius: 24px;
    padding: 48px 40px;
    color: #FFFFFF;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 15px 40px rgba(60, 35, 23, 0.12);
    position: relative;
    overflow: hidden;
}

.get-in-touch-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.get-in-touch-leaf-top {
    position: absolute;
    top: -15px;
    right: -25px;
    width: 160px;
    opacity: 0.25;
    filter: invert(0.8) sepia(0.8) saturate(3) hue-rotate(350deg);
    pointer-events: none;
    z-index: 1;
    transform: rotate(30deg);
}

.get-in-touch-leaf-bottom {
    position: absolute;
    bottom: -15px;
    right: -25px;
    width: 220px;
    opacity: 0.3;
    filter: invert(0.8) sepia(0.8) saturate(3) hue-rotate(350deg);
    pointer-events: none;
    z-index: 1;
}


.get-in-touch-heading {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.get-in-touch-desc {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    margin-bottom: 36px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(216, 178, 156, 0.15);
    color: #E6C5B3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.contact-info-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2px;
}

.contact-info-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    line-height: 1.4;
}

.btn-whatsapp-chat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-whatsapp-chat:hover {
    background: #FFFFFF;
    color: #351F14;
    border-color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Right Card: Send Us A Message */
.send-message-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 48px 44px;
    box-shadow: 0 15px 40px rgba(60, 35, 23, 0.05);
    border: 1px solid #F3EAE3;
    height: 100%;
}

.send-message-heading {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: #3C2317;
    margin-bottom: 32px;
}

.form-label-custom {
    font-size: 0.86rem;
    font-weight: 700;
    color: #3C2317;
    margin-bottom: 8px;
    display: block;
}

.form-control-custom {
    background: #FAF6F2;
    border: 1px solid #EFE6DE;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.95rem;
    color: #3C2317;
    width: 100%;
    font-family: var(--primary-font);
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    background: #FFFFFF;
    border-color: #5C3D2E;
    box-shadow: 0 0 0 4px rgba(92, 61, 46, 0.08);
    outline: none;
}

.form-control-custom::placeholder {
    color: #B0A096;
}

.btn-submit-message {
    background-color: #3C2317;
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 16px 36px;
    font-weight: 500;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(60, 35, 23, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.btn-submit-message:hover {
    background-color: #5C3D2E;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(60, 35, 23, 0.25);
}

/* --- Features Strip Section --- */
.contact-features-strip {
    background: #FAF1EB;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 10px 30px rgba(60, 35, 23, 0.04);
    border: 1px solid #EFE4DB;
    margin-top: 50px;
    margin-bottom: 70px;
    position: relative;
    overflow: hidden;
}

.feature-strip-leaf-right {
    position: absolute;
    right: -15px;
    bottom: -15px;
    width: 170px;
    opacity: 0.35;
    pointer-events: none;
    z-index: 1;
}


.feature-strip-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 12px;
}

.feature-strip-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #FAF3EE;
    color: #5C3D2E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    border: 1px solid #EFE4DB;
}

.feature-strip-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #3C2317;
    margin-bottom: 2px;
}

.feature-strip-desc {
    font-size: 0.84rem;
    color: #7A6A61;
    margin-bottom: 0;
    line-height: 1.35;
}

.feature-strip-divider {
    border-right: 1px solid #EFE4DB;
}

@media (max-width: 991.98px) {
    .feature-strip-divider {
        border-right: none;
        border-bottom: 1px solid #EFE4DB;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }
}

/* --- Social Follow Banner --- */
.conversation-brewing-banner {
    background: #FAF1EB;
    border-radius: 28px;
    padding: 0;
    margin-top: 50px;
    margin-bottom: 80px;
    border: 1px solid #EFE4DB;
    box-shadow: 0 15px 40px rgba(60, 35, 23, 0.04);
    position: relative;
    overflow: visible;
    min-height: 210px;
    display: flex;
    align-items: center;
}

.brewing-left-img {
    position: absolute;
    left: -15px;
    bottom: -5px;
    height: 115%;
    max-height: 250px;
    width: auto;
    object-fit: contain;
    pointer-events: none;
    z-index: 2;
}

.brewing-right-img {
    position: absolute;
    right: -30px;
    top: -38px;
    height: 130%;
    max-height: 285px;
    width: auto;
    object-fit: contain;
    pointer-events: none;
    z-index: 2;
}

.brewing-banner-center {
    position: relative;
    z-index: 3;
    padding: 40px 20px;
    text-align: center;
    width: 100%;
}

}

.brewing-banner-heading {
    font-family: var(--heading-font);
    font-size: 2.3rem;
    color: #3C2317;
    margin-bottom: 10px;
}

.brewing-banner-subtext {
    font-size: 1.02rem;
    color: #6C5A50;
    margin-bottom: 24px;
}

.social-circle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #3C2317;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin: 0 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(60, 35, 23, 0.12);
}

.social-circle-btn:hover {
    background: #5C3D2E;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(60, 35, 23, 0.2);
}

/* ==========================================
   FRANCHISE PAGE CUSTOM DESIGN STYLES
   ========================================== */

/* --- Franchise Hero --- */
.franchise-hero-section {
    padding: 130px 0 60px 0;
    position: relative;
    background: var(--primary-bg);
    overflow: hidden;
}

.franchise-hero-title {
    font-family: var(--heading-font);
    font-size: 3.8rem;
    color: #3C2317;
    line-height: 1.1;
    margin-bottom: 2px;
}

.franchise-hero-subtitle {
    font-family: 'Caveat', cursive;
    font-size: 3.2rem;
    color: #735140;
    font-weight: 600;
    margin-bottom: 18px;
    line-height: 1;
}

.franchise-hero-desc {
    font-size: 1.08rem;
    color: #6C5A50;
    max-width: 480px;
    line-height: 1.65;
    margin-bottom: 36px;
}

.hero-benefit-item {
    text-align: center;
    padding: 8px 12px;
}

.hero-benefit-icon {
    font-size: 1.5rem;
    color: #5C3D2E;
    margin-bottom: 6px;
}

.hero-benefit-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #3C2317;
    line-height: 1.3;
    margin-bottom: 0;
}

.hero-benefit-divider {
    border-right: 1px dashed #D8C6B9;
}

/* --- Franchise Models Section --- */
.models-section {
    padding: 30px 0 70px 0;
}

.model-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 36px 28px;
    box-shadow: 0 12px 35px rgba(60, 35, 23, 0.05);
    border: 1px solid #F3EAE3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(60, 35, 23, 0.1);
}

.model-card.featured-card {
    border: 2px solid #E5C3A6;
    box-shadow: 0 18px 45px rgba(229, 195, 166, 0.35);
    background: linear-gradient(180deg, #FFFFFF 0%, #FAF5F0 100%);
}

.model-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.model-badge.badge-compact {
    background: #FAF3EE;
    color: #8C6A58;
}

.model-badge.badge-popular {
    background: #FFB703;
    color: #3C2317;
}

.model-badge.badge-experiential {
    background: #F4EBE3;
    color: #735140;
}

.model-icon-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #FAF3EE;
    color: #5C3D2E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 18px auto;
    box-shadow: 0 6px 16px rgba(60, 35, 23, 0.06);
}

.model-title {
    font-family: var(--heading-font);
    font-size: 1.65rem;
    color: #3C2317;
    margin-bottom: 10px;
}

.model-desc {
    font-size: 0.88rem;
    color: #7A6A61;
    line-height: 1.5;
    margin-bottom: 24px;
    min-height: 52px;
}

.investment-pill {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: #D97706;
    margin-bottom: 24px;
    font-weight: 700;
}

.model-checklist {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.model-checklist li {
    font-size: 0.86rem;
    color: #5C4C42;
    display: flex;
    align-items: center;
    gap: 10px;
}

.model-checklist li i {
    color: #2D6A4F;
    font-size: 0.95rem;
}

/* --- Inquiry Form Section --- */
.inquiry-card-wrapper {
    background: #FFFFFF;
    border-radius: 28px;
    padding: 48px;
    box-shadow: 0 15px 45px rgba(60, 35, 23, 0.06);
    border: 1px solid #F3EAE3;
    margin-top: 30px;
    margin-bottom: 70px;
}

.inquiry-heading {
    font-family: var(--heading-font);
    font-size: 2.6rem;
    color: #3C2317;
    margin-bottom: 6px;
}

.inquiry-subtext {
    font-size: 0.92rem;
    color: #7A6A61;
    margin-bottom: 32px;
}

/* --- Why Partner Strip --- */
.why-partner-strip {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 32px 20px;
    box-shadow: 0 10px 30px rgba(60, 35, 23, 0.04);
    border: 1px solid #F3EAE3;
    margin-bottom: 70px;
}

.partner-item {
    text-align: center;
    padding: 8px 12px;
}

.partner-icon {
    font-size: 1.8rem;
    color: #5C3D2E;
    margin-bottom: 10px;
}

.partner-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: #3C2317;
    line-height: 1.35;
    margin-bottom: 0;
}

.partner-divider {
    border-right: 1px solid #EFE4DB;
}

@media (max-width: 991.98px) {
    .partner-divider {
        border-right: none;
        border-bottom: 1px solid #EFE4DB;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }
}

/* --- Franchise CTA Banner --- */
.franchise-cta-banner {
    background: linear-gradient(135deg, #FAF2EC 0%, #F5ECE5 100%);
    border-radius: 28px;
    padding: 48px;
    border: 1px solid #EFE4DB;
    box-shadow: 0 15px 40px rgba(60, 35, 23, 0.04);
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.cta-banner-heading {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    color: #3C2317;
    line-height: 1.15;
    margin-bottom: 0;
}

.btn-franchise-apply {
    background-color: #3C2317;
    color: #FFFFFF;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(60, 35, 23, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-franchise-apply:hover {
    background-color: #5C3D2E;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(60, 35, 23, 0.25);
}

/* ==========================================
   STORE LOCATOR PAGE CUSTOM DESIGN STYLES
   ========================================== */

/* --- Store Locator Search Bar --- */
.locator-search-wrapper {
    background: #FFFFFF;
    border-radius: 50px;
    padding: 6px 6px 6px 24px;
    box-shadow: 0 10px 30px rgba(60, 35, 23, 0.05);
    border: 1px solid #EFE6DE;
    display: flex;
    align-items: center;
    max-width: 640px;
    margin: 0 auto;
}

.locator-search-input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 0.98rem;
    color: #3C2317;
    font-family: var(--primary-font);
}

.locator-search-input::placeholder {
    color: #A39287;
}

.btn-search-submit {
    background-color: #3C2317;
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-search-submit:hover {
    background-color: #5C3D2E;
    color: #FFFFFF;
}

.btn-filter-toggle {
    background: #FFFFFF;
    border: 1px solid #EFE6DE;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #3C2317;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(60, 35, 23, 0.04);
    transition: all 0.3s ease;
}

.btn-filter-toggle:hover {
    background: #FAF5F0;
    color: #5C3D2E;
}

/* --- Store Cards --- */
.store-list-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.store-item-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid #F3EAE3;
    box-shadow: 0 10px 30px rgba(60, 35, 23, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(60, 35, 23, 0.08);
}

.store-thumb-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 14px;
    flex-shrink: 0;
}

.store-tag-pill {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 50px;
    background: #FAF3EE;
    color: #735140;
}

.store-status-open {
    font-size: 0.78rem;
    font-weight: 700;
    color: #2D6A4F;
}

.store-title {
    font-family: var(--heading-font);
    font-size: 1.35rem;
    color: #3C2317;
    margin-bottom: 8px;
}

.store-info-row {
    font-size: 0.85rem;
    color: #6C5A50;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-get-directions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid #3C2317;
    color: #3C2317;
    font-size: 0.84rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-get-directions:hover {
    background: #3C2317;
    color: #FFFFFF;
}

.distance-badge {
    font-size: 0.8rem;
    font-weight: 700;
    color: #8C786C;
    background: #FAF5F0;
    padding: 4px 12px;
    border-radius: 50px;
}

.btn-load-more-stores {
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    border: 1px solid #EFE6DE;
    background: #FFFFFF;
    color: #5C3D2E;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(60, 35, 23, 0.04);
}

.btn-load-more-stores:hover {
    background: #FAF3EE;
    color: #3C2317;
}

/* --- Interactive Map Container --- */
.map-canvas-container {
    background: #F4EBE4;
    border-radius: 24px;
    height: 100%;
    min-height: 520px;
    position: relative;
    overflow: hidden;
    border: 1px solid #EFE4DB;
    box-shadow: 0 15px 40px rgba(60, 35, 23, 0.05);
}

.map-bg-mockup {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.map-pin-marker {
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #3C2317;
    color: #FFFFFF;
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(60, 35, 23, 0.3);
    border: 2px solid #FFFFFF;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.map-pin-marker:hover {
    transform: scale(1.15);
}

.map-popup-card {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 20px 45px rgba(60, 35, 23, 0.18);
    width: 280px;
    z-index: 10;
}

.map-popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FAF5F0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #3C2317;
    cursor: pointer;
}

.map-popup-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
}

.map-popup-title {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    color: #3C2317;
    margin-bottom: 4px;
}

.map-popup-address {
    font-size: 0.78rem;
    color: #7A6A61;
    margin-bottom: 4px;
}

.map-popup-distance {
    font-size: 0.75rem;
    color: #8C786C;
    margin-bottom: 12px;
}

.btn-popup-directions {
    background: #3C2317;
    color: #FFFFFF;
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    display: block;
    text-align: center;
    transition: background 0.3s ease;
}

.btn-popup-directions:hover {
    background: #5C3D2E;
    color: #FFFFFF;
}

.map-controls-group {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.map-control-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #EFE6DE;
    color: #3C2317;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(60, 35, 23, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-control-btn:hover {
    background: #3C2317;
    color: #FFFFFF;
}

/* --- Nearby Banner --- */
.nearby-banner-wrapper {
    background: linear-gradient(135deg, #FAF2EC 0%, #F5ECE5 100%);
    border-radius: 28px;
    padding: 44px 48px;
    border: 1px solid #EFE4DB;
    box-shadow: 0 15px 40px rgba(60, 35, 23, 0.04);
    margin-top: 40px;
    margin-bottom: 80px;
}

.nearby-banner-title {
    font-family: var(--heading-font);
    font-size: 2.6rem;
    color: #3C2317;
    line-height: 1.15;
    margin-bottom: 0;
}

/* ==========================================
   OUR PROMISE PAGE CUSTOM DESIGN STYLES
   ========================================== */

/* --- Promise Feature Cards --- */
.promise-card-item {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 36px 28px;
    box-shadow: 0 12px 35px rgba(60, 35, 23, 0.04);
    border: 1px solid #F3EAE3;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.promise-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(60, 35, 23, 0.08);
}

.promise-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.icon-yellow {
    background: #FFF8E7;
    color: #EAB308;
}

.icon-green {
    background: #E8F5E9;
    color: #2E7D32;
}

.icon-blue {
    background: #E3F2FD;
    color: #1565C0;
}

.icon-red {
    background: #FFEBEE;
    color: #C62828;
}

.dot-yellow {
    background: #EAB308;
}

.dot-green {
    background: #2E7D32;
}

.dot-blue {
    background: #1565C0;
}

.dot-red {
    background: #C62828;
}

.promise-card-title {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: #3C2317;
    margin-bottom: 14px;
    line-height: 1.25;
}

.promise-card-desc {
    font-size: 0.88rem;
    color: #6C5A50;
    line-height: 1.6;
    margin-bottom: 28px;
}

.promise-color-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: auto;
}

/* --- Craft Badge Stamp --- */
.crafted-stamp-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px dashed #B89B8A;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #4A3326;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

/* --- Roasting Philosophy Section --- */
.philosophy-section {
    padding: 60px 0 80px 0;
}

.philosophy-heading {
    font-family: var(--heading-font);
    font-size: 3.2rem;
    color: #3C2317;
    line-height: 1.15;
    margin-bottom: 24px;
}

.philosophy-desc {
    font-size: 1.02rem;
    color: #6C5A50;
    line-height: 1.65;
    margin-bottom: 18px;
}

.philosophy-metric-item {
    text-align: center;
    padding: 8px;
}

.philosophy-metric-icon {
    font-size: 1.6rem;
    color: #5C3D2E;
    margin-bottom: 8px;
}

.philosophy-metric-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #3C2317;
    margin-bottom: 2px;
}

.philosophy-metric-sub {
    font-size: 0.76rem;
    color: #8C786C;
    margin-bottom: 0;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES FOR ALL CUSTOM PAGES
   (About, Contact, Franchise, Store Locator, Our Promise)
   ========================================== */

@media (max-width: 991.98px) {

    /* Global Section Headings & Titles */
    .about-hero-title,
    .contact-hero-title,
    .franchise-hero-title {
        font-size: 2.8rem;
    }

    .about-hero-section,
    .contact-hero-section,
    .franchise-hero-section {
        padding: 100px 0 40px 0;
        /* text-align: center; */
    }

    /* .about-hero-desc,
    .contact-hero-desc,
    .franchise-hero-desc {
        margin-left: auto;
        margin-right: auto;
    } */

    /* Hero Compositions on Tablet/Mobile */
    .about-hero-composition,
    .contact-hero-composition {
        min-height: 380px;
        margin-top: 20px;
    }

    .hero-swirl-bg,
    .contact-swirl-bg {
        width: 300px;
        height: 300px;
    }

    .hero-main-cup,
    .contact-main-cup {
        max-height: 300px;
    }

    .hero-iced-cup,
    .contact-top-mug {
        max-height: 220px;
    }

    .circular-stamp-badge {
        width: 90px;
        height: 90px;
        top: 0;
        right: 10px;
    }

    .circular-stamp-text {
        font-size: 0.55rem;
        letter-spacing: 1px;
    }

    /* Section Card Wrappers */
    .story-card-wrapper,
    .promise-card-wrapper,
    .get-in-touch-card,
    .send-message-card,
    .inquiry-card-wrapper,
    .conversation-brewing-banner,
    .franchise-cta-banner,
    .nearby-banner-wrapper {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .story-heading,
    .promise-heading,
    .get-in-touch-heading,
    .send-message-heading,
    .inquiry-heading,
    .brewing-banner-heading,
    .cta-banner-heading,
    .nearby-banner-title,
    .philosophy-heading {
        font-size: 2.2rem;
    }

    .franchise-hero-subtitle {
        font-size: 2.6rem;
    }

    /* Store Locator Map on Mobile */
    .map-canvas-container {
        min-height: 400px;
    }

    .locator-search-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {

    /* Mobile Small Screen adjustments */
    .about-hero-title,
    .contact-hero-title,
    .franchise-hero-title {
        font-size: 2.2rem;
    }

    .about-hero-badge {
        font-size: 1.8rem;
    }

    .about-hero-composition,
    .contact-hero-composition {
        min-height: 300px;
    }

    .hero-swirl-bg,
    .contact-swirl-bg {
        width: 240px;
        height: 240px;
    }

    .hero-main-cup,
    .contact-main-cup {
        max-height: 240px;
    }

    .hero-iced-cup,
    .contact-top-mug {
        max-height: 160px;
    }

    .polaroid-card {
        padding: 12px 12px 20px 12px;
    }

    .polaroid-img {
        height: 210px;
    }

    .polaroid-caption {
        font-size: 1.4rem;
    }

    .stats-strip-wrapper {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .story-card-wrapper,
    .promise-card-wrapper,
    .get-in-touch-card,
    .send-message-card,
    .inquiry-card-wrapper,
    .conversation-brewing-banner,
    .franchise-cta-banner,
    .nearby-banner-wrapper {
        padding: 24px 16px;
    }

    .story-heading,
    .promise-heading,
    .get-in-touch-heading,
    .send-message-heading,
    .inquiry-heading,
    .brewing-banner-heading,
    .cta-banner-heading,
    .nearby-banner-title,
    .philosophy-heading {
        font-size: 1.85rem;
    }

    .store-thumb-img {
        width: 100px;
        height: 100px;
    }

    .store-title {
        font-size: 1.15rem;
    }

    .map-canvas-container {
        min-height: 350px;
    }

    .map-popup-card {
        width: 240px;
    }

    .locator-search-wrapper {
        padding: 4px 4px 4px 16px;
    }

    .btn-search-submit {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

/* ==========================================
   COFFEE BEANS PAGE CUSTOM DESIGN STYLES
   ========================================== */

/* --- Beans Filter Category Bar --- */
.beans-filter-wrapper {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 16px 24px;
    border: 1px solid #EFE4DB;
    box-shadow: 0 10px 30px rgba(60, 35, 23, 0.04);
}

.beans-filter-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    border-radius: 12px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.beans-filter-item:hover {
    background: #FAF3EE;
}

.beans-filter-icon {
    font-size: 1.4rem;
    color: #5C3D2E;
}

.beans-filter-title {
    font-weight: 700;
    font-size: 0.92rem;
    color: #3C2317;
    margin-bottom: 2px;
}

.beans-filter-sub {
    font-size: 0.76rem;
    color: #8C786C;
    margin-bottom: 0;
}

/* Help Expert Card */
.beans-help-card {
    background: #3C2317;
    color: #FFFFFF;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.beans-help-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.beans-help-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.btn-beans-chat {
    background: #FFFFFF;
    color: #3C2317;
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-beans-chat:hover {
    background: #FAF3EE;
    color: #5C3D2E;
}

/* --- Coffee Beans Product Cards --- */
.bean-product-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 15px;
    border: 1px solid #F3EAE3;
    box-shadow: 0 10px 30px rgba(60, 35, 23, 0.04);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bean-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(60, 35, 23, 0.08);
}

.bean-wishlist-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #FAF5F0;
    border: none;
    color: #7A6A61;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bean-wishlist-btn:hover {
    background: #3C2317;
    color: #FFFFFF;
}

.bean-product-img {
    height: 190px;
    object-fit: contain;
    margin-bottom: 16px;
    filter: drop-shadow(0 10px 20px rgba(60, 35, 23, 0.1));
}

.bean-roast-meter {
    font-size: 0.72rem;
    font-weight: 700;
    color: #8C786C;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.roast-dot-filled {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5C3D2E;
}

.roast-dot-empty {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #EFE4DB;
}

.bean-product-price {
    font-family: var(--heading-font);
    font-size: 1.6rem;
    color: #3C2317;
    margin-bottom: 16px;
}

.qty-counter-group {
    display: inline-flex;
    align-items: center;
    border: 1px solid #EFE6DE;
    border-radius: 50px;
    padding: 2px 10px;
    background: #FAF5F0;
    font-weight: 600;
    font-size: 0.85rem;
}

.qty-btn {
    border: none;
    background: transparent;
    color: #3C2317;
    padding: 2px 4px;
    cursor: pointer;
}

.btn-add-to-cart-bean {
    background-color: #3C2317;
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 6px 10px;
    font-weight: 500;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-add-to-cart-bean:hover {
    background-color: #5C3D2E;
    color: #FFFFFF;
}

/* --- Roasting Process Dark Banner --- */
.roasting-banner-card {
    background: #2C1810;
    color: #FFFFFF;
    border-radius: 28px;
    padding: 48px;
    box-shadow: 0 20px 50px rgba(44, 24, 16, 0.2);
    position: relative;
    overflow: hidden;
}

.roasting-banner-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.btn-roasting-process {
    background: #FFFFFF;
    color: #2C1810;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-roasting-process:hover {
    background: #FAF3EE;
    color: #5C3D2E;
}

.process-step-node {
    text-align: center;
    position: relative;
}

.process-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #D4B29D;
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
}

.process-step-title {
    font-size: 0.95rem;
    font-weight: 700;
    /* color: #FFFFFF; */
    margin-bottom: 4px;
}

.process-step-desc {
    font-size: 0.75rem;
    color: #B89B8A;
    margin-bottom: 0;
}

/* Trust Guarantee Strip */
.trust-strip-wrapper {
    background: #FAF4EF;
    border-radius: 20px;
    padding: 24px 32px;
    border: 1px solid #EFE4DB;
}

.trust-item-title {
    font-weight: 700;
    font-size: 0.88rem;
    color: #3C2317;
    margin-bottom: 2px;
}

.trust-item-desc {
    font-size: 0.78rem;
    color: #7A6A61;
    margin-bottom: 0;
}

/* ==========================================
   COFFEE PAGE CUSTOM DESIGN STYLES
   ========================================== */

/* Category Filter Pills */
.coffee-category-pill {
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #5C3D2E;
    background: #FFFFFF;
    border: 1px solid #EFE6DE;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.coffee-category-pill:hover,
.coffee-category-pill.active {
    background: #3C2317;
    color: #FFFFFF;
    border-color: #3C2317;
}

/* Craft Your Cup Custom Card */
.craft-cup-card {
    background: linear-gradient(135deg, #FAF2EC 0%, #F4ECE5 100%);
    border-radius: 28px;
    padding: 48px;
    border: 1px solid #EFE4DB;
    box-shadow: 0 15px 40px rgba(60, 35, 23, 0.04);
}

.craft-cup-title {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    color: #3C2317;
    line-height: 1.15;
    margin-bottom: 16px;
}

.btn-build-coffee {
    background-color: #3C2317;
    color: #FFFFFF;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-build-coffee:hover {
    background-color: #5C3D2E;
    color: #FFFFFF;
}

.customizer-step-card {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 20px 16px;
    text-align: center;
    border: 1px solid #F3EAE3;
    box-shadow: 0 8px 24px rgba(60, 35, 23, 0.03);
    height: 100%;
}

.customizer-step-num {
    font-size: 0.75rem;
    font-weight: 800;
    color: #8C786C;
    margin-bottom: 8px;
}

.customizer-step-icon {
    font-size: 1.5rem;
    color: #5C3D2E;
    margin-bottom: 10px;
}

.customizer-step-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #3C2317;
    margin-bottom: 4px;
}

.customizer-step-sub {
    font-size: 0.78rem;
    color: #7A6A61;
    margin-bottom: 0;
}

/* Testimonial Cards */
.coffee-testimonial-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #F3EAE3;
    box-shadow: 0 10px 30px rgba(60, 35, 23, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-stars {
    color: #EAB308;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.testimonial-quote {
    font-size: 0.88rem;
    color: #5C3D2E;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 18px;
}

.testimonial-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-user-name {
    font-size: 0.84rem;
    font-weight: 700;
    color: #3C2317;
    margin-bottom: 0;
}

.testimonial-user-tag {
    font-size: 0.72rem;
    color: #8C786C;
    margin-bottom: 0;
}

/* --- About Us - Our Promise Banner --- */
.about-promise-banner {
    background: #FAF1EB;
    border-radius: 28px;
    padding: 0;
    margin-top: 60px;
    margin-bottom: 80px;
    border: 1px solid #EFE4DB;
    box-shadow: 0 15px 40px rgba(60, 35, 23, 0.04);
    position: relative;
    overflow: visible;
    min-height: 250px;
    display: flex;
    align-items: center;
}

.about-promise-left-img {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 44%;
    object-fit: cover;
    border-top-left-radius: 28px;
    border-bottom-left-radius: 28px;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 78%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 78%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.about-promise-right-img {
    position: absolute;
    right: -105px;
    top: -38px;
    height: 130%;
    max-height: 400px;
    width: auto;
    object-fit: contain;
    pointer-events: none;
    z-index: 3;
}

.about-promise-center-content {
    position: relative;
    z-index: 2;
    padding: 36px 20px;
    width: 100%;
}

.promise-heading {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    color: #3C2317;
    line-height: 1.15;
    margin-bottom: 12px;
}

.promise-desc {
    font-size: 0.92rem;
    color: #6C5A50;
    line-height: 1.55;
    max-width: 480px;
}

.promise-grid-icon {
    font-size: 1.35rem;
    color: #5C3D2E;
}

.promise-grid-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #3C2317;
    margin-bottom: 0;
    line-height: 1.25;
}

@media (max-width: 991.98px) {
    .about-promise-banner {
        overflow: hidden;
        flex-direction: column;
    }

    .about-promise-left-img {
        position: relative;
        width: 100%;
        height: 220px;
        border-radius: 28px 28px 0 0;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .about-promise-right-img {
        display: none;
    }
}

/* --- Testimonials Section (Matching Image 2) --- */
.testimonials-section {
    padding: 60px 0 90px 0;
    position: relative;
}

.slider-wrapper-container {
    position: relative;
    padding: 0 65px;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #6C5446;
    background: #FAF5F0;
    color: #6C5446;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav-btn.prev-btn {
    left: 0;
}

.slider-nav-btn.next-btn {
    right: 0;
}


.slider-nav-btn:hover {
    background: #6C5446;
    color: #FFFFFF;
    box-shadow: 0 6px 18px rgba(108, 84, 70, 0.2);
}

.testimonial-card {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 28px 24px;
    border: 1px solid #F3EBE4;
    box-shadow: 0 10px 30px rgba(60, 35, 23, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    font-size: 0.92rem;
    color: #4A3326;
    line-height: 1.65;
    margin-bottom: 24px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #4A2E20;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.88rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #3C2317;
    margin-bottom: 2px;
}

.testimonial-role {
    font-size: 0.78rem;
    color: #8C786C;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .slider-wrapper-container {
        padding: 0 15px;
    }

    .slider-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 0.82rem;
    }

    .slider-nav-btn.prev-btn {
        left: -4px;
    }

    .slider-nav-btn.next-btn {
        right: -4px;
    }
}

/* ==========================================================================
   FRANCHISE PAGE STYLES (Matching Reference UI 100%)
   ========================================================================== */
.franchise-hero-section {
    padding: 130px 0 70px 0;
    background: linear-gradient(180deg, #FAF4EF 0%, #FAF0E8 100%);
    position: relative;
}

.franchise-hero-title {
    font-family: var(--heading-font);
    font-size: 3.4rem;
    font-weight: 700;
    color: #3C2317;
    line-height: 1.1;
    margin-bottom: 0;
}

.franchise-hero-subtitle {
    font-family: 'Caveat', cursive, serif;
    font-size: 4rem;
    color: #5C3D2E;
    line-height: 0.9;
    margin-bottom: 20px;
}

.franchise-hero-desc {
    font-size: 1.05rem;
    color: #7A685D;
    max-width: 480px;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-benefit-item {
    text-align: center;
    padding: 8px 6px;
}

.hero-benefit-icon {
    font-size: 1.4rem;
    color: #5C3D2E;
    margin-bottom: 8px;
}

.hero-benefit-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #3C2317;
    line-height: 1.3;
    margin-bottom: 0;
}

.hero-benefit-divider {
    border-right: 1px solid #EFE4DB;
}

.franchise-hero-banner-img {
    width: 100%;
    max-width: 580px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 40px rgba(60, 35, 23, 0.16));
    transform: scale(1.04);
}

/* --- Franchise Models Section --- */
.models-section {
    padding: 30px 0 60px 0;
}

.models-card-wrapper {
    background: #FFFFFF;
    border-radius: 28px;
    padding: 50px 40px;
    box-shadow: 0 15px 45px rgba(60, 35, 23, 0.04);
    border: 1px solid #FAF0E8;
    position: relative;
}

.model-card {
    background: #FAF6F2;
    border: 1px solid #EFE6DF;
    border-radius: 22px;
    padding: 36px 24px 30px 24px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(60, 35, 23, 0.08);
}

.model-card.featured-card {
    background: #FFFFFF;
    border: 2px solid #EAB308;
    box-shadow: 0 14px 40px rgba(234, 179, 8, 0.15);
    transform: translateY(-8px);
}

.model-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.badge-compact,
.badge-experiential {
    background: #F3EBE4;
    color: #7A685D;
}

.badge-popular {
    background: #EAB308;
    color: #FFFFFF;
}

.model-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #F7EFE9;
    color: #5C3D2E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 18px auto;
}

.featured-card .model-icon-circle {
    background: #FEF3C7;
    color: #D97706;
}

.model-title {
    font-family: var(--heading-font);
    font-size: 1.35rem;
    font-weight: 700;
    color: #3C2317;
    margin-bottom: 10px;
}

.model-desc {
    font-size: 0.88rem;
    color: #7A6A61;
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 52px;
}

.investment-pill {
    font-size: 1.25rem;
    font-weight: 800;
    color: #D97706;
    margin-bottom: 22px;
}

.model-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.model-checklist li {
    font-size: 0.88rem;
    color: #4A3326;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.model-checklist li i {
    color: #10B981;
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* --- Franchise Inquiry Form Section --- */
.inquiry-card-wrapper {
    background: #FFFFFF;
    border-radius: 28px;
    padding: 48px 40px;
    box-shadow: 0 15px 45px rgba(60, 35, 23, 0.04);
    border: 1px solid #FAF0E8;
    position: relative;
    margin-top: 50px;
    margin-bottom: 60px;
}

.inquiry-heading {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    font-weight: 700;
    color: #3C2317;
    margin-bottom: 8px;
}

.inquiry-subtext {
    font-size: 0.92rem;
    color: #7A685D;
    margin-bottom: 28px;
}

.form-label-custom {
    font-size: 0.85rem;
    font-weight: 700;
    color: #3C2317;
    margin-bottom: 6px;
    display: block;
}

.form-control-custom {
    background: #FAFAFA;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.92rem;
    color: #3C2317;
    width: 100%;
    transition: all 0.2s ease;
}

.form-control-custom:focus {
    background: #FFFFFF;
    border-color: #5C3D2E;
    outline: none;
    box-shadow: 0 0 0 3px rgba(92, 61, 46, 0.1);
}

.btn-submit-message {
    background: #3C2317;
    color: #FFFFFF;
    border: none;
    border-radius: 30px;
    padding: 14px 36px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(60, 35, 23, 0.2);
}

.btn-submit-message:hover {
    background: #5C3D2E;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(60, 35, 23, 0.3);
}

/* --- Why Partner Strip --- */
.why-partner-strip {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 28px 20px;
    border: 1px solid #FAF0E8;
    box-shadow: 0 10px 30px rgba(60, 35, 23, 0.03);
    margin-bottom: 60px;
}

/* --- Franchise CTA Banner --- */
.franchise-cta-banner {
    background: linear-gradient(135deg, #F5EAE1 0%, #EFE1D5 100%);
    border-radius: 28px;
    padding: 40px 50px;
    position: relative;
    overflow: hidden;
    margin-bottom: 70px;
    border: 1px solid #EAE0D5;
}

.cta-banner-heading {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    font-weight: 700;
    color: #3C2317;
    line-height: 1.25;
    margin-bottom: 0;
}

.btn-franchise-apply {
    background: #3C2317;
    color: #FFFFFF;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(60, 35, 23, 0.2);
}

.btn-franchise-apply:hover {
    background: #5C3D2E;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(60, 35, 23, 0.3);
}

/* ==========================================================================
   COFFEE BEANS PAGE - CUSTOM ROASTING PROCESS BANNER (IDENTICAL TO DESIGN)
   ========================================================================= */
.beans-roasting-banner {
    background: linear-gradient(135deg, #3C2216 0%, #200E07 100%);
    border-radius: 32px;
    padding: 50px 60px;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 60px rgba(32, 14, 7, 0.35);
}

.beans-roasting-details {
    flex: 0 0 28%;
    max-width: 320px;
    z-index: 2;
}

.beans-roasting-sub {
    font-size: 0.72rem;
    font-weight: 800;
    color: #D4B29D;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.beans-roasting-title {
    font-family: var(--heading-font);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.beans-roasting-text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin-bottom: 24px;
}

.btn-beans-roasting-cta {
    background: #FFFFFF;
    color: #3C2216;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-beans-roasting-cta:hover {
    background: #FAF3EE;
    color: #5C3D2E;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.beans-roasting-steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    max-width: 620px;
    margin-right: 140px;
    z-index: 2;
}

.beans-roasting-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 125px;
}

.beans-roasting-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4B29D;
    font-size: 1.3rem;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.beans-roasting-step:hover .beans-roasting-step-icon {
    background: rgba(212, 178, 157, 0.15);
    border-color: #D4B29D;
    color: #FFFFFF;
    transform: translateY(-3px);
}

.beans-roasting-step-badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.beans-roasting-step-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.beans-roasting-step-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
    margin: 0;
}

.beans-roasting-step-arrow {
    color: rgba(212, 178, 157, 0.35);
    font-size: 1rem;
    margin-bottom: 74px;
}

.beans-roasting-cup-img {
    position: absolute;
    right: -25px;
    top: 80%;
    transform: translateY(-50%);
    height: calc(100% + 50px);
    width: auto;
    max-height: 200px;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.45));
    pointer-events: none;
    z-index: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.beans-roasting-banner:hover .beans-roasting-cup-img {
    transform: translateY(-52%) scale(1.03) rotate(2deg);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .beans-roasting-banner {
        padding: 20px;
    }

    .beans-roasting-steps-container {
        margin-right: 90px;
        max-width: 520px;
    }

    .beans-roasting-step {
        width: 110px;
    }

    .beans-roasting-cup-img {
        right: -70px;
        max-height: 200px;
    }
}

@media (max-width: 992px) {
    .beans-roasting-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        padding: 45px 35px;
        overflow: hidden;
    }

    .beans-roasting-details {
        width: 100%;
        max-width: none;
    }

    .beans-roasting-steps-container {
        width: 100%;
        max-width: none;
        margin-right: 0;
    }

    .beans-roasting-cup-img {
        position: relative;
        right: auto;
        top: auto;
        transform: none !important;
        height: 220px;
        max-height: 220px;
        margin: 10px auto 0 auto;
        display: block;
    }

    .beans-roasting-banner:hover .beans-roasting-cup-img {
        transform: scale(1.05) !important;
    }
}

@media (max-width: 576px) {
    .beans-roasting-banner {
        padding: 35px 25px;
    }

    .beans-roasting-steps-container {
        flex-direction: column;
        gap: 24px;
    }

    .beans-roasting-step {
        width: 100%;
    }

    .beans-roasting-step-arrow {
        transform: rotate(90deg);
        margin: 5px 0;
    }
}

.sp_qYtR2jXevE_ {
    display: none !important;
}

.WatchOnInstagram {
    display: none !important;

}

/* Instagram Mockup in Phone Shell Styles */
.insta-mockup-wrapper {
    position: relative;
    width: 320px;
    height: 512px;
    margin: 0 auto;
    border-radius: 40px;
    background-color: transparent;
}

.insta-mockup-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.insta-screen {
    position: absolute;
    /* Fits precisely inside the transparent screen window of mobile.png */
    top: 5%;
    left: 14%;
    width: 72.7%;
    height: 90%;
    background-color: #000000;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
    box-sizing: border-box;
}

/* Status Bar */
.insta-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px 2px 18px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: -0.1px;
    background-color: #000000;
    z-index: 5;
    color: #ffffff;
}

.insta-status-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.insta-status-icons i {
    font-size: 0.65rem;
}

/* Instagram Header */
.insta-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-bottom: 1px solid #1a1a1a;
    background-color: #000000;
    z-index: 5;
}

.insta-back-btn,
.insta-header-icons {
    font-size: 0.9rem;
    cursor: pointer;
    color: #ffffff;
}

.insta-username {
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.verified-badge {
    color: #0095f6;
    font-size: 0.75rem;
}

/* Instagram Body (Scrollable) */
.insta-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
    box-sizing: border-box;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.insta-body::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

/* Profile Info */
.insta-profile-info {
    padding: 0 12px;
}

.insta-avatar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.insta-avatar-container {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insta-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #000000;
}

.insta-stats {
    display: flex;
    gap: 12px;
    flex-grow: 1;
    justify-content: space-around;
    padding-left: 10px;
}

.insta-stat-item {
    text-align: center;
}

.insta-stat-num {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
}

.insta-stat-lbl {
    font-size: 0.65rem;
    color: #a8a8a8;
}

.insta-bio {
    margin-bottom: 12px;
    font-size: 0.75rem;
    line-height: 1.35;
}

.insta-display-name {
    font-size: 0.8rem;
    font-weight: 700;
    margin: 0 0 2px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    color: #ffffff !important;
}

.insta-bio-text {
    margin: 0;
    color: #f5f5f5 !important;
}

.insta-website-link {
    color: #3897f0 !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    text-decoration: none;
}

.insta-website-link:hover {
    text-decoration: underline;
}

/* Action Buttons */
.insta-actions {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}

.insta-btn {
    flex: 1;
    background-color: #262626;
    color: #ffffff !important;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    padding: 6px 0;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease;
    border: none;
    line-height: 1.5;
}

.insta-btn:hover {
    background-color: #363636;
}

.insta-btn-primary {
    background-color: #0095f6;
}

.insta-btn-primary:hover {
    background-color: #1877f2;
}

.insta-btn-icon {
    background-color: #262626;
    color: #ffffff !important;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
}

.insta-btn-icon:hover {
    background-color: #363636;
}

/* Highlights */
.insta-highlights {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 12px 10px 12px;
    margin-bottom: 8px;
    border-bottom: 1px solid #1a1a1a;
    scrollbar-width: none;
}

.insta-highlights::-webkit-scrollbar {
    display: none;
}

.insta-highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    cursor: pointer;
}

.insta-highlight-ring {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #363636;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    background-color: #000000;
}

.insta-highlight-ring img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.insta-highlight-item span {
    font-size: 0.6rem;
    color: #f5f5f5;
    max-width: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Feed Tabs */
.insta-tabs {
    display: flex;
    border-bottom: 1px solid #1a1a1a;
}

.insta-tab {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    color: #a8a8a8;
    cursor: pointer;
    font-size: 0.85rem;
    border-bottom: 1px solid transparent;
}

.insta-tab.active {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

/* Feed Grid */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background-color: #000000;
}

.insta-grid-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    display: block;
}

.insta-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insta-grid-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.insta-grid-item:hover .insta-grid-overlay {
    opacity: 1;
}

.insta-grid-overlay i {
    margin-right: 3px;
}

@media (max-width: 360px) {
    .insta-mockup-wrapper {
        transform: scale(0.9);
        transform-origin: center top;
        margin-bottom: -50px;
    }
}

/* Styles for live Instagram embeds inside mockup */
.insta-follow-link-badge {
    background-color: #0095f6;
    color: #ffffff !important;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-decoration: none;
    line-height: 1.5;
    transition: background-color 0.2s ease;
}

.insta-follow-link-badge:hover {
    background-color: #1877f2;
    color: #ffffff !important;
}

/* Instagram Post Card Styles (Static Feed) */
.insta-post-card {
    background-color: #000000;
    border-bottom: 1px solid #1a1a1a;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
    text-decoration: none;
    color: inherit;
}

.insta-post-card:hover {
    color: inherit;
}

.insta-post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
}

.insta-post-user-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.insta-post-user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #262626;
}

.insta-post-user-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 3px;
}

.insta-post-header i {
    font-size: 0.75rem;
    color: #a8a8a8;
}

.insta-post-media {
    width: 100%;
    background-color: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.insta-post-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.insta-post-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px 4px 10px;
    color: #ffffff;
}

.insta-post-actions-left {
    display: flex;
    gap: 12px;
}

.insta-post-actions i {
    font-size: 0.9rem;
}

.insta-post-details {
    padding: 0 10px 10px 10px;
    font-size: 0.7rem;
    line-height: 1.35;
}

.insta-post-likes {
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 2px;
}

.insta-post-caption {
    margin: 0 0 4px 0;
    color: #f5f5f5 !important;
    text-align: left;
}

.insta-post-caption strong {
    color: #ffffff;
    margin-right: 4px;
}

.insta-post-time {
    font-size: 0.6rem;
    color: #a8a8a8;
    text-transform: uppercase;
    display: block;
    text-align: left;
}

/* --- Custom Thank You Modal --- */
.thank-you-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    /* Higher than sticky navbar */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(60, 35, 23, 0.45);
    /* Light overlay with brown tint */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thank-you-modal.show {
    display: flex;
    opacity: 1;
}

.thank-you-modal-content {
    background-color: #FAF5F0;
    /* Soft cream/beige matching theme */
    margin: auto;
    padding: 35px 30px;
    border: 1px solid #EFE4DB;
    border-radius: 24px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(60, 35, 23, 0.18);
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.thank-you-modal.show .thank-you-modal-content {
    transform: scale(1);
}

.thank-you-close-btn {
    position: absolute;
    right: 18px;
    top: 12px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #8C786C;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.thank-you-close-btn:hover {
    color: #3C2317;
}

.thank-you-icon {
    font-size: 3.8rem;
    color: #8C786C;
    /* Brand secondary color */
    margin-bottom: 15px;
    animation: scaleUpCounter 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.thank-you-title {
    font-family: var(--heading-font);
    color: #3C2317;
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.thank-you-message {
    color: #6C5A50;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

@keyframes scaleUpCounter {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

/* ==========================================
   EXTRA RESPONISVENESS UP TO 320PX BREAKPOINTS
   ========================================== */

@media (max-width: 480px) {

    /* Headings & Subtitles */
    .about-hero-title,
    .contact-hero-title,
    .franchise-hero-title {
        font-size: 2.1rem !important;
    }

    .about-hero-badge {
        font-size: 1.8rem !important;
    }

    .hero-subtitle {
        font-size: 1.4rem !important;
        line-height: 1.2 !important;
    }

    /* Padding Adjustments */
    .about-hero-section,
    .contact-hero-section,
    .franchise-hero-section,
    .page-banner-hero {
        padding: 90px 0 30px 0 !important;
    }

    .craft-cup-card,
    .promise-card-wrapper {
        padding: 24px !important;
        border-radius: 20px !important;
    }

    .craft-cup-title,
    .promise-heading {
        font-size: 2.0rem !important;
    }

    /* Form elements */
    .contact-card,
    .franchise-inquiry-card {
        padding: 24px !important;
        border-radius: 20px !important;
    }
}

@media (max-width: 360px) {
    /* Tiny screens (down to 320px) support */

    /* Layout & container fixes */

    /* Navbar brand scaling */
    .navbar-brand img {
        height: 32px !important;
    }

    .navbar-toggler {
        padding: 4px 6px !important;
    }

    .navbar-toggler i {
        font-size: 1.35rem !important;
    }

    /* Text elements scaling */
    .hero-title {
        font-size: 2.1rem !important;
    }

    .hero-subtitle {
        font-size: 1.25rem !important;
    }

    .hero-desc {
        font-size: 0.88rem !important;
        margin-bottom: 20px !important;
    }

    .about-hero-title,
    .contact-hero-title,
    .franchise-hero-title {
        font-size: 1.8rem !important;
    }

    .about-hero-badge {
        font-size: 1.6rem !important;
    }

    .about-hero-desc,
    .contact-hero-desc,
    .franchise-hero-desc {
        font-size: 0.88rem !important;
    }

    /* Buttons layout */
    .hero-buttons {
        gap: 10px !important;
    }

    .btn-coffee-primary,
    .btn-coffee-outline,
    .btn-hero-story,
    .btn-get-directions {
        padding: 10px 20px !important;
        font-size: 0.88rem !important;
        text-align: center;
    }

    /* 3D stage scaling to prevent overflow */
    .shop-3d-slideshow-container {
        height: 320px !important;
    }

    .shop-3d-slider-stage,
    .shop-3d-card {
        width: 250px !important;
        height: 250px !important;
    }

    /* Orbital showcase custom scaling for 320px */
    #orbital-showcase-section {
        --radius: 120px !important;
    }

    /* .orbital-item {
        width: 70px !important;
        height: 140px !important;
    } */

    .orbital-title {
        font-size: 1.35rem !important;
    }

    /* Instagram mockup extra scaling */
    .insta-mockup-wrapper {
        transform: scale(0.8) !important;
        margin-bottom: -70px !important;
    }

    /* Store Locator Search bar scaling */
    .locator-search-wrapper {
        padding: 4px 4px 4px 10px !important;
    }

    .locator-search-input {
        font-size: 0.85rem !important;
    }

    .btn-search-submit {
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
    }

    .locator-search-wrapper i.fa-location-dot {
        font-size: 0.9rem !important;
        margin-right: 8px !important;
    }
}

@media (max-width:480px) {
    .page-contact-section {
        padding: 0 !important;
    }

    .contact-features-strip {
        margin: 0 !important;
    }

    .hero-main-cup-4 {
        display: none;
    }

    .franchise-image {
        width: 50% !important;

    }

    .about-hero-composition {
        display: none;
    }

    .bg-image-2 {
        transform: translate(-50%, -70%) !important;
    }

    .btn-coffee-primary,
    .btn-coffee-outline,
    .btn-hero-story,
    .btn-get-directions {
        text-align: center;
    }
}

@media (min-width:320px) and (max-width:382px) {
    .hero-title {
        font-size: 2rem !important;
    }

    .hero-image-container {
        height: 300px;
        margin-top: 0;
    }

    .hero-cup-img {
        max-width: 100%;
    }

    .hero-section {
        padding: 120px 0 30px 0;
    }

    .weekend-specials-section {
        padding: 30px 0;
    }

    #about-section {
        padding: 30px 0;

    }

    .hero-buttons {
        margin-bottom: 50px;
    }

    .hover-reveal-text span {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .banner-card {
        padding: 15px;
    }

    .beans-help-card {
        flex-wrap: wrap;
    }

    .hero-main-cup-4 {
        display: none;
    }



}

@media (min-width:481px) and (max-width:768px) {
    .about-hero-composition {
        display: none;
    }

    .hero-main-cup {
        display: none;
    }

    .hero-main-cup-4 {
        display: none;
    }

    .contact-hero-banner-img {
        display: none;
    }

    .custom-flex-wrap {
        flex-wrap: wrap;
        justify-content: center;
    }

    .trust-item-title {
        text-align: center;
    }

    .trust-item-desc {
        text-align: center;
    }

    .crafted-stamp-badge {
        display: none;
    }

    .testimonial-badge {
        max-width: 100% !important;
    }

}

@media (min-width:992px) and (max-width:1024px) {
    .hero-main-cup-4 {
        max-height: 450px;
    }

    .hero-main-cup-3 {
        max-height: 450px;

    }

    .beans-help-card {
        flex-wrap: wrap;
    }

    .beans-filter-item {
        flex-wrap: wrap;
        justify-content: center;
    }

    .beans-roasting-title {
        font-size: 1.9rem;
    }

}

@media (min-width:768px) and (max-width:992px) {
    .hero-main-cup-4 {
        display: none;
    }

    .about-hero-image {
        display: none;
    }

    .franchise-image {
        max-width: 300px;
    }

    .beans-roasting-cup-img {
        position: absolute;
        right: -20px;
        top: 0;
    }

}

.franchise-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(60, 35, 23, 0.14));


}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.bg-image-2 {
    top: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-65%, -50%)
}

.bg-image-3 {
    top: 50%;
    position: absolute;
    left: 15%;
    transform: translate(-65%, -50%);
    z-index: 9999;
}

.bg-image-4 {
    top: 0%;
    position: absolute;
    right: 0%;
}