/* ============================================================
   FRESH CRUNCHY - Premium Luxury Stylesheet
   Premium Handmade Chocolates & Dry Fruits
   ============================================================ */

/* === CSS VARIABLES === */
:root {
    --fc-chocolate: #3C1A0B;
    --fc-chocolate-dark: #2C1206;
    --fc-chocolate-medium: #5C2E14;
    --fc-gold: #C9A96E;
    --fc-gold-light: #E0C89A;
    --fc-gold-dark: #A8873F;
    --fc-cream: #FFF8F0;
    --fc-cream-dark: #F5EDE3;
    --fc-white: #FFFFFF;
    --fc-text-dark: #2C1810;
    --fc-text-medium: #6B5444;
    --fc-text-light: #8B7355;
    --fc-border: #E8DDD0;
    --fc-success: #2E7D32;
    --fc-whatsapp: #25D366;
    --fc-whatsapp-dark: #128C7E;
    --fc-shadow-sm: 0 2px 8px rgba(60, 26, 11, 0.08);
    --fc-shadow-md: 0 8px 25px rgba(60, 26, 11, 0.12);
    --fc-shadow-lg: 0 15px 45px rgba(60, 26, 11, 0.15);
    --fc-shadow-xl: 0 25px 60px rgba(60, 26, 11, 0.2);
    --fc-radius-sm: 8px;
    --fc-radius-md: 14px;
    --fc-radius-lg: 20px;
    --fc-radius-xl: 28px;
    --fc-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --fc-transition-fast: all 0.25s ease;
}

/* === BASE RESET & TYPOGRAPHY === */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--fc-text-dark);
    background-color: var(--fc-cream);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.fc-page-wrap {
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6, .fc-heading {
    font-family: 'Playfair Display', serif;
    color: var(--fc-chocolate);
    line-height: 1.3;
}

a {
    color: var(--fc-chocolate);
    text-decoration: none;
    transition: var(--fc-transition-fast);
}

a:hover {
    color: var(--fc-gold);
}

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

/* === PREMIUM SECTION SPACING === */
.fc-section {
    padding: 80px 0;
}

.fc-section-lg {
    padding: 100px 0;
}

.fc-section-dark {
    background-color: var(--fc-chocolate);
    color: var(--fc-white);
}

.fc-section-dark h1,
.fc-section-dark h2,
.fc-section-dark h3,
.fc-section-dark h4 {
    color: var(--fc-white);
}

.fc-section-cream {
    background-color: var(--fc-cream);
}

.fc-section-white {
    background-color: var(--fc-white);
}

/* === PREMIUM SECTION HEADERS === */
.fc-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.fc-section-header .fc-subtitle {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--fc-gold);
    margin-bottom: 12px;
    position: relative;
    padding: 0 20px;
}

.fc-section-header .fc-subtitle::before,
.fc-section-header .fc-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--fc-gold);
}

.fc-section-header .fc-subtitle::before { left: -20px; }
.fc-section-header .fc-subtitle::after { right: -20px; }

.fc-section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.fc-section-header p {
    font-size: 17px;
    color: var(--fc-text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.fc-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--fc-gold-dark), var(--fc-gold), var(--fc-gold-dark));
    margin: 16px auto 0;
    border-radius: 2px;
}

/* === PREMIUM BUTTONS === */
.fc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--fc-radius-sm);
    cursor: pointer;
    transition: var(--fc-transition);
    text-decoration: none;
    line-height: 1;
}

.fc-btn i {
    font-size: 16px;
    transition: var(--fc-transition);
}

.fc-btn-primary {
    background: linear-gradient(135deg, var(--fc-gold-dark), var(--fc-gold));
    color: var(--fc-chocolate-dark);
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.35);
}

.fc-btn-primary:hover {
    background: linear-gradient(135deg, var(--fc-gold), var(--fc-gold-light));
    color: var(--fc-chocolate-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.45);
}

.fc-btn-outline {
    background: transparent;
    color: var(--fc-gold);
    border: 2px solid var(--fc-gold);
}

.fc-btn-outline:hover {
    background: var(--fc-gold);
    color: var(--fc-chocolate-dark);
    transform: translateY(-2px);
}

.fc-btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.fc-btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.fc-btn-dark {
    background: var(--fc-chocolate);
    color: var(--fc-gold-light);
}

.fc-btn-dark:hover {
    background: var(--fc-chocolate-dark);
    color: var(--fc-gold);
    transform: translateY(-2px);
}

.fc-btn-white {
    background: var(--fc-white);
    color: var(--fc-chocolate);
}

.fc-btn-white:hover {
    background: var(--fc-cream);
    transform: translateY(-2px);
}

.fc-btn-lg {
    padding: 18px 42px;
    font-size: 15px;
}

.fc-btn-sm {
    padding: 10px 22px;
    font-size: 12px;
}

/* === NAVIGATION === */
.fc-top-bar {
    background: var(--fc-chocolate-dark);
    color: var(--fc-gold-light);
    padding: 8px 0;
    font-size: 13px;
    display: flex;
    align-items: center;
}

.fc-top-bar a {
    color: var(--fc-gold-light);
    transition: var(--fc-transition-fast);
}

.fc-top-bar a:hover {
    color: var(--fc-gold);
}

.fc-top-bar .fc-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 20px;
    line-height: 1;
}

.fc-top-bar .fc-contact-item i {
    color: var(--fc-gold);
    font-size: 12px;
}

.fc-top-bar-social {
    text-align: right;
}

.fc-navbar {
    background: var(--fc-white);
    box-shadow: 0 2px 20px rgba(60, 26, 11, 0.08);
    padding: 0;
    transition: var(--fc-transition);
    position: sticky;
    top: 0;
    z-index: 99999 !important;
}

.fc-navbar.scrolled {
    box-shadow: 0 4px 30px rgba(60, 26, 11, 0.12);
}

.fc-navbar .navbar-brand img {
    height: 55px;
    transition: var(--fc-transition);
}

.fc-navbar .navbar-item {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--fc-text-dark);
    padding: 12px 16px;
    transition: var(--fc-transition-fast);
    position: relative;
}

.fc-navbar .navbar-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--fc-gold);
    transition: var(--fc-transition);
}

