/*!
 * Feeling Celebration Pro — Luxury White + Gold theme styles.
 */

:root{
  --fcp-bg:#FDFBF7;
  --fcp-surface:#FFFFFF;
  --fcp-surface-2:#F9F8F4;
  --fcp-text:#1A1A1A;
  --fcp-text-2:#5C5C5C;
  --fcp-gold:#D4AF37;
  --fcp-gold-2:#B5952F;
  --fcp-gold-light:#F3E5AB;
  --fcp-border:#EAE6DF;
  --fcp-border-strong:#D5D1C9;
  --fcp-shadow:0 8px 30px rgba(0,0,0,.04);
  --fcp-shadow-hover:0 20px 40px rgba(0,0,0,.08);
  --fcp-serif:'Cormorant Garamond', Georgia, serif;
  --fcp-sans:'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body.fcp-body{
  margin:0;
  background:var(--fcp-bg);
  color:var(--fcp-text);
  font-family:var(--fcp-sans);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; transition:color .3s ease; }
a:hover{ color:var(--fcp-gold); }
h1,h2,h3,h4,h5{ font-family:var(--fcp-serif); color:var(--fcp-text); margin:0 0 .6em; font-weight:500; letter-spacing:-.01em; }
h1{ font-size:clamp(2rem,4vw,3.5rem); line-height:1.1; }
h2{ font-size:clamp(1.6rem,2.6vw,2.4rem); }
h3{ font-size:1.4rem; }
p{ margin:0 0 1em; color:var(--fcp-text-2); }

.fcp-container{ max-width:1280px; margin:0 auto; padding:0 20px; }
@media(min-width:1024px){ .fcp-container{ padding:0 32px; } }

.screen-reader-text{ position:absolute; left:-9999px; }