.fc-navbar .navbar-item:hover::after,
.fc-navbar .navbar-item.is-active::after {
    width: 70%;
}

.fc-navbar .navbar-item:hover {
    color: var(--fc-gold-dark);
    background: transparent;
}

/* === DROPDOWN FIX: extend hover area + force high z-index === */
.fc-navbar .container {
    overflow: visible !important;
}
.fc-navbar .navbar-item.has-dropdown.is-hoverable {
    padding-bottom: 13px;
}
.fc-navbar .navbar-menu {
    overflow: visible !important;
}
.fc-navbar .navbar-dropdown {
    z-index: 99999 !important;
    background: var(--fc-white);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 8px;
    padding: 8px 0;
}
.fc-navbar .navbar-dropdown.is-boxed {
    top: calc(100% - 4px);
    z-index: 99999 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
}
.fc-navbar .navbar-item.has-dropdown.is-hoverable:hover .navbar-dropdown.is-boxed,
.fc-navbar .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-dropdown.is-boxed {
    display: block !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0);
}
.fc-navbar .navbar-item.has-dropdown.fc-dropdown-open .navbar-dropdown.is-boxed {
    display: block !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0);
}
.fc-navbar .navbar-dropdown .navbar-item {
    padding: 8px 20px;
    font-size: 13px;
}
.fc-navbar .navbar-dropdown .navbar-item:hover {
    background: rgba(201,169,110,.08);
    color: var(--fc-gold-dark);
}

.fc-nav-cta {
    background: linear-gradient(135deg, var(--fc-gold-dark), var(--fc-gold)) !important;
    color: var(--fc-chocolate-dark) !important;
    border-radius: var(--fc-radius-sm) !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    box-shadow: 0 3px 12px rgba(201, 169, 110, 0.3);
}

.fc-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(201, 169, 110, 0.4);
}

/* Burger menu styling */
.navbar-burger span {
    background-color: var(--fc-chocolate) !important;
    height: 2px !important;
    width: 22px !important;
}

/* === NEW PREMIUM HERO SECTION === */
.fc-hero-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(135deg, #1a0d04 0%, #2C1206 30%, #3C1A0B 60%, #2a1508 100%);
}

.fc-hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.fc-hero-particles .particle {
    position: absolute;
    border-radius: 50%;
    background: var(--fc-gold);
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

.fc-floating-items {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.fc-float-item {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 2px solid rgba(201, 169, 110, 0.2);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.fc-float-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fc-float-1 {
    width: 140px; height: 140px;
    top: 10%; right: 8%;
    animation: fcFloat1 8s infinite;
}

.fc-float-2 {
    width: 100px; height: 100px;
    top: 55%; right: 3%;
    border-radius: 50%;
    animation: fcFloat2 10s infinite;
}

.fc-float-3 {
    width: 120px; height: 120px;
    bottom: 15%; right: 12%;
    animation: fcFloat3 7s infinite;
}

.fc-float-4 {
    width: 90px; height: 90px;
    top: 20%; right: 25%;
    border-radius: 50%;
    animation: fcFloat4 9s infinite;
}

.fc-float-5 {
    width: 80px; height: 80px;
    bottom: 30%; right: 22%;
    border-radius: 50%;
    animation: fcFloat5 11s infinite;
}

@keyframes fcFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(-15px, -20px) rotate(5deg) scale(1.05); }
    50% { transform: translate(-5px, -35px) rotate(-3deg) scale(1); }
    75% { transform: translate(-20px, -15px) rotate(7deg) scale(1.03); }
}

@keyframes fcFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-20px, -25px) scale(1.08); }
    66% { transform: translate(-10px, -40px) scale(0.95); }
}

@keyframes fcFloat3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-25px, -30px) rotate(10deg); }
}

@keyframes fcFloat4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-15px, -20px) scale(1.1); }
}

@keyframes fcFloat5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-10px, -15px) rotate(-5deg); }
    66% { transform: translate(-20px, -10px) rotate(5deg); }
}

.fc-hero-bg-collage {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.fc-hero-bg-img {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0.15;
}

.fc-hero-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fc-hero-bg-1 {
    width: 500px; height: 500px;
    top: -100px; right: -100px;
    transform: rotate(15deg);
    animation: bgFloat1 15s ease-in-out infinite;
}

.fc-hero-bg-2 {
    width: 350px; height: 350px;
    bottom: -50px; left: 60%;
    transform: rotate(-10deg);
    animation: bgFloat2 18s ease-in-out infinite;
}

.fc-hero-bg-3 {
    width: 300px; height: 300px;
    top: 40%; right: 5%;
    border-radius: 50%;
    animation: bgFloat3 12s ease-in-out infinite;
}

@keyframes bgFloat1 {
    0%, 100% { transform: rotate(15deg) translate(0, 0); }
    50% { transform: rotate(20deg) translate(-30px, -20px); }
}

@keyframes bgFloat2 {
    0%, 100% { transform: rotate(-10deg) translate(0, 0); }
    50% { transform: rotate(-5deg) translate(20px, -15px); }
}

@keyframes bgFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -20px); }
}

.fc-hero-overlay-new {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,13,4,0.95) 0%, rgba(44,18,6,0.85) 30%, rgba(60,26,11,0.70) 60%, rgba(44,18,6,0.80) 100%);
    z-index: 3;
}

.fc-hero-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201,169,110,0.03), transparent);
    z-index: 4;
    animation: heroShine 6s ease-in-out infinite;
}

@keyframes heroShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.fc-hero-new-content {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    padding: 60px 0;
}

.fc-hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 169, 110, 0.12);
    border: 1px solid rgba(201, 169, 110, 0.25);
    color: var(--fc-gold);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.fc-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--fc-gold);
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.fc-hero-title-new {
    font-size: 62px;
    font-weight: 800;
    color: var(--fc-white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.fc-gold-text {
    color: var(--fc-gold);
    font-style: italic;
    position: relative;
}

.fc-gold-text::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--fc-gold), transparent);
    border-radius: 2px;
}

.fc-hero-desc-new {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 500px;
}

.fc-hero-buttons-new {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.fc-hero-stats-new {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.fc-stat-item {
    text-align: center;
}

.fc-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--fc-gold);
    line-height: 1;
    display: inline;
}

.fc-stat-suffix {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--fc-gold);
    display: inline;
}

.fc-stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.fc-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(201, 169, 110, 0.3);
}

/* Hero visual side */
.fc-hero-visual-side {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fc-hero-main-image {
    position: relative;
    width: 420px;
    height: 420px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    border: 3px solid rgba(201, 169, 110, 0.2);
    animation: heroImageFloat 6s ease-in-out infinite;
}

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

.fc-hero-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fc-hero-img-glow {
    position: absolute;
    inset: -3px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(201,169,110,0.3), transparent, rgba(201,169,110,0.3));
    z-index: -1;
    filter: blur(20px);
    opacity: 0.5;
}

.fc-hero-floating-badge {
    position: absolute;
    background: rgba(44, 18, 6, 0.9);
    border: 1px solid rgba(201, 169, 110, 0.3);
    backdrop-filter: blur(10px);
    color: var(--fc-gold);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    white-space: nowrap;
}

.fc-hero-floating-badge i {
    font-size: 16px;
}

.fc-float-anim-1 {
    top: 15%;
    right: -10px;
    animation: badgeBobble1 4s ease-in-out infinite;
}

.fc-float-anim-2 {
    bottom: 15%;
    left: -10px;
    animation: badgeBobble2 5s ease-in-out infinite;
}

@keyframes badgeBobble1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(8px, -12px); }
}

@keyframes badgeBobble2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-8px, -10px); }
}

/* Scroll indicator */
.fc-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.fc-scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(201,169,110,0.4);
    border-radius: 12px;
    position: relative;
}

.fc-scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--fc-gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

.fc-scroll-indicator span {
    font-size: 10px;
    color: rgba(201,169,110,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* === MARQUEE === */
.fc-marquee-section {
    background: var(--fc-chocolate-dark);
    padding: 14px 0;
    overflow: hidden;
    border-top: 1px solid rgba(201,169,110,0.15);
    border-bottom: 1px solid rgba(201,169,110,0.15);
}

.fc-marquee {
    width: 100%;
    overflow: hidden;
}

.fc-marquee-track {
    display: flex;
    gap: 60px;
    animation: marqueeScroll 20s linear infinite;
    white-space: nowrap;
}

.fc-marquee-track span {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--fc-gold);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.fc-marquee-track span i {
    font-size: 8px;
    color: var(--fc-gold-dark);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Category count badge */
.fc-category-count {
    display: inline-block;
    background: rgba(201,169,110,0.2);
    color: var(--fc-gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .fc-hero-new-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 80px 0 40px;
        text-align: center;
        justify-items: center;
    }

    .fc-hero-title-new {
        font-size: 38px;
    }

    .fc-hero-visual-side {
        order: -1;
    }

    .fc-hero-main-image {
        width: 280px;
        height: 280px;
    }

    .fc-hero-floating-badge {
        font-size: 11px;
        padding: 8px 14px;
    }

    .fc-float-item { display: none; }

    .fc-hero-stats-new {
        gap: 16px;
    }

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

    .fc-hero-desc-new {
        max-width: 100%;
    }

    .fc-hero-badge-new {
        margin-left: auto;
        margin-right: auto;
    }

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

    .fc-stat-number {
        font-size: 28px;
    }

    .fc-scroll-indicator {
        display: none;
    }
}

/* === PRODUCT CARDS === */
.fc-product-card {
    background: var(--fc-white);
    border-radius: var(--fc-radius-lg);
    overflow: hidden;
    box-shadow: var(--fc-shadow-sm);
    transition: var(--fc-transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.fc-product-card-image {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    background: var(--fc-cream-dark);
}

.fc-product-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fc-product-card:hover .fc-product-card-image img {
    transform: scale(1.08);
}

.fc-product-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--fc-gold);
    color: var(--fc-chocolate-dark);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

.fc-product-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fc-product-card-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fc-gold-dark);
    margin-bottom: 8px;
}

.fc-product-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--fc-chocolate);
    margin-bottom: 10px;
    line-height: 1.3;
}

.fc-product-card-desc {
    font-size: 14px;
    color: var(--fc-text-medium);
    margin-bottom: 16px;
    line-height: 1.6;
    flex: 1;
}

.fc-product-card-price {
    font-size: 14px;
    color: var(--fc-text-light);
    margin-bottom: 16px;
}

.fc-product-card-price strong {
    font-size: 22px;
    color: var(--fc-chocolate);
    font-weight: 700;
}

.fc-product-card-actions {
    display: flex;
    gap: 10px;
}

.fc-product-card-actions .fc-btn {
    flex: 1;
    font-size: 11px;
    padding: 10px 12px;
    text-align: center;
}

/* === FEATURE CARDS === */
.fc-feature-card {
    background: var(--fc-white);
    border-radius: var(--fc-radius-md);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--fc-shadow-sm);
    transition: var(--fc-transition);
    height: 100%;
}

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

.fc-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), rgba(201, 169, 110, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--fc-gold-dark);
    transition: var(--fc-transition);
}

.fc-feature-card:hover .fc-feature-icon {
    background: linear-gradient(135deg, var(--fc-gold-dark), var(--fc-gold));
    color: var(--fc-white);
    transform: scale(1.1);
}

.fc-feature-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.fc-feature-card p {
    font-size: 14px;
    color: var(--fc-text-medium);
    line-height: 1.6;
}

/* === CATEGORY CARDS === */
.fc-category-card {
    position: relative;
    border-radius: var(--fc-radius-lg);
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: flex-end;
    box-shadow: var(--fc-shadow-md);
    transition: var(--fc-transition);
    text-decoration: none;
}

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

.fc-category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.fc-category-card:hover img {
    transform: scale(1.06);
}

.fc-category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 18, 6, 0.90) 0%, transparent 60%);
    z-index: 1;
}

.fc-category-card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    width: 100%;
}

.fc-category-card-content h3 {
    color: var(--fc-white);
    font-size: 24px;
    margin-bottom: 6px;
}

.fc-category-card-content p {
    color: var(--fc-gold-light);
    font-size: 14px;
    margin-bottom: 12px;
}