/* Buttons */
.fcp-btn{ display:inline-flex; align-items:center; justify-content:center; gap:.5rem; padding:.9rem 1.6rem; font-family:var(--fcp-sans); font-size:.78rem; font-weight:500; letter-spacing:.16em; text-transform:uppercase; border-radius:2px; cursor:pointer; border:1px solid transparent; transition:background-color .3s ease, color .3s ease, border-color .3s ease; }
.fcp-btn-primary{ background:var(--fcp-gold); color:#fff; }
.fcp-btn-primary:hover{ background:var(--fcp-gold-2); color:#fff; }
.fcp-btn-outline{ background:transparent; color:var(--fcp-gold); border-color:var(--fcp-gold); }
.fcp-btn-outline:hover{ background:var(--fcp-gold); color:#fff; }
.fcp-btn-ghost{ background:transparent; color:var(--fcp-text); }
.fcp-btn-ghost:hover{ color:var(--fcp-gold); }

/* Inputs */
.fcp-input, input[type=text], input[type=email], input[type=search], input[type=tel], input[type=number], input[type=date], select, textarea{
  background:#fff; border:1px solid var(--fcp-border); border-radius:2px; padding:.75rem 1rem; font-family:var(--fcp-sans); font-size:.95rem; color:var(--fcp-text); width:100%; transition:border-color .25s ease;
}
.fcp-input:focus, input:focus, select:focus, textarea:focus{ outline:none; border-color:var(--fcp-gold); box-shadow:0 0 0 3px rgba(212,175,55,.15); }

/* Top bar */
.fcp-top-bar{ background:var(--fcp-text); color:#F0EAD6; font-size:.75rem; letter-spacing:.14em; text-transform:uppercase; }
.fcp-top-inner{ display:flex; justify-content:center; align-items:center; padding:8px 0; gap:20px; }
.fcp-top-text{ margin:0; color:#F0EAD6; }

/* Header */
.fcp-header{ position:sticky; top:0; z-index:100; background:rgba(255,255,255,.9); backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px); border-bottom:1px solid var(--fcp-border); }
.fcp-header-inner{ display:flex; align-items:center; justify-content:space-between; gap:1.5rem; padding:18px 20px; }
@media(min-width:1024px){ .fcp-header-inner{ padding:22px 32px; } }
.fcp-logo{ display:flex; align-items:center; gap:.6rem; }
.fcp-logo-mark{ display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; border:1px solid var(--fcp-gold); color:var(--fcp-gold); font-family:var(--fcp-serif); font-size:1rem; letter-spacing:.05em; }
.fcp-logo-text{ font-family:var(--fcp-serif); font-size:1.35rem; letter-spacing:.02em; }

.fcp-primary-nav{ flex:1; display:none; }
@media(min-width:1024px){ .fcp-primary-nav{ display:block; } }
.fcp-menu{ list-style:none; margin:0; padding:0; display:flex; justify-content:center; gap:1.8rem; }
.fcp-menu > li > a{ font-size:.78rem; text-transform:uppercase; letter-spacing:.14em; font-weight:500; color:var(--fcp-text); position:relative; padding:8px 0; }
.fcp-menu > li > a:after{ content:''; position:absolute; left:0; right:0; bottom:0; height:1px; background:var(--fcp-gold); transform:scaleX(0); transform-origin:left; transition:transform .35s ease; }
.fcp-menu > li:hover > a:after{ transform:scaleX(1); }
.fcp-menu > li{ position:relative; }
.fcp-menu ul.sub-menu{ position:absolute; top:100%; left:0; min-width:220px; background:#fff; border:1px solid var(--fcp-border); box-shadow:var(--fcp-shadow); list-style:none; padding:12px 0; margin:0; opacity:0; visibility:hidden; transform:translateY(6px); transition:opacity .25s ease, transform .25s ease, visibility .25s; z-index:20; }
.fcp-menu > li:hover ul.sub-menu{ opacity:1; visibility:visible; transform:translateY(0); }
.fcp-menu ul.sub-menu li a{ display:block; padding:8px 20px; font-size:.85rem; letter-spacing:.04em; }
.fcp-menu ul.sub-menu li a:hover{ background:var(--fcp-surface-2); color:var(--fcp-gold); }

.fcp-header-actions{ display:flex; align-items:center; gap:.3rem; }
.fcp-icon-btn{ position:relative; display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border:none; background:transparent; color:var(--fcp-text); cursor:pointer; border-radius:2px; transition:background .25s ease, color .25s ease; }
.fcp-icon-btn:hover{ color:var(--fcp-gold); background:var(--fcp-surface-2); }
.fcp-cart-count{ position:absolute; top:4px; right:4px; background:var(--fcp-gold); color:#fff; font-size:.65rem; min-width:16px; height:16px; padding:0 4px; border-radius:8px; display:inline-flex; align-items:center; justify-content:center; }
.fcp-mobile-toggle{ display:inline-flex; }
@media(min-width:1024px){ .fcp-mobile-toggle{ display:none; } }

/* Search panel */
.fcp-search-panel{ border-top:1px solid var(--fcp-border); background:#fff; padding:18px 0; }
.fcp-search-form{ display:flex; gap:12px; align-items:center; }
.fcp-search-input{ flex:1; }
.fcp-search-results{ margin-top:16px; display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:12px; }
.fcp-search-result{ display:flex; gap:10px; align-items:center; padding:10px; border:1px solid var(--fcp-border); border-radius:2px; }
.fcp-search-result img{ width:48px; height:48px; object-fit:cover; }
.fcp-search-result strong{ font-family:var(--fcp-serif); font-size:1rem; }

/* Hero */
.fcp-hero{ position:relative; min-height:80vh; overflow:hidden; background:var(--fcp-bg); }
.fcp-hero-slides{ position:relative; min-height:80vh; }
.fcp-hero-slide{ position:absolute; inset:0; display:flex; align-items:center; opacity:0; visibility:hidden; transition:opacity .8s ease; }
.fcp-hero-slide.is-active{ opacity:1; visibility:visible; }
.fcp-hero-bg{ position:absolute; inset:0; background-size:cover; background-position:center; }
.fcp-hero-bg-default{ background:linear-gradient(135deg,#FDFBF7 0%,#F3E5AB 100%); }
.fcp-hero-overlay{ position:absolute; inset:0; background:rgba(255,255,255,.35); }
.fcp-hero-inner{ position:relative; z-index:2; padding:80px 20px; }
.fcp-eyebrow{ display:inline-block; font-size:.72rem; text-transform:uppercase; letter-spacing:.28em; color:var(--fcp-gold); margin-bottom:1.2rem; font-weight:500; }
.fcp-hero-title{ font-size:clamp(2.5rem,6vw,4.5rem); line-height:1.02; max-width:720px; margin-bottom:1.2rem; }
.fcp-hero-sub{ font-size:1.15rem; max-width:560px; margin-bottom:2rem; color:var(--fcp-text-2); }
.fcp-hero-cta{ font-size:.8rem; }
.fcp-hero-dots{ position:absolute; bottom:32px; left:0; right:0; display:flex; justify-content:center; gap:10px; z-index:3; }
.fcp-hero-dot{ width:36px; height:2px; background:rgba(26,26,26,.25); border:none; cursor:pointer; padding:0; }
.fcp-hero-dot.is-active{ background:var(--fcp-gold); }

/* Sections */
.fcp-section{ padding:80px 0; }
.fcp-section-alt{ background:var(--fcp-surface-2); }
.fcp-section-head{ text-align:left; margin-bottom:48px; max-width:560px; }
.fcp-section-title{ margin:0; }

/* Featured categories */
/* ==========================================
   FEATURED CATEGORIES
========================================== */

.fcp-cat-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:40px;
}

.fcp-cat-tile{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:20px;
    background:#fff;
    box-shadow:0 12px 35px rgba(0,0,0,.12);
    transition:.4s ease;
    aspect-ratio:1/1;
    text-decoration:none;
}

.fcp-cat-tile:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

.fcp-cat-image{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.fcp-cat-tile:hover .fcp-cat-image{
    transform:scale(1.08);
}

.fcp-cat-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:22px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.82),
        rgba(0,0,0,.35),
        transparent
    );
}

.fcp-cat-label{
    display:inline-block;
    padding:6px 15px;
    border-radius:40px;
    background:#D4AF37;
    color:#fff;
    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.fcp-cat-name{
    color:#fff;
    font-size:34px;
    font-weight:700;
    margin:0 0 10px;
    line-height:1.2;
}

.fcp-cat-btn{
    color:#D4AF37;
    font-size:16px;
    font-weight:600;
}

.fcp-cat-image-placeholder{
    width:100%;
    height:100%;
    background:#f4f4f4;
}

/* Tablet */

@media(max-width:992px){

.fcp-cat-grid{
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.fcp-cat-name{
font-size:28px;
}

}

/* Mobile */

@media(max-width:576px){

.fcp-cat-grid{
grid-template-columns:1fr;
gap:20px;
}

.fcp-cat-name{
font-size:24px;
}

.fcp-cat-overlay{
padding:18px;
}

}

/* Product grid */
.fcp-product-grid{ display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:24px 16px; }
@media(min-width:768px){ .fcp-product-grid{ grid-template-columns:repeat(3, minmax(0,1fr)); gap:40px 24px; } }
@media(min-width:1024px){ .fcp-product-grid{ grid-template-columns:repeat(4, minmax(0,1fr)); } }
.fcp-product-card{ background:#fff; border:1px solid transparent; transition:border-color .4s ease, box-shadow .4s ease; }
.fcp-product-card:hover{ border-color:var(--fcp-border); box-shadow:var(--fcp-shadow); }
.fcp-product-image-wrap{ position:relative; display:block; aspect-ratio:3/4; overflow:hidden; background:var(--fcp-surface-2); }
.fcp-product-image{ width:100%; height:100%; object-fit:cover; transition:transform .8s ease; }
.fcp-product-image-placeholder{ width:100%; height:100%; background:linear-gradient(135deg,#F3E5AB,#F9F8F4); }
.fcp-product-card:hover .fcp-product-image{ transform:scale(1.05); }
.fcp-wishlist-btn{ position:absolute; top:10px; right:10px; width:36px; height:36px; border-radius:50%; background:#fff; color:var(--fcp-text); border:none; cursor:pointer; display:inline-flex; align-items:center; justify-content:center; font-size:1.1rem; box-shadow:var(--fcp-shadow); transition:color .3s ease, transform .3s ease; }
.fcp-wishlist-btn:hover, .fcp-wishlist-btn.is-active{ color:var(--fcp-gold); transform:scale(1.08); }
.fcp-product-body{ padding:16px 4px; }
.fcp-product-title{ font-family:var(--fcp-serif); font-size:1.15rem; margin:0 0 .35rem; letter-spacing:-.005em; }
.fcp-product-price{ font-size:.95rem; color:var(--fcp-text); margin-bottom:1rem; }
.fcp-product-price del{ color:var(--fcp-text-2); margin-right:6px; opacity:.7; }
.fcp-product-price ins{ text-decoration:none; color:var(--fcp-gold); }
.fcp-add-btn{ font-size:.7rem; padding:.7rem 1.2rem; }

/* USPs */
.fcp-usp-grid{ display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:24px; }
@media(min-width:900px){ .fcp-usp-grid{ grid-template-columns:repeat(4, minmax(0,1fr)); } }
.fcp-usp{ background:#fff; border:1px solid var(--fcp-border); padding:32px 24px; text-align:left; }
.fcp-usp h3{ font-size:1.1rem; margin-bottom:.5rem; color:var(--fcp-gold); }
.fcp-usp p{ font-size:.9rem; margin:0; }

/* Testimonials */
.fcp-testi-grid{ display:grid; grid-template-columns:1fr; gap:24px; }
@media(min-width:768px){ .fcp-testi-grid{ grid-template-columns:repeat(3, minmax(0,1fr)); } }
.fcp-testi{ background:#fff; border:1px solid var(--fcp-border); padding:32px 28px; margin:0; box-shadow:var(--fcp-shadow); position:relative; }
.fcp-testi:before{ content:'"'; position:absolute; top:-16px; left:20px; font-family:var(--fcp-serif); font-size:5rem; color:var(--fcp-gold); line-height:1; opacity:.4; }
.fcp-stars{ color:var(--fcp-gold); font-size:.95rem; letter-spacing:.15em; margin-bottom:14px; }
.fcp-testi blockquote{ font-family:var(--fcp-serif); font-size:1.15rem; line-height:1.55; color:var(--fcp-text); margin:0 0 18px; font-style:italic; }
.fcp-testi figcaption{ display:flex; flex-direction:column; gap:2px; font-size:.85rem; }
.fcp-testi figcaption strong{ color:var(--fcp-text); font-weight:600; font-family:var(--fcp-sans); }
.fcp-testi figcaption span{ color:var(--fcp-text-2); font-size:.75rem; }

/* Trust strip */
.fcp-trust-strip{ display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:16px; text-align:center; padding:32px; border:1px solid var(--fcp-border); background:#fff; }
@media(min-width:768px){ .fcp-trust-strip{ grid-template-columns:repeat(5, minmax(0,1fr)); } }
.fcp-trust strong{ display:block; font-family:var(--fcp-serif); font-size:2rem; color:var(--fcp-gold); line-height:1; }
.fcp-trust span{ display:block; margin-top:6px; font-size:.78rem; text-transform:uppercase; letter-spacing:.14em; color:var(--fcp-text-2); }

/* Payment chips in footer */
.fcp-pay-strip{ display:flex; flex-wrap:wrap; gap:6px; }
.fcp-pay-chip{ display:inline-flex; align-items:center; padding:4px 10px; background:#1B1B1D; border:1px solid #26262A; color:#DAD5C8; font-size:.7rem; letter-spacing:.06em; border-radius:2px; }

/* Razorpay receipt page */
.fcgcp-rp-wrap{ text-align:center; padding:60px 20px; }
.fcgcp-rp-wrap .fcgcp-heading{ font-size:2rem; margin-bottom:12px; }
.fcgcp-rp-wrap .button{ margin:8px; }

/* Footer */
.fcp-footer{ background:#0F0F10; color:#DAD5C8; padding:80px 0 0; margin-top:80px; }
.fcp-footer h4, .fcp-footer-title{ color:#F3E5AB; font-family:var(--fcp-serif); font-size:1.2rem; margin-bottom:1rem; }
.fcp-footer a{ color:#DAD5C8; }
.fcp-footer a:hover{ color:var(--fcp-gold); }
.fcp-footer-grid{ display:grid; grid-template-columns:repeat(1, minmax(0,1fr)); gap:40px; }
@media(min-width:768px){ .fcp-footer-grid{ grid-template-columns:repeat(4, minmax(0,1fr)); } }
.fcp-footer-col ul{ list-style:none; padding:0; margin:0; }
.fcp-footer-col ul li{ margin-bottom:.5rem; font-size:.9rem; }
.fcp-footer-text{ color:#B7B0A0; font-size:.9rem; }
.fcp-newsletter{ display:flex; gap:8px; }
.fcp-newsletter .fcp-input{ background:#1B1B1D; color:#fff; border-color:#2A2A2D; }
.fcp-footer-bottom{ margin-top:56px; border-top:1px solid #26262A; padding:24px 0; font-size:.8rem; color:#8A8578; }
.fcp-footer-bottom-inner{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; }
.fcp-footer-menu{ list-style:none; display:flex; gap:16px; padding:0; margin:0; }

/* WhatsApp float */
.fcp-whatsapp-float{ position:fixed; bottom:24px; right:24px; width:56px; height:56px; border-radius:50%; background:#25D366; color:#fff; display:inline-flex; align-items:center; justify-content:center; box-shadow:0 10px 30px rgba(37,211,102,.35); z-index:80; transition:transform .3s ease; }
.fcp-whatsapp-float:hover{ transform:scale(1.06); color:#fff; }

/* Utility */
.fcp-empty{ padding:40px; background:var(--fcp-surface-2); border:1px dashed var(--fcp-border); text-align:center; color:var(--fcp-text-2); }
.fcp-404{ text-align:center; padding:120px 0; }
.fcp-w-full{ width:100%; }

/* Account dropdown */
.fcp-account-wrap{ position:relative; }
.fcp-account-menu{ position:absolute; top:calc(100% + 8px); right:0; min-width:260px; background:#fff; border:1px solid var(--fcp-border); box-shadow:var(--fcp-shadow-hover); padding:16px; z-index:60; opacity:0; visibility:hidden; transform:translateY(-6px); transition:opacity .25s ease, transform .25s ease, visibility .25s; }
.fcp-account-menu.is-open{ opacity:1; visibility:visible; transform:translateY(0); }
.fcp-account-head{ padding-bottom:12px; margin-bottom:8px; border-bottom:1px solid var(--fcp-border); }
.fcp-account-hi{ display:block; font-family:var(--fcp-serif); font-size:1.1rem; color:var(--fcp-text); }
.fcp-account-email{ display:block; font-size:.78rem; color:var(--fcp-text-2); }
.fcp-account-link{ display:flex; justify-content:space-between; align-items:center; padding:9px 8px; font-size:.85rem; color:var(--fcp-text); border-radius:2px; transition:background .2s ease, color .2s ease; }
.fcp-account-link:hover{ background:var(--fcp-surface-2); color:var(--fcp-gold); }
.fcp-account-logout{ border-top:1px solid var(--fcp-border); margin-top:6px; padding-top:12px; color:#B33A3A; }
.fcp-account-guest{ font-size:.85rem; color:var(--fcp-text-2); margin:0 0 12px; }
.fcp-badge{ display:inline-flex; align-items:center; justify-content:center; min-width:20px; height:20px; padding:0 6px; border-radius:10px; background:var(--fcp-gold); color:#fff; font-size:.68rem; font-weight:600; }

/* Auth modal */
.fcp-auth-modal{ position:fixed; inset:0; z-index:200; display:flex; align-items:center; justify-content:center; padding:20px; }
.fcp-auth-modal[hidden]{ display:none; }
.fcp-auth-backdrop{ position:absolute; inset:0; background:rgba(10,10,10,.55); backdrop-filter:blur(6px); }
.fcp-auth-panel{ position:relative; width:100%; max-width:440px; background:#fff; padding:36px 32px 28px; border:1px solid var(--fcp-border); box-shadow:0 30px 60px rgba(0,0,0,.25); animation:fcpFadeUp .5s ease; }
@keyframes fcpFadeUp{ from{ opacity:0; transform:translateY(20px); } to{ opacity:1; transform:translateY(0); } }
.fcp-auth-close{ position:absolute; top:12px; right:14px; background:transparent; border:none; font-size:1.6rem; line-height:1; cursor:pointer; color:var(--fcp-text-2); }
.fcp-auth-close:hover{ color:var(--fcp-gold); }
.fcp-auth-brand{ display:flex; align-items:center; gap:10px; justify-content:center; margin-bottom:16px; }
.fcp-auth-title{ text-align:center; margin:0 0 4px; }
.fcp-auth-sub{ text-align:center; color:var(--fcp-text-2); font-size:.9rem; margin:0 0 24px; }
.fcp-auth-tabs{ display:flex; border-bottom:1px solid var(--fcp-border); margin-bottom:22px; gap:8px; }
.fcp-auth-tab{ flex:1; background:transparent; border:none; padding:12px 8px; font-size:.75rem; letter-spacing:.14em; text-transform:uppercase; font-weight:500; color:var(--fcp-text-2); cursor:pointer; border-bottom:2px solid transparent; transition:color .3s ease, border-color .3s ease; }
.fcp-auth-tab.is-active{ color:var(--fcp-gold); border-bottom-color:var(--fcp-gold); }
.fcp-auth-pane{ display:none; }
.fcp-auth-pane.is-active{ display:block; }
.fcp-auth-switch{ display:flex; gap:8px; margin-bottom:16px; background:var(--fcp-surface-2); padding:4px; border-radius:2px; }
.fcp-auth-mode{ flex:1; background:transparent; border:none; padding:10px; font-size:.75rem; letter-spacing:.12em; text-transform:uppercase; font-weight:500; cursor:pointer; color:var(--fcp-text-2); border-radius:2px; transition:background .25s ease, color .25s ease; }
.fcp-auth-mode.is-active{ background:#fff; color:var(--fcp-text); box-shadow:var(--fcp-shadow); }
.fcp-auth-form{ display:flex; flex-direction:column; gap:12px; }
.fcp-auth-form[hidden]{ display:none; }
.fcp-auth-msg{ min-height:18px; font-size:.8rem; text-align:center; color:var(--fcp-text-2); }
.fcp-auth-msg.is-error{ color:#B33A3A; }
.fcp-auth-msg.is-success{ color:#237547; }
.fcp-auth-legal{ margin:20px 0 0; text-align:center; font-size:.7rem; color:var(--fcp-text-2); letter-spacing:.06em; }
.fcp-otp-row{ display:flex; gap:0; align-items:stretch; }
.fcp-otp-cc{ display:inline-flex; align-items:center; padding:0 14px; background:var(--fcp-surface-2); border:1px solid var(--fcp-border); border-right:0; font-size:.9rem; color:var(--fcp-text); font-family:var(--fcp-sans); }
.fcp-otp-row input{ border-left:0; }
.fcp-otp-input{ text-align:center; letter-spacing:.6em; font-size:1.3rem; font-family:var(--fcp-sans); }
.fcp-otp-hint{ text-align:center; font-size:.85rem; color:var(--fcp-text-2); margin:0 0 4px; }
.fcp-otp-back{ font-size:.7rem; }

/* Festival animations */
.fcp-festival-overlay{ position:fixed; inset:0; pointer-events:none; z-index:70; overflow:hidden; }
.fcp-festival-piece{ position:absolute; top:-30px; width:12px; height:12px; opacity:.85; }
.fcp-festival-ribbon{ position:fixed; top:0; left:50%; transform:translateX(-50%); z-index:71; padding:6px 22px; font-size:.72rem; text-transform:uppercase; letter-spacing:.22em; font-weight:600; color:#fff; box-shadow:0 6px 18px rgba(0,0,0,.15); pointer-events:none; animation:fcpRibbon 800ms ease .3s both; }
@keyframes fcpRibbon{ from{ opacity:0; transform:translate(-50%, -18px); } to{ opacity:1; transform:translate(-50%, 0); } }

/* Diwali — floating diyas (gold sparkle) */
.fcp-festival-diwali .fcp-festival-ribbon{ background:linear-gradient(135deg,#B5952F,#D4AF37); }
.fcp-festival-diwali .fcp-festival-piece{ width:8px; height:8px; border-radius:50%; background:#D4AF37; box-shadow:0 0 12px #D4AF37, 0 0 4px #F3E5AB; animation:fcpFloat 12s linear infinite; }
@keyframes fcpFloat{ 0%{ transform:translateY(-30px) scale(.6); opacity:0; } 20%{ opacity:1; } 100%{ transform:translateY(calc(100vh + 40px)) scale(1); opacity:0; } }

/* Christmas — snow */
.fcp-festival-christmas .fcp-festival-ribbon{ background:linear-gradient(135deg,#C1272D,#0E7C3A); }
.fcp-festival-christmas .fcp-festival-piece{ background:transparent; border-radius:50%; box-shadow:0 0 0 3px #fff, 0 0 8px rgba(255,255,255,.7); width:6px; height:6px; animation:fcpSnow 14s linear infinite; }
@keyframes fcpSnow{ 0%{ transform:translate(0,-30px); opacity:0; } 10%{ opacity:1; } 100%{ transform:translate(20px, calc(100vh + 40px)); opacity:.2; } }

/* Valentine — hearts */
.fcp-festival-valentine .fcp-festival-ribbon{ background:linear-gradient(135deg,#E63976,#B31B54); }
.fcp-festival-valentine .fcp-festival-piece{ background:transparent; width:16px; height:16px; animation:fcpFloat 15s linear infinite; }
.fcp-festival-valentine .fcp-festival-piece:before{ content:'♥'; color:#E63976; font-size:18px; text-shadow:0 0 8px rgba(230,57,118,.5); }

/* Holi — color splashes */
.fcp-festival-holi .fcp-festival-ribbon{ background:linear-gradient(135deg,#E63976,#FFB300,#3F51B5); }
.fcp-festival-holi .fcp-festival-piece{ width:14px; height:14px; border-radius:50%; animation:fcpFloat 13s linear infinite; }
.fcp-festival-holi .fcp-festival-piece:nth-child(3n){ background:#E63976; }
.fcp-festival-holi .fcp-festival-piece:nth-child(3n+1){ background:#FFB300; }
.fcp-festival-holi .fcp-festival-piece:nth-child(3n+2){ background:#3F51B5; }

/* Rakhi — silk ribbons */
.fcp-festival-rakhi .fcp-festival-ribbon{ background:linear-gradient(135deg,#B5952F,#E63976); }
.fcp-festival-rakhi .fcp-festival-piece{ background:linear-gradient(45deg,#D4AF37,#E63976); width:4px; height:26px; border-radius:2px; animation:fcpFloat 14s linear infinite; }

/* Independence — tricolor */
.fcp-festival-independence .fcp-festival-ribbon{ background:linear-gradient(135deg,#FF9933,#fff,#138808); color:#1a1a1a; }
.fcp-festival-independence .fcp-festival-piece{ width:10px; height:10px; border-radius:50%; animation:fcpFloat 13s linear infinite; }
.fcp-festival-independence .fcp-festival-piece:nth-child(3n){ background:#FF9933; }
.fcp-festival-independence .fcp-festival-piece:nth-child(3n+1){ background:#fff; box-shadow:0 0 6px rgba(0,0,0,.2); }
.fcp-festival-independence .fcp-festival-piece:nth-child(3n+2){ background:#138808; }

/* New Year — confetti */
.fcp-festival-newyear .fcp-festival-ribbon{ background:linear-gradient(135deg,#D4AF37,#1A1A1A); }
.fcp-festival-newyear .fcp-festival-piece{ width:6px; height:14px; animation:fcpConfetti 12s linear infinite; }
.fcp-festival-newyear .fcp-festival-piece:nth-child(4n){ background:#D4AF37; }
.fcp-festival-newyear .fcp-festival-piece:nth-child(4n+1){ background:#E63976; }
.fcp-festival-newyear .fcp-festival-piece:nth-child(4n+2){ background:#3F51B5; }
.fcp-festival-newyear .fcp-festival-piece:nth-child(4n+3){ background:#0E7C3A; }
@keyframes fcpConfetti{ 0%{ transform:translateY(-30px) rotate(0deg); opacity:0; } 10%{ opacity:1; } 100%{ transform:translateY(calc(100vh + 40px)) rotate(720deg); opacity:.4; } }

/* WooCommerce niceties */
.woocommerce ul.products li.product .button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit, .woocommerce a.button.alt{ background:var(--fcp-gold)!important; color:#fff!important; border-radius:2px; font-size:.75rem; letter-spacing:.14em; text-transform:uppercase; padding:.9rem 1.6rem; }
.woocommerce ul.products li.product .button:hover, .woocommerce a.button:hover{ background:var(--fcp-gold-2)!important; color:#fff!important; }
.woocommerce div.product p.price, .woocommerce div.product span.price, .woocommerce ul.products li.product .price{ color:var(--fcp-text)!important; }
.woocommerce .star-rating span{ color:var(--fcp-gold); }
.woocommerce-message, .woocommerce-info, .woocommerce-error{ border-top-color:var(--fcp-gold)!important; }

/* Personalization form styles (used by the plugin) */
.fcgcp-wrap{ margin:20px 0 0; padding:24px; background:var(--fcp-surface-2); border:1px solid var(--fcp-border); }
.fcgcp-heading{ font-family:var(--fcp-serif); font-size:1.5rem; margin:0 0 8px; color:var(--fcp-text); }
.fcgcp-sub{ margin:0 0 20px; color:var(--fcp-text-2); font-size:.9rem; }
.fcgcp-row{ display:grid; grid-template-columns:1fr; gap:14px; margin-bottom:14px; }
@media(min-width:640px){ .fcgcp-row.fcgcp-row-2{ grid-template-columns:1fr 1fr; } .fcgcp-row.fcgcp-row-3{ grid-template-columns:1fr 1fr 1fr; } }
.fcgcp-label{ display:block; font-size:.75rem; text-transform:uppercase; letter-spacing:.14em; color:var(--fcp-text); margin-bottom:6px; font-weight:500; }
.fcgcp-help{ font-size:.75rem; color:var(--fcp-text-2); margin-top:4px; }
.fcgcp-dropzone{ border:2px dashed var(--fcp-gold); background:#fff; padding:24px; text-align:center; border-radius:2px; cursor:pointer; transition:background .3s ease; }
.fcgcp-dropzone:hover{ background:var(--fcp-gold-light); }
.fcgcp-thumbs{ display:grid; grid-template-columns:repeat(5, minmax(0,1fr)); gap:8px; margin-top:12px; }
.fcgcp-thumb{ position:relative; aspect-ratio:1; background:var(--fcp-surface-2); overflow:hidden; }
.fcgcp-thumb img{ width:100%; height:100%; object-fit:cover; }
.fcgcp-thumb-remove{ position:absolute; top:4px; right:4px; width:22px; height:22px; border:none; border-radius:50%; background:rgba(0,0,0,.65); color:#fff; cursor:pointer; font-size:.85rem; line-height:1; }
.fcgcp-price-bar{ position:sticky; bottom:0; z-index:5; background:#fff; border:1px solid var(--fcp-border); padding:16px 20px; margin-top:20px; display:flex; justify-content:space-between; align-items:center; gap:12px; box-shadow:var(--fcp-shadow-hover); }
.fcgcp-price-label{ font-size:.72rem; text-transform:uppercase; letter-spacing:.14em; color:var(--fcp-text-2); }
.fcgcp-price-total{ font-family:var(--fcp-serif); font-size:1.8rem; color:var(--fcp-gold); }
.fcgcp-actions{ display:flex; gap:10px; flex-wrap:wrap; }
.fcgcp-whatsapp-btn{ background:#25D366; color:#fff; }
.fcgcp-whatsapp-btn:hover{ background:#1EB955; color:#fff; }
.fcgcp-pincode-check{ display:flex; gap:8px; }
.fcgcp-pincode-status{ margin-top:6px; font-size:.85rem; }
.fcgcp-pincode-ok{ color:#237547; }
.fcgcp-pincode-bad{ color:#B33A3A; }
.fcgcp-radio-group{ display:flex; flex-wrap:wrap; gap:8px; }
.fcgcp-chip{ display:inline-flex; align-items:center; gap:6px; padding:8px 14px; border:1px solid var(--fcp-border); background:#fff; cursor:pointer; font-size:.8rem; border-radius:2px; transition:border-color .25s ease, background .25s ease; }
.fcgcp-chip input{ display:none; }
.fcgcp-chip.is-active{ border-color:var(--fcp-gold); background:var(--fcp-gold-light); color:var(--fcp-text); }
.fcp-cat-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:25px;
    background:linear-gradient(transparent,rgba(0,0,0,.75));
    color:#fff;
    text-align:left;
}

.fcp-cat-label{
    display:inline-block;
    background:#D4AF37;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:11px;
    letter-spacing:2px;
    font-weight:700;
    margin-bottom:10px;
}

.fcp-cat-name{
    font-size:30px;
    font-weight:700;
    margin:10px 0;
}

.fcp-cat-btn{
    display:inline-block;
    color:#D4AF37;
    font-weight:600;
    margin-top:8px;
}