.fc-category-card-content .fc-link {
    color: var(--fc-gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.fc-category-card-content .fc-link i {
    transition: var(--fc-transition);
}

.fc-category-card:hover .fc-link i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .fc-category-card {
        height: 300px;
    }
}

/* === TESTIMONIALS === */
.fc-testimonial-card {
    background: var(--fc-white);
    border-radius: var(--fc-radius-lg);
    padding: 36px;
    box-shadow: var(--fc-shadow-sm);
    transition: var(--fc-transition);
    position: relative;
}

.fc-testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    font-family: 'Playfair Display', serif;
    color: var(--fc-gold);
    opacity: 0.2;
    line-height: 1;
}

.fc-testimonial-card:hover {
    box-shadow: var(--fc-shadow-lg);
}

.fc-testimonial-stars {
    color: var(--fc-gold);
    font-size: 16px;
    margin-bottom: 16px;
}

.fc-testimonial-text {
    font-size: 15px;
    color: var(--fc-text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.fc-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fc-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fc-gold-dark), var(--fc-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fc-white);
    font-weight: 700;
    font-size: 18px;
}

.fc-testimonial-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--fc-chocolate);
}

.fc-testimonial-role {
    font-size: 13px;
    color: var(--fc-text-light);
}

/* === GALLERY === */
.fc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.fc-gallery-item {
    position: relative;
    border-radius: var(--fc-radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: var(--fc-shadow-sm);
}

.fc-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fc-gallery-item:hover img {
    transform: scale(1.08);
}

.fc-gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(60, 26, 11, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--fc-transition);
}

.fc-gallery-item:hover .fc-gallery-item-overlay {
    opacity: 1;
}

.fc-gallery-item-overlay i {
    color: var(--fc-gold);
    font-size: 28px;
}

@media (max-width: 768px) {
    .fc-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === FAQ === */
.fc-faq-item {
    background: var(--fc-white);
    border-radius: var(--fc-radius-md);
    margin-bottom: 12px;
    box-shadow: var(--fc-shadow-sm);
    overflow: hidden;
}

.fc-faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--fc-transition-fast);
    font-weight: 600;
    font-size: 15px;
    color: var(--fc-chocolate);
}

.fc-faq-question:hover {
    background: var(--fc-cream);
}

.fc-faq-question i {
    color: var(--fc-gold);
    font-size: 14px;
    transition: var(--fc-transition);
}

.fc-faq-item.active .fc-faq-question i {
    transform: rotate(180deg);
}

.fc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.fc-faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--fc-text-medium);
    line-height: 1.8;
}

.fc-faq-item.active .fc-faq-answer {
    max-height: 300px;
}

/* === CONTACT === */
.fc-contact-card {
    background: var(--fc-white);
    border-radius: var(--fc-radius-md);
    padding: 30px;
    text-align: center;
    box-shadow: var(--fc-shadow-sm);
    transition: var(--fc-transition);
    height: 100%;
}

.fc-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--fc-shadow-md);
}

.fc-contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), rgba(201, 169, 110, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--fc-gold-dark);
}

.fc-contact-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.fc-contact-card p {
    font-size: 14px;
    color: var(--fc-text-medium);
}

/* === FORM STYLES === */
.fc-form .field {
    margin-bottom: 20px;
}

.fc-form label {
    font-size: 13px;
    font-weight: 600;
    color: var(--fc-text-dark);
    margin-bottom: 6px;
    display: block;
}

.fc-form input,
.fc-form textarea,
.fc-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--fc-border);
    border-radius: var(--fc-radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--fc-text-dark);
    transition: var(--fc-transition-fast);
    background: var(--fc-white);
}

.fc-form input:focus,
.fc-form textarea:focus,
.fc-form select:focus {
    outline: none;
    border-color: var(--fc-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.fc-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* === FLOATING WHATSAPP === */
.fc-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

.fc-whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--fc-transition);
    animation: fc-pulse 2s infinite;
}

.fc-whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes fc-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* === BACK TO TOP === */
.fc-back-to-top {
    position: fixed;
    bottom: 146px;
    right: 24px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--fc-transition);
    pointer-events: none;
}

.fc-back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.fc-back-to-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--fc-gold-dark), var(--fc-gold));
    border-radius: 50%;
    color: var(--fc-chocolate-dark);
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.35);
    transition: var(--fc-transition);
}

.fc-back-to-top a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(201, 169, 110, 0.5);
    color: var(--fc-chocolate-dark);
}

/* === PHONE FLOAT === */
.fc-phone-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 9999;
}

.fc-phone-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--fc-gold), var(--fc-gold-light));
    border-radius: 50%;
    color: var(--fc-chocolate-dark);
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
    transition: var(--fc-transition);
    animation: phoneRing 2s ease-in-out infinite;
}

.fc-phone-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(201, 169, 110, 0.6);
    color: var(--fc-chocolate-dark);
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
    30% { transform: rotate(-8deg); }
    40% { transform: rotate(8deg); }
    50% { transform: rotate(0deg); }
}

@media (max-width: 768px) {
    .fc-phone-float,
    .fc-back-to-top {
        right: 16px;
    }
    .fc-whatsapp-float { right: 16px; }
}

/* === MOBILE BOTTOM NAVIGATION === */
.fc-bottom-nav {
    display: none;
}
.fc-drawer-subsection { margin: 0; }
.fc-drawer-sub-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px 20px;
    color: var(--fc-gold-dark);
    background: rgba(201,169,110,.08);
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    min-height: 48px;
    font-family: 'Poppins', sans-serif;
}
.fc-drawer-sub-toggle span {
    display: flex;
    align-items: center;
    gap: 14px;
}
.fc-drawer-sub-toggle i:first-child {
    width: 22px;
    text-align: center;
    font-size: 17px;
}
.fc-drawer-arrow {
    font-size: 12px;
    transition: transform .3s ease;
}
.fc-drawer-arrow.rotated {
    transform: rotate(180deg);
}
.fc-drawer-sub-links {
    display: none;
    padding: 4px 0 4px 20px;
}
.fc-drawer-sub-links.open {
    display: block;
}
.fc-drawer-sub-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;
    transition: all .2s;
    font-family: 'Poppins', sans-serif;
}
.fc-drawer-sub-links a:active {
    background: rgba(201,169,110,.1);
}
.fc-drawer-sub-links a i {
    width: 20px;
    text-align: center;
    font-size: 15px;
    color: var(--fc-gold-dark);
}

@media (max-width: 768px) {
    .fc-bottom-nav {
        display: flex;
        position: fixed;
        bottom: -1px;
        left: 0;
        right: 0;
        height: 56px;
        background: rgba(255,255,255,.97);
        border-top: none;
        z-index: 9990;
        overflow: visible;
        box-shadow: 0 -2px 16px rgba(0,0,0,.06);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
    }
    .fc-bottom-nav-item {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1px;
        text-decoration: none;
        color: #8e8e93;
        font-size: 10px;
        font-weight: 500;
        padding: 4px 0 2px;
        transition: color .2s ease;
        position: relative;
        -webkit-tap-highlight-color: transparent;
    }
    .fc-bottom-nav-item i { font-size: 17px; transition: transform .2s ease; }
    .fc-bottom-nav-item span { line-height: 1; white-space: nowrap; }
    .fc-bottom-nav-item.active { color: var(--fc-gold-dark); }
    .fc-bottom-nav-item.active i { transform: scale(1.1); }
    .fc-bottom-nav-item.active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 20%;
        right: 20%;
        height: 2.5px;
        background: var(--fc-gold);
        border-radius: 0 0 3px 3px;
    }
    .fc-bottom-nav-item:active { transform: scale(.92); }

    /* WhatsApp center button */
    .fc-bottom-nav-wa { color: #fff; font-weight: 700; font-size: 10px; }
    .fc-bottom-nav-wa-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #25D366, #1ebe5d);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -14px;
        box-shadow: 0 4px 16px rgba(37,211,102,.35);
        flex-shrink: 0;
    }
    .fc-bottom-nav-wa-icon i { color: #fff; font-size: 17px; }
    .fc-bottom-nav-wa:active .fc-bottom-nav-wa-icon { transform: scale(.92); }
    .fc-bottom-nav-wa.active::before { display: none; }
    .fc-bottom-nav-wa span { margin-top: 1px; color: #25D366; font-weight: 700; }

    body { padding-bottom: 56px; }
    body.drawer-open { overflow: hidden !important; }
    .fc-footer { padding-bottom: 56px !important; }

    /* Hide Quick Links & Categories on mobile */
    .fc-footer .fc-hide-mobile { display: none !important; }

    /* Footer contact center on mobile */
    .fc-footer-contact-mobile { text-align: center !important; }
    .fc-footer-contact-mobile .fc-footer-links { text-align: center; }
    .fc-footer-contact-mobile .fc-btn { margin: 6px auto 0 !important; display: flex; justify-content: center; }
    .fc-footer-contact-mobile .fc-btn[style*="margin-top"] { margin-top: 6px !important; }

    /* Footer social icons center on mobile */
    .fc-footer-social { justify-content: center; margin-top: 8px; }

    /* Footer bottom — remove extra space on mobile */
    .fc-footer-bottom { padding: 10px 0 4px; margin-top: 10px; border-top: none; }

    /* Reduce footer top padding on mobile */
    .fc-footer .column { margin-bottom: 0 !important; }
    .fc-footer .columns { gap: 0; }
    .fc-footer { padding: 24px 0 0 !important; }

    /* Floating buttons above bottom nav */
    .fc-whatsapp-float { bottom: 66px !important; right: 16px !important; display: block !important; }
    .fc-phone-float { bottom: 116px !important; right: 16px !important; display: block !important; }
    .fc-back-to-top { bottom: 166px !important; right: 16px !important; }
    .fc-whatsapp-float a { width: 48px !important; height: 48px !important; font-size: 22px !important; }
    .fc-phone-float a { width: 40px !important; height: 40px !important; font-size: 15px !important; }
    .fc-back-to-top a { width: 36px !important; height: 36px !important; font-size: 14px !important; }
}

/* === MOBILE DRAWER (CARBHADE STYLE) === */
.fc-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 999999;
    opacity: 0;
    transition: opacity .3s ease;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.fc-drawer-overlay.active {
    display: block;
    opacity: 1;
}

.fc-drawer {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: #fff;
    z-index: 1000000;
    transition: left .3s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}
.fc-drawer.open {
    left: 0;
    box-shadow: 10px 0 40px rgba(0,0,0,.2);
}

.fc-drawer-header {
    background: linear-gradient(135deg, var(--fc-chocolate-dark), var(--fc-chocolate));
    padding: 30px 20px 22px;
    position: relative;
    overflow: hidden;
}
.fc-drawer-header::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
}
.fc-drawer-logo { height: 42px; border-radius: 50%; border: 2px solid var(--fc-gold); margin-bottom: 10px; }
.fc-drawer-tagline { color: rgba(255,255,255,.85); font-size: 12px; font-weight: 500; }

.fc-drawer-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.2);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    z-index: 2;
}
.fc-drawer-close:active { background: rgba(255,255,255,.35); }

.fc-drawer-nav { padding: 8px 0; }
.fc-drawer-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 20px;
    color: #1c1c1e;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    transition: all .15s ease;
    position: relative;
    min-height: 48px;
}
.fc-drawer-nav a i {
    width: 22px;
    text-align: center;
    font-size: 16px;
    color: var(--fc-gold-dark);
    flex-shrink: 0;
}
.fc-drawer-nav a:active { background: rgba(201,169,110,.08); }
.fc-drawer-nav a.active { background: rgba(201,169,110,.1); color: var(--fc-gold-dark); font-weight: 600; }
.fc-drawer-nav a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: var(--fc-gold);
    border-radius: 0 3px 3px 0;
}

.fc-drawer-divider { height: 1px; background: #e5e5ea; margin: 6px 20px; }

.fc-drawer-cta { margin: 12px 16px 20px; }
.fc-drawer-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    min-height: 50px;
    box-shadow: 0 4px 15px rgba(37,211,102,.3);
}
.fc-drawer-cta a:active { transform: scale(.97); }

.fc-drawer-contact { padding: 14px 20px 20px; border-top: 1px solid #e5e5ea; }
.fc-drawer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #8e8e93;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    min-height: 36px;
}
.fc-drawer-contact a i { color: var(--fc-gold-dark); width: 18px; text-align: center; }

@media (min-width: 769px) {
    .fc-drawer, .fc-drawer-overlay { display: none !important; }
}

/* === MOBILE RESPONSIVE GLOBAL === */
@media (max-width: 768px) {
    .fc-top-bar {
        padding: 6px 0;
        font-size: 12px;
    }
    .fc-top-bar .columns {
        justify-content: center;
        text-align: center;
    }
    .fc-top-bar .columns .column {
        flex: none;
        width: auto;
        text-align: center;
    }
    .fc-top-bar .fc-contact-item {
        margin-right: 12px;
    }
    .fc-top-bar-social {
        text-align: center !important;
    }
    .fc-section {
        padding: 40px 0;
    }
    .fc-section-lg {
        padding: 50px 0;
    }
    .fc-footer {
        padding: 24px 0 0 !important;
    }
    .fc-footer .column {
        margin-bottom: 0 !important;
    }
    .fc-info-box {
        padding: 16px;
    }
}

/* === FOOTER === */
.fc-footer {
    background: var(--fc-chocolate-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.fc-footer h4,
.fc-footer h5 {
    color: var(--fc-gold);
    font-size: 18px;
    margin-bottom: 20px;
}

.fc-footer a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--fc-transition-fast);
}

.fc-footer a:hover {
    color: var(--fc-gold);
}

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

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

.fc-footer-links li a {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.fc-footer-links li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    color: var(--fc-gold);
}

.fc-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.fc-footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--fc-gold-light);
    transition: var(--fc-transition);
}

.fc-footer-social a:hover {
    background: var(--fc-gold);
    color: var(--fc-chocolate-dark);
}

.fc-footer-bottom {
    border-top: 1px solid rgba(201, 169, 110, 0.15);
    padding: 24px 0;
    margin-top: 50px;
    text-align: center;
    font-size: 13px;
}

/* === PAGE HEADER === */
.fc-page-header {
    background: linear-gradient(135deg, #1a0d04 0%, #2C1206 30%, #3C1A0B 60%, #2a1508 100%);
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
}

.fc-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 18, 6, 0.95), rgba(60, 26, 11, 0.85));
    z-index: 1;
}

.fc-page-header-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.fc-page-header-particles .fc-ph-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--fc-gold);
    opacity: 0;
    animation: phParticleFloat linear infinite;
}

@keyframes phParticleFloat {
    0% { opacity: 0; transform: translateY(100%) scale(0); }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { opacity: 0; transform: translateY(-100%) scale(1); }
}

.fc-page-header-floating {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, 0.15);
    background: rgba(201, 169, 110, 0.03);
    z-index: 0;
    pointer-events: none;
}

.fc-page-header-floating-1 {
    width: 200px;
    height: 200px;
    top: -60px;
    right: 10%;
    animation: phFloat1 8s ease-in-out infinite;
}

.fc-page-header-floating-2 {
    width: 140px;
    height: 140px;
    bottom: -40px;
    left: 8%;
    animation: phFloat2 10s ease-in-out infinite;
}

.fc-page-header-floating-3 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 20%;
    animation: phFloat3 7s ease-in-out infinite;
}

.fc-page-header-floating-4 {
    width: 60px;
    height: 60px;
    bottom: 15%;
    right: 20%;
    animation: phFloat1 9s ease-in-out infinite 2s;
}

@keyframes phFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-15px, -20px) scale(1.05); }
}

@keyframes phFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10px, -15px) rotate(5deg); }
}

@keyframes phFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10px, 10px) scale(1.1); }
}

.fc-page-header-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.06), transparent);
    z-index: 2;
    animation: phShine 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes phShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.fc-page-header-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.fc-page-header h1 {
    font-size: 48px;
    color: var(--fc-white);
    margin-bottom: 12px;
    animation: phTitleIn 0.8s ease-out both;
}

@keyframes phTitleIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fc-page-header .fc-breadcrumb {
    animation: phBreadcrumbIn 0.8s ease-out 0.2s both;
}

@keyframes phBreadcrumbIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fc-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    font-size: 14px;
}

.fc-breadcrumb a {
    color: var(--fc-gold-light);
}

.fc-breadcrumb .fc-separator {
    color: var(--fc-gold);
}

.fc-breadcrumb .fc-current {
    color: rgba(255, 255, 255, 0.5);
}

/* === ABOUT PAGE ANIMATED BANNER === */
.fc-about-banner {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0d04 0%, #2C1206 30%, #3C1A0B 60%, #2a1508 100%);
}

.fc-about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,13,4,0.92) 0%, rgba(44,18,6,0.82) 40%, rgba(60,26,11,0.70) 70%, rgba(44,18,6,0.85) 100%);
    z-index: 1;
}

.fc-about-bg-img {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.12;
}

.fc-about-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fc-about-bg-1 {
    width: 350px;
    height: 350px;
    top: -50px;
    right: 5%;
    border-radius: 30px;
    overflow: hidden;
    animation: aboutBgFloat1 10s ease-in-out infinite;
}

.fc-about-bg-2 {
    width: 250px;
    height: 250px;
    bottom: -30px;
    left: 5%;
    border-radius: 24px;
    overflow: hidden;
    animation: aboutBgFloat2 12s ease-in-out infinite;
}

.fc-about-bg-3 {
    width: 180px;
    height: 180px;
    top: 30%;
    right: 30%;
    border-radius: 20px;
    overflow: hidden;
    animation: aboutBgFloat3 9s ease-in-out infinite;
}

@keyframes aboutBgFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(-15px, -20px) rotate(3deg) scale(1.03); }
}

@keyframes aboutBgFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10px, -15px) rotate(-2deg); }
}

@keyframes aboutBgFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10px, 10px) scale(1.05); }
}

.fc-about-banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding: 100px 0 60px;
}

.fc-about-banner-content .fc-hero-badge-new {
    margin: 0 auto 28px;
    animation: phTitleIn 0.8s ease-out both;
}

.fc-about-title {
    font-size: 58px;
    font-weight: 800;
    color: var(--fc-white);
    margin-bottom: 20px;
    line-height: 1.15;
    animation: phTitleIn 0.8s ease-out 0.15s both;
}

.fc-about-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 580px;
    margin: 0 auto 30px;
    line-height: 1.7;
    animation: phTitleIn 0.8s ease-out 0.3s both;
}

/* === CHOCOLATES PAGE BANNER === */
.fc-chocolates-banner {
    background: linear-gradient(135deg, #0d0604 0%, #1a0e06 30%, #2C1206 60%, #1a0d04 100%);
}

.fc-chocolates-banner .fc-about-overlay {
    background: linear-gradient(135deg, rgba(13,6,4,0.90) 0%, rgba(26,14,6,0.80) 40%, rgba(44,18,6,0.72) 70%, rgba(26,13,4,0.85) 100%);
}

/* === DRY FRUITS PAGE BANNER === */
.fc-dryfruits-banner {
    background: linear-gradient(135deg, #0a0804 0%, #1a1006 30%, #2a1a08 60%, #140c04 100%);
}

.fc-dryfruits-banner .fc-about-overlay {
    background: linear-gradient(135deg, rgba(10,8,4,0.90) 0%, rgba(26,16,6,0.80) 40%, rgba(42,26,8,0.72) 70%, rgba(20,12,4,0.85) 100%);
}

/* === DRIED FRUITS PAGE BANNER === */
.fc-driedfruits-banner {
    background: linear-gradient(135deg, #080604 0%, #18120a 30%, #281c0e 60%, #120a04 100%);
}

.fc-driedfruits-banner .fc-about-overlay {
    background: linear-gradient(135deg, rgba(8,6,4,0.90) 0%, rgba(24,18,10,0.80) 40%, rgba(40,28,14,0.72) 70%, rgba(18,10,4,0.85) 100%);
}

/* === CONTACT PAGE BANNER === */
.fc-contact-banner {
    background: linear-gradient(135deg, #0c0806 0%, #1e1208 30%, #301a0c 60%, #160c04 100%);
}

.fc-contact-banner .fc-about-overlay {
    background: linear-gradient(135deg, rgba(12,8,6,0.90) 0%, rgba(30,18,8,0.80) 40%, rgba(48,26,12,0.72) 70%, rgba(22,12,4,0.85) 100%);
}

/* === GIFT BOXES PAGE BANNER === */
.fc-giftboxes-banner {
    background: linear-gradient(135deg, #10060a 0%, #220e18 30%, #361420 60%, #1a0810 100%);
}

.fc-giftboxes-banner .fc-about-overlay {
    background: linear-gradient(135deg, rgba(16,6,10,0.90) 0%, rgba(34,14,24,0.80) 40%, rgba(54,20,32,0.72) 70%, rgba(26,8,16,0.85) 100%);
}

/* === CORPORATE GIFTING PAGE BANNER === */
.fc-corporate-banner {
    background: linear-gradient(135deg, #0a0806 0%, #161210 30%, #241e18 60%, #100c08 100%);
}

.fc-corporate-banner .fc-about-overlay {
    background: linear-gradient(135deg, rgba(10,8,6,0.90) 0%, rgba(22,18,16,0.80) 40%, rgba(36,30,24,0.72) 70%, rgba(16,12,8,0.85) 100%);
}

/* === GALLERY PAGE BANNER === */
.fc-gallery-banner {
    background: linear-gradient(135deg, #0e0a06 0%, #1c140c 30%, #2e2014 60%, #140e08 100%);
}

.fc-gallery-banner .fc-about-overlay {
    background: linear-gradient(135deg, rgba(14,10,6,0.90) 0%, rgba(28,20,12,0.80) 40%, rgba(46,32,20,0.72) 70%, rgba(20,14,8,0.85) 100%);
}

/* === PRIVACY POLICY PAGE BANNER === */
.fc-privacy-banner {
    background: linear-gradient(135deg, #0a080a 0%, #18101a 30%, #281c2a 60%, #120c10 100%);
}

.fc-privacy-banner .fc-about-overlay {
    background: linear-gradient(135deg, rgba(10,8,10,0.90) 0%, rgba(24,16,26,0.80) 40%, rgba(40,28,42,0.72) 70%, rgba(18,12,16,0.85) 100%);
}

/* === TERMS & CONDITIONS PAGE BANNER === */
.fc-terms-banner {
    background: linear-gradient(135deg, #0c0806 0%, #1c120a 30%, #2e1c10 60%, #140e08 100%);
}

.fc-terms-banner .fc-about-overlay {
    background: linear-gradient(135deg, rgba(12,8,6,0.90) 0%, rgba(28,18,10,0.80) 40%, rgba(46,28,16,0.72) 70%, rgba(20,14,8,0.85) 100%);
}

/* === REFUND & RETURN POLICY PAGE BANNER === */
.fc-refund-banner {
    background: linear-gradient(135deg, #08080a 0%, #141018 30%, #221c2a 60%, #0c0c10 100%);
}

.fc-refund-banner .fc-about-overlay {
    background: linear-gradient(135deg, rgba(8,8,10,0.90) 0%, rgba(20,16,24,0.80) 40%, rgba(34,28,42,0.72) 70%, rgba(12,12,16,0.85) 100%);
}

@media (max-width: 768px) {
    .fc-about-banner {
        min-height: 400px;
    }
    .fc-about-banner-content {
        padding: 80px 0 40px;
    }
    .fc-about-title {
        font-size: 32px;
    }
    .fc-about-desc {
        font-size: 15px;
        padding: 0 10px;
    }
    .fc-about-bg-1 {
        width: 200px;
        height: 200px;
    }
    .fc-about-bg-2 {
        width: 150px;
        height: 150px;
    }
    .fc-about-bg-3 {
        display: none;
    }
}

@media (max-width: 768px) {
    .fc-page-header {
        padding: 120px 0 40px;
        min-height: 260px;
    }

    .fc-page-header h1 {
        font-size: 32px;
    }

    .fc-page-header-floating-1,
    .fc-page-header-floating-3 {
        display: none;
    }
}

/* === PRODUCT DETAIL === */
.fc-product-gallery {
    position: relative;
    border-radius: var(--fc-radius-lg);
    overflow: hidden;
    background: var(--fc-cream-dark);
}

.fc-product-gallery-main {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--fc-radius-lg);
    cursor: zoom-in;
}

.fc-product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.fc-product-gallery-main:hover img {
    transform: scale(1.5);
}

.fc-product-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.fc-product-gallery-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--fc-radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--fc-transition-fast);
    opacity: 0.6;
    flex-shrink: 0;
}

.fc-product-gallery-thumbs img.active,
.fc-product-gallery-thumbs img:hover {
    border-color: var(--fc-gold);
    opacity: 1;
}

.fc-weight-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.fc-weight-option {
    padding: 10px 22px;
    border: 2px solid var(--fc-border);
    border-radius: var(--fc-radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--fc-text-dark);
    background: var(--fc-white);
    cursor: pointer;
    transition: var(--fc-transition-fast);
}

.fc-weight-option:hover,
.fc-weight-option.active {
    border-color: var(--fc-gold);
    background: rgba(201, 169, 110, 0.08);
    color: var(--fc-gold-dark);
}

.fc-quantity-control {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--fc-border);
    border-radius: var(--fc-radius-sm);
    overflow: hidden;
}

.fc-quantity-control button {
    width: 44px;
    height: 44px;
    background: var(--fc-cream);
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: var(--fc-transition-fast);
    color: var(--fc-text-dark);
}

.fc-quantity-control button:hover {
    background: var(--fc-gold);
    color: var(--fc-white);
}

.fc-quantity-control input {
    width: 60px;
    height: 44px;
    text-align: center;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--fc-text-dark);
    -moz-appearance: textfield;
}

.fc-quantity-control input::-webkit-outer-spin-button,
.fc-quantity-control input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* === INFO BOXES === */
.fc-info-box {
    background: var(--fc-white);
    border-radius: var(--fc-radius-md);
    padding: 24px;
    box-shadow: var(--fc-shadow-sm);
    margin-bottom: 16px;
}

.fc-info-box h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 12px;
}

.fc-info-box h5 i {
    color: var(--fc-gold);
}

.fc-info-box ul {
    list-style: none;
    padding: 0;
}

.fc-info-box ul li {
    font-size: 14px;
    color: var(--fc-text-medium);
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.fc-info-box ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--fc-gold);
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}

/* === WHATSAPP CTA BANNER === */
.fc-whatsapp-banner {
    background: linear-gradient(135deg, var(--fc-chocolate), var(--fc-chocolate-dark));
    border-radius: var(--fc-radius-xl);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.fc-whatsapp-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.1), transparent);
    border-radius: 50%;
}

.fc-whatsapp-banner h3 {
    color: var(--fc-white);
    font-size: 32px;
    margin-bottom: 12px;
}

.fc-whatsapp-banner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin: 0;
}

@media (max-width: 768px) {
    .fc-whatsapp-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }
}

/* === BANNER SLIDER === */
.fc-banner-slide {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.fc-banner-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fc-banner-slide .fc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 18, 6, 0.85), rgba(60, 26, 11, 0.6));
    z-index: 1;
}

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

/* === ANIMATIONS === */
@keyframes fc-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fc-fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fc-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fc-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === UTILITY CLASSES === */
.fc-text-gold { color: var(--fc-gold) !important; }
.fc-text-chocolate { color: var(--fc-chocolate) !important; }
.fc-text-cream { color: var(--fc-cream) !important; }
.fc-bg-chocolate { background-color: var(--fc-chocolate) !important; }
.fc-bg-gold { background-color: var(--fc-gold) !important; }
.fc-bg-cream { background-color: var(--fc-cream) !important; }

/* Prevent horizontal overflow from any element */
.container { max-width: 100%; overflow: hidden; }
.columns { overflow: hidden; }
img, video { max-width: 100%; height: auto; }
table { max-width: 100%; overflow-x: auto; display: block; }

/* Global overflow-x containment */
.fc-hero-new,
.fc-hero,
.fc-section,
.fc-section-lg,
.fc-footer,
.fc-top-bar {
    overflow-x: clip;
}

/* Hide anything that bleeds outside viewport */
@media (max-width: 768px) {
    .fc-hero-new,
    .fc-hero {
        overflow: hidden;
    }
}

/* === RESPONSIVE OVERRIDES === */
@media (max-width: 768px) {
    .fc-section {
        padding: 50px 0;
    }

    .fc-section-lg {
        padding: 60px 0;
    }

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

    .fc-section-header p {
        font-size: 15px;
    }

    .fc-footer {
        padding: 24px 0 0 !important;
    }

    .navbar-menu {
        display: none !important;
    }

    .fc-navbar .navbar-end .navbar-item {
        display: none;
    }
}

@media (max-width: 576px) {
    .fc-section-header h2 {
        font-size: 26px;
    }

    .fc-hero h1 {
        font-size: 30px;
    }

    .fc-product-card-body {
        padding: 18px;
    }

    .fc-product-card-title {
        font-size: 17px;
    }

    .fc-section {
        padding: 36px 0;
    }

    .fc-section-lg {
        padding: 44px 0;
    }

    .fc-section-header h2 {
        font-size: 24px;
    }

    .fc-hero h1 {
        font-size: 26px;
    }
}

/* === PWA INSTALL BANNER === */
.fc-pwa-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--fc-chocolate-dark), var(--fc-chocolate));
    color: var(--fc-gold-light);
    padding: 16px 20px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 9990;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    flex-wrap: wrap;
    text-align: center;
}
.fc-pwa-banner.show {
    display: flex;
}
.fc-pwa-banner img {
    height: 36px;
    border-radius: 8px;
}
.fc-pwa-banner span {
    font-size: 14px;
    font-weight: 500;
}
.fc-pwa-btn {
    background: linear-gradient(135deg, var(--fc-gold-dark), var(--fc-gold));
    color: var(--fc-chocolate-dark);
    border: none;
    padding: 8px 20px;
    border-radius: var(--fc-radius-sm);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--fc-transition);
}
.fc-pwa-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 169, 110, 0.4);
}
.fc-pwa-close {
    background: none;
    border: none;
    color: var(--fc-gold-light);
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    margin-left: 4px;
}
