/* =========================================================
   GLITTERcat Brand System v2
   Mobile-first storefront layer. Loaded after legacy CSS.
   ========================================================= */
:root {
    --gc-bg: #FFFDFB;
    --gc-primary-pink: #F8D7E8;
    --gc-blush: #F6BFD8;
    --gc-dream-blue: #DDEBFF;
    --gc-lilac: #E8DDF7;
    --gc-butter: #FFF2C7;
    --gc-text: #5B4B63;
    --gc-accent: #FF72B6;
    --gc-white: #FFFFFF;
    --gc-navy: #2F4156;
    --gc-teal: #567C8D;
    --gc-muted: #8A7B90;
    --gc-border: rgba(91, 75, 99, .12);
    --gc-radius-sm: 14px;
    --gc-radius-md: 20px;
    --gc-radius-lg: 30px;
    --gc-radius-xl: 40px;
    --gc-shadow-soft: 0 14px 38px rgba(77, 57, 87, .08);
    --gc-shadow-card: 0 9px 24px rgba(77, 57, 87, .07);
    --gc-space-1: 6px;
    --gc-space-2: 10px;
    --gc-space-3: 14px;
    --gc-space-4: 18px;
    --gc-space-5: 24px;
    --gc-space-6: 32px;
    --gc-space-7: 48px;
    --gc-space-8: 68px;
    --primary-color: var(--gc-accent);
    --secondary-color: var(--gc-blush);
    --accent-color: var(--gc-navy);
    --accent-color-dark: #243447;
    --grey-color: #FFF9FC;
    --text-gray: var(--gc-text);
}

html { scroll-behavior: smooth; }
body.body {
    background: var(--gc-bg) !important;
    color: var(--gc-text);
    font-family: 'Nunito', 'Inter', system-ui, -apple-system, sans-serif;
    padding-bottom: 76px;
}
body.body h1,
body.body h2,
body.body h3,
body.body h4,
body.body h5,
body.body h6 { font-family: 'Fredoka', 'Nunito', sans-serif; color: var(--gc-text); }
a { text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.gc-site-shell { min-height: 100vh; background: var(--gc-bg); }
.gc-main { padding: 0 0 54px; }
.gc-inner-main { padding-top: 28px; }
.gc-kicker {
    display: inline-block;
    color: #8F6B7F;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

/* Header */
.gc-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: rgba(255, 253, 251, .94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--gc-border);
}
.gc-announcement {
    min-height: 31px;
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(90deg, var(--gc-primary-pink), #FFF0F6 46%, var(--gc-dream-blue));
    color: var(--gc-text);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
}
.gc-announcement .container { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gc-header-main {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.gc-logo-link { display: inline-flex; align-items: center; flex-shrink: 0; }
.gc-logo-img { display: block; width: 154px; height: auto; max-height: 60px; object-fit: contain; mix-blend-mode: multiply; }
.gc-header-tools { display: flex; align-items: center; gap: 8px; }
.gc-round-tool {
    position: relative;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--gc-border);
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    color: var(--gc-text) !important;
    font-size: 17px;
}
.gc-wishlist-count {
    position: absolute;
    top: -3px;
    right: -3px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    display: grid;
    place-items: center;
    background: var(--gc-accent);
    color: white;
    border: 2px solid var(--gc-bg);
    border-radius: 99px;
    font-size: 9px;
    font-weight: 900;
}
.gc-header-bag {
    min-height: 44px;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--gc-text);
    color: #fff !important;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
}
.gc-desktop-nav { align-items: center; gap: 21px; margin-left: auto; }
.gc-desktop-nav a {
    color: var(--gc-text);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .07em;
    transition: color .2s ease;
}
.gc-desktop-nav a:hover { color: var(--gc-accent); }
.gc-mobile-search-wrap { padding-bottom: 12px; }
.gc-search {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 15px;
    background: #fff;
    border: 1px solid var(--gc-border);
    border-radius: 999px;
    overflow: hidden;
}
.gc-search input {
    min-width: 0;
    flex: 1;
    border: 0 !important;
    outline: 0;
    background: transparent !important;
    color: var(--gc-text);
    font-size: 13px;
}
.gc-search button {
    align-self: stretch;
    min-width: 48px;
    border: 0;
    background: var(--gc-text);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
}
.gc-search-desktop { margin: 0 0 13px auto; max-width: 540px; min-height: 42px; }

/* Hero */
.gc-hero-v2 {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    margin: 16px 0 48px;
    min-height: 560px;
    border: 1px solid rgba(232,204,215,.68);
    border-radius: 28px;
    background:
        radial-gradient(circle at 20% 18%, rgba(255,255,255,.96), transparent 30%),
        linear-gradient(135deg, #FFF8F5 0%, #FFF3F7 48%, #EDF5FF 100%);
    box-shadow: var(--gc-shadow-soft);
}
.gc-hero-pattern { position: absolute; z-index: -1; pointer-events: none; opacity: .42; }
.gc-hero-pattern-lace {
    left: -40px; top: -15px; width: 220px; height: 220px;
    background-image:
        radial-gradient(circle at 50% 50%, transparent 37%, rgba(232,204,215,.42) 38%, rgba(232,204,215,.42) 41%, transparent 42%),
        radial-gradient(circle at 0 100%, transparent 39%, rgba(232,204,215,.34) 40%, rgba(232,204,215,.34) 43%, transparent 44%);
    background-size: 44px 44px;
    transform: rotate(-12deg);
}
.gc-hero-pattern-gingham {
    right: -35px; top: -25px; width: 240px; height: 180px;
    background-image:
        linear-gradient(rgba(199,217,230,.34) 50%, transparent 50%),
        linear-gradient(90deg, rgba(199,217,230,.34) 50%, transparent 50%);
    background-size: 28px 28px;
    transform: rotate(9deg);
}
.gc-hero-copy-v2 { padding: 48px 24px 24px; position: relative; z-index: 2; }
.gc-hero-copy-v2 h1 {
    margin: 12px 0 16px;
    max-width: 700px;
    font-size: clamp(40px, 12vw, 68px);
    line-height: .98;
    letter-spacing: -.045em;
    font-weight: 900;
}
.gc-hero-copy-v2 h1 em { color: var(--gc-accent); font-style: normal; }
.gc-hero-copy-v2 p { max-width: 560px; margin: 0; color: var(--gc-muted); font-size: 15px; line-height: 1.65; }
.gc-hero-actions-v2 { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.gc-pill-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    transition: transform .2s ease, box-shadow .2s ease;
}
.gc-pill-button:hover { transform: translateY(-2px); }
.gc-pill-button-dark { background: var(--gc-text); color: #fff !important; box-shadow: 0 10px 22px rgba(91,75,99,.16); }
.gc-pill-button-light { background: rgba(255,255,255,.84); color: var(--gc-text) !important; border: 1px solid var(--gc-border); }
.gc-hero-mini-copy { margin-top: 20px; color: #94798A; font-family: 'Caveat', cursive; font-size: 24px; }
.gc-hero-art { position: relative; min-height: 270px; display: grid; place-items: center; padding: 0 16px 24px; }
.gc-hero-logo-art { width: min(100%, 500px); max-height: 245px; object-fit: contain; border-radius: 24px; mix-blend-mode: multiply; }
.gc-float-sticker {
    position: absolute;
    padding: 8px 11px;
    border-radius: 999px;
    border: 1px solid rgba(91,75,99,.10);
    background: rgba(255,255,255,.88);
    box-shadow: var(--gc-shadow-card);
    color: var(--gc-text);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
}
.sticker-one { left: 16px; top: 10px; transform: rotate(-5deg); }
.sticker-two { right: 18px; bottom: 30px; transform: rotate(4deg); }

/* Sections */
.gc-section-block { margin-bottom: 52px; }
.gc-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.gc-section-head h2 { margin: 5px 0 3px; font-size: clamp(27px, 7vw, 40px); line-height: 1.05; font-weight: 900; letter-spacing: -.03em; }
.gc-section-head p { margin: 0; color: var(--gc-muted); font-size: 13px; }
.gc-text-link { color: var(--gc-text) !important; font-size: 10px; font-weight: 900; letter-spacing: .08em; white-space: nowrap; }

.gc-horizontal-products { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 2px 2px 12px; scrollbar-width: none; }
.gc-horizontal-products::-webkit-scrollbar { display: none; }
.gc-horizontal-product-item { flex: 0 0 72%; scroll-snap-align: start; }

.gc-mood-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.gc-mood-card {
    position: relative;
    min-height: 118px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    border: 1px solid var(--gc-border);
    border-radius: 22px;
    color: var(--gc-text) !important;
    box-shadow: var(--gc-shadow-card);
}
.gc-mood-card > span { position: absolute; top: 12px; right: 14px; font-size: 24px; }
.gc-mood-card strong { font-size: 16px; font-weight: 900; }
.gc-mood-card small { margin-top: 2px; color: #8E7C91; font-size: 10px; }
.mood-pink { background: linear-gradient(145deg, #FFF7FA, var(--gc-primary-pink)); }
.mood-blue { background: linear-gradient(145deg, #F8FCFF, var(--gc-dream-blue)); }
.mood-lilac { background: linear-gradient(145deg, #FBF8FF, var(--gc-lilac)); }
.mood-cream { background: linear-gradient(145deg, #FFFDF8, #FFF1E5); }
.mood-butter { background: linear-gradient(145deg, #FFFDF5, var(--gc-butter)); }

/* Product cards */
.gc-product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.gc-product-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: rgba(255,255,255,.94);
    border: 1px solid var(--gc-border);
    border-radius: 20px;
    box-shadow: 0 5px 16px rgba(77,57,87,.04);
    transition: transform .2s ease, box-shadow .2s ease;
}
.gc-product-card:hover { transform: translateY(-3px); box-shadow: var(--gc-shadow-card); }
.gc-product-image-wrap { display: block; position: relative; overflow: hidden; background: #FAF5F8; }
.gc-product-image { display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .3s ease; }
.gc-product-card:hover .gc-product-image { transform: scale(1.025); }
.gc-product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 6px 8px;
    border-radius: 999px;
    background: var(--gc-text);
    color: #fff;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .07em;
}
.gc-product-badge.is-digital { background: #7B6A97; }
.gc-product-heart {
    position: absolute;
    z-index: 3;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(91,75,99,.08);
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    color: var(--gc-text);
    box-shadow: 0 5px 13px rgba(77,57,87,.08);
}
.gc-product-heart.is-active { color: var(--gc-accent); animation: gc-heart-pop .28s ease; }
@keyframes gc-heart-pop { 50% { transform: scale(1.18); } }
.gc-product-body { padding: 11px 11px 13px; }
.gc-product-meta-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 5px; }
.gc-product-category { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #9C8292 !important; font-size: 8px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.gc-product-proof { flex-shrink: 0; color: #A694A8; font-size: 9px; }
.gc-product-name { display: -webkit-box; min-height: 38px; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; color: var(--gc-text) !important; font-size: 12px; line-height: 1.45; font-weight: 900; }
.gc-product-bottom { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 10px; }
.gc-product-price { color: var(--gc-text); font-size: 15px; }
.gc-quick-button {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0 9px;
    border-radius: 999px;
    background: #FFF0F6;
    color: #C84F89 !important;
    font-size: 8px;
    font-weight: 900;
}

/* Price zone */
.gc-price-shop { padding: 24px 16px; border-radius: 28px; background: linear-gradient(135deg, #FFF8FA, #F4F8FF); border: 1px solid var(--gc-border); }
.gc-price-shop-copy h2 { margin: 5px 0; font-size: 30px; font-weight: 900; }
.gc-price-shop-copy p { margin: 0; color: var(--gc-muted); font-size: 12px; }
.gc-price-pills { display: flex; gap: 8px; overflow-x: auto; margin: 17px 0; padding-bottom: 2px; scrollbar-width: none; }
.gc-price-pills a { flex: 0 0 auto; min-height: 40px; display: inline-flex; align-items: center; padding: 0 14px; border-radius: 999px; background: #fff; border: 1px solid var(--gc-border); color: var(--gc-text); font-size: 9px; font-weight: 900; }
.gc-price-pills a.active { background: var(--gc-text); color: #fff; }

/* Digital */
.gc-digital-zone {
    overflow: hidden;
    padding: 26px 16px;
    border-radius: 30px;
    border: 1px solid rgba(200,217,230,.7);
    background:
        radial-gradient(circle at 85% 15%, rgba(255,255,255,.95), transparent 25%),
        linear-gradient(135deg, #EEF6FF, #F7F2FF 52%, #FFF2F8);
}
.gc-digital-copy h2 { margin: 6px 0 9px; font-size: 31px; line-height: 1.02; font-weight: 900; }
.gc-digital-copy p { color: var(--gc-muted); font-size: 13px; line-height: 1.6; }
.gc-digital-copy .gc-pill-button { width: 100%; margin: 8px 0 20px; }
.gc-digital-products { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }

/* Creators */
.gc-creator-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.gc-creator-card { overflow: hidden; background: #fff; border: 1px solid var(--gc-border); border-radius: 22px; box-shadow: var(--gc-shadow-card); }
.gc-creator-profile-row { display: flex; align-items: center; gap: 9px; padding: 11px; }
.gc-creator-avatar { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--gc-primary-pink), var(--gc-dream-blue)); font-weight: 900; }
.gc-creator-profile-row strong { display: block; max-width: 110px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 10px; }
.gc-creator-profile-row span:last-child { display: block; color: #A17B91; font-size: 7px; font-weight: 900; letter-spacing: .08em; }
.gc-creator-product-image img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.gc-creator-product-copy { display: flex; flex-direction: column; gap: 3px; padding: 10px 11px 12px; }
.gc-creator-product-copy a { color: var(--gc-text); font-size: 10px; font-weight: 900; line-height: 1.35; }
.gc-creator-product-copy strong { font-size: 13px; }
.gc-guardian-note { display: flex; gap: 10px; align-items: flex-start; margin-top: 14px; padding: 12px 14px; border-radius: 16px; background: #F7F8FB; color: #756A7A; font-size: 10px; line-height: 1.5; }
.gc-guardian-note i { color: var(--gc-teal); font-size: 17px; }

/* Bestie + club */
.gc-bestie-banner { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 26px; padding: 27px 20px; border-radius: 30px; background: linear-gradient(120deg, var(--gc-primary-pink), #FFF8F3 52%, var(--gc-dream-blue)); border: 1px solid var(--gc-border); }
.gc-bestie-banner h2 { margin: 6px 0; font-size: 29px; font-weight: 900; line-height: 1.03; }
.gc-bestie-banner p { margin: 0; color: #7F6F81; font-size: 12px; }
.gc-glitter-club { display: grid; grid-template-columns: 92px 1fr; gap: 15px; align-items: center; margin-bottom: 10px; padding: 20px; border-radius: 26px; background: #fff; border: 1px solid var(--gc-border); }
.gc-glitter-club img { width: 92px; height: 92px; object-fit: cover; border-radius: 22px; mix-blend-mode: multiply; }
.gc-glitter-club h2 { margin: 4px 0; font-size: 23px; font-weight: 900; }
.gc-glitter-club p { margin: 0; color: var(--gc-muted); font-size: 11px; }

/* Sidebar on legacy catalogue pages */
.gc-side-panel { top: 122px; padding: 18px; border: 1px solid var(--gc-border); border-radius: 22px; background: #fff; box-shadow: var(--gc-shadow-card); }

/* Wishlist drawer */
.gc-wishlist-drawer { width: min(92vw, 420px) !important; background: var(--gc-bg); }
.gc-wishlist-drawer .offcanvas-header { border-bottom: 1px solid var(--gc-border); }
.gc-wishlist-drawer h5 { margin-top: 2px; font-weight: 900; }
.gc-wishlist-empty { padding: 42px 15px; text-align: center; }
.gc-wishlist-empty img { width: 125px; height: 125px; object-fit: cover; border-radius: 26px; mix-blend-mode: multiply; }
.gc-wishlist-empty h6 { margin: 14px 0 4px; font-size: 18px; font-weight: 900; }
.gc-wishlist-empty p { color: var(--gc-muted); font-size: 12px; }
.gc-wishlist-row { display: grid; grid-template-columns: 70px 1fr 36px; gap: 11px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--gc-border); }
.gc-wishlist-thumb img { width: 70px; height: 70px; object-fit: cover; border-radius: 16px; }
.gc-wishlist-copy a { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; color: var(--gc-text); font-size: 11px; font-weight: 900; }
.gc-wishlist-copy strong { display: block; margin-top: 4px; font-size: 12px; }
.gc-wishlist-remove { width: 36px; height: 36px; border: 0; border-radius: 50%; background: #FFF0F6; color: var(--gc-text); }

/* Mobile bottom nav */
.gc-mobile-bottom-nav {
    position: fixed;
    left: 8px;
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    z-index: 1050;
    min-height: 64px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    padding: 8px 5px 7px;
    border: 1px solid rgba(91,75,99,.14);
    border-radius: 22px;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 38px rgba(75,55,83,.16);
}
.gc-mobile-bottom-nav a,
.gc-mobile-bottom-nav button {
    min-height: 48px;
    border: 0;
    background: transparent;
    color: #89798D !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
    font-size: 9px;
    font-weight: 800;
}
.gc-mobile-bottom-nav i { font-size: 18px; }
.gc-mobile-bottom-nav .active { color: var(--gc-accent) !important; }
.gc-discover-button { transform: translateY(-7px); }
.gc-discover-orb { width: 49px; height: 49px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--gc-accent), #A58AF0); color: #fff; box-shadow: 0 8px 18px rgba(255,114,182,.28); }
.gc-discover-orb i { font-size: 18px; }
.gc-nav-icon-wrap { position: relative; }
.gc-nav-icon-wrap b { position: absolute; top: -7px; right: -12px; min-width: 16px; height: 16px; display: grid; place-items: center; border-radius: 99px; background: var(--gc-accent); color: #fff; font-size: 8px; }

/* Footer refinement */
.gc-footer { background: #514555 !important; }
.gc-footer .gc-brand-text { font-family: 'Fredoka', sans-serif; }

/* Desktop */
@media (min-width: 768px) {
    body.body { padding-bottom: 0; }
    .gc-logo-img { width: 168px; max-height: 64px; }
    .gc-hero-v2 { grid-template-columns: 1.02fr .98fr; min-height: 500px; margin-top: 26px; border-radius: 36px; }
    .gc-hero-copy-v2 { padding: 76px 24px 64px 56px; }
    .gc-hero-actions-v2 { flex-direction: row; }
    .gc-hero-actions-v2 .gc-pill-button { min-width: 170px; }
    .gc-hero-art { min-height: 100%; padding: 24px 38px; }
    .gc-horizontal-product-item { flex-basis: 31%; }
    .gc-mood-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
    .gc-mood-card { min-height: 150px; }
    .gc-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
    .gc-product-card { border-radius: 24px; }
    .gc-product-body { padding: 14px 14px 16px; }
    .gc-product-name { min-height: 42px; font-size: 13px; }
    .gc-product-price { font-size: 17px; }
    .gc-price-shop { padding: 34px; }
    .gc-price-shop-copy h2 { font-size: 38px; }
    .gc-digital-zone { display: grid; grid-template-columns: .75fr 1.25fr; gap: 28px; align-items: center; padding: 36px; }
    .gc-digital-copy .gc-pill-button { width: auto; }
    .gc-digital-products { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .gc-creator-grid { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 15px; }
    .gc-bestie-banner { flex-direction: row; align-items: center; justify-content: space-between; padding: 36px 40px; }
    .gc-glitter-club { grid-template-columns: 120px 1fr; padding: 28px 34px; }
    .gc-glitter-club img { width: 120px; height: 120px; }
}

@media (min-width: 992px) {
    .gc-header-main { min-height: 68px; }
    .gc-logo-img { width: 184px; max-height: 68px; }
    .gc-horizontal-product-item { flex-basis: 23%; }
    .gc-mood-grid { grid-template-columns: repeat(7,minmax(0,1fr)); }
    .gc-section-block { margin-bottom: 72px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* =========================================================
   GLITTERcat ready-stock ecommerce — UPDATE 003
   ========================================================= */
.gc-header-bag {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 11px;
    border: 1px solid rgba(91,75,99,.10);
    border-radius: 999px;
    background: #fff;
    color: var(--gc-text);
    font: inherit;
    font-size: 10px;
    font-weight: 900;
    position: relative;
}
.gc-header-bag b {
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: var(--gc-accent);
    color: #fff;
    font-size: 8px;
}
.gc-header-bag b.is-empty { background: #B9ABB8; }

.gc-shop-hero {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin: 22px 0 16px;
    padding: 28px 20px;
    border: 1px solid var(--gc-border);
    border-radius: 30px;
    background:
        radial-gradient(circle at 92% 18%, rgba(255,255,255,.95) 0 10%, transparent 28%),
        linear-gradient(120deg, #FFF3F8, #F8FBFF 58%, #EEF5FF);
}
.gc-shop-hero::before,
.gc-shop-hero::after {
    content: "✦";
    position: absolute;
    color: #D6A9C2;
    font-size: 23px;
    opacity: .7;
}
.gc-shop-hero::before { right: 82px; top: 24px; }
.gc-shop-hero::after { right: 37px; top: 64px; color: #A9C8E4; font-size: 14px; }
.gc-shop-hero h1,
.gc-simple-page-head h1 { margin: 5px 0 8px; color: var(--gc-text); font-size: clamp(28px, 7vw, 48px); line-height: 1; font-weight: 900; }
.gc-shop-hero p,
.gc-simple-page-head p { max-width: 680px; margin: 0; color: var(--gc-muted); font-size: 12px; line-height: 1.6; }
.gc-shop-hero-stats { min-width: 72px; display: none; text-align: center; }
.gc-shop-hero-stats strong { display: block; font-size: 28px; line-height: 1; }
.gc-shop-hero-stats span { color: var(--gc-muted); font-size: 9px; font-weight: 800; }

.gc-shop-filter {
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    padding: 12px;
    border: 1px solid var(--gc-border);
    border-radius: 22px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--gc-shadow-card);
}
.gc-shop-search { min-height: 46px; display: flex; align-items: center; gap: 9px; padding: 0 13px; border-radius: 16px; background: #F8F7FA; }
.gc-shop-search i { color: #A18FA2; }
.gc-shop-search input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--gc-text); font-size: 13px; }
.gc-shop-filter-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.gc-shop-filter-row select,
.gc-stock-toggle { min-height: 44px; border: 1px solid var(--gc-border); border-radius: 14px; background: #fff; color: var(--gc-text); font-size: 10px; font-weight: 800; }
.gc-shop-filter-row select { width: 100%; padding: 0 10px; }
.gc-stock-toggle { display: flex; align-items: center; gap: 7px; padding: 0 10px; }
.gc-stock-toggle input { accent-color: var(--gc-accent); }
.gc-shop-filter-row .gc-pill-button { grid-column: 1 / -1; width: 100%; min-height: 44px; }

.gc-shop-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 11px; }
.gc-pagination-wrap { display: flex; justify-content: center; margin: 30px 0 56px; }
.gc-pagination-wrap .pagination { gap: 4px; }
.gc-pagination-wrap .page-link { min-width: 38px; min-height: 38px; display: grid; place-items: center; border-radius: 12px !important; border-color: var(--gc-border); color: var(--gc-text); }
.gc-pagination-wrap .active .page-link { background: var(--gc-text); border-color: var(--gc-text); }
.gc-empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 360px; padding: 42px 20px; text-align: center; }
.gc-empty-state img { width: 120px; height: 120px; object-fit: cover; border-radius: 26px; mix-blend-mode: multiply; }
.gc-empty-state h2 { margin: 15px 0 6px; font-size: 24px; font-weight: 900; }
.gc-empty-state p { margin: 0 0 18px; color: var(--gc-muted); font-size: 12px; }

.gc-product-card.is-sold-out { opacity: .72; }
.gc-sold-out-overlay { position: absolute; inset: auto 10px 10px 10px; z-index: 3; padding: 7px 9px; border-radius: 999px; background: rgba(91,75,99,.88); color: #fff; text-align: center; font-size: 8px; font-weight: 900; letter-spacing: .08em; }
.gc-product-proof.is-stock { color: #4A9375; font-weight: 800; }
.gc-product-proof.is-out { color: #B66B7D; font-weight: 800; }
.gc-product-price-stack { min-height: 24px; display: flex; align-items: baseline; gap: 6px; margin-top: 8px; }
.gc-product-price-stack del { color: #B2A4B1; font-size: 9px; }
.gc-product-bottom { margin-top: 7px; }
.gc-quick-add { width: 100%; min-height: 34px; justify-content: center; border: 0; cursor: pointer; }
.gc-quick-add:disabled { cursor: not-allowed; background: #F2EDF1; color: #A99DA8 !important; }

.gc-breadcrumb { display: flex; gap: 7px; align-items: center; overflow: hidden; margin: 18px 0; color: #A18FA2; font-size: 9px; font-weight: 800; white-space: nowrap; }
.gc-breadcrumb a { color: #7F7083; }
.gc-breadcrumb span:last-child { overflow: hidden; text-overflow: ellipsis; }
.gc-product-page { display: grid; grid-template-columns: 1fr; gap: 22px; margin-bottom: 48px; }
.gc-product-main-image { position: relative; overflow: hidden; border: 1px solid var(--gc-border); border-radius: 28px; background: #FAF8FA; }
.gc-product-main-image img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.gc-detail-badge { position: absolute; left: 14px; top: 14px; padding: 8px 10px; border-radius: 999px; background: rgba(255,255,255,.91); color: var(--gc-text); font-size: 8px; font-weight: 900; box-shadow: 0 4px 20px rgba(91,75,99,.10); }
.gc-product-thumbs { display: flex; gap: 8px; overflow-x: auto; padding-top: 9px; scrollbar-width: none; }
.gc-product-thumbs button { flex: 0 0 62px; width: 62px; height: 62px; padding: 0; overflow: hidden; border: 2px solid transparent; border-radius: 15px; background: #fff; }
.gc-product-thumbs button.active { border-color: var(--gc-accent); }
.gc-product-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.gc-product-info-panel { padding: 3px 0; }
.gc-product-info-topline { display: flex; justify-content: space-between; align-items: center; color: #A38798; font-size: 9px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.gc-detail-heart { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--gc-border); border-radius: 50%; background: #fff; color: var(--gc-text); font-size: 17px; }
.gc-product-info-panel h1 { margin: 10px 0 7px; color: var(--gc-text); font-size: clamp(27px, 7vw, 46px); line-height: 1.05; font-weight: 900; }
.gc-detail-rating { display: flex; gap: 10px; align-items: center; }
.gc-detail-rating span { color: #E8B15A; font-size: 12px; letter-spacing: 1px; }
.gc-detail-rating small { color: var(--gc-muted); font-size: 9px; }
.gc-detail-price-row { display: flex; align-items: baseline; gap: 9px; margin: 15px 0 10px; }
.gc-detail-price-row strong { font-size: 26px; }
.gc-detail-price-row del { color: #A99BAA; font-size: 12px; }
.gc-stock-message { display: inline-flex; align-items: center; gap: 7px; padding: 8px 10px; border-radius: 999px; font-size: 9px; font-weight: 900; }
.gc-stock-message.is-in { background: #EFF9F5; color: #438466; }
.gc-stock-message.is-out { background: #FFF1F3; color: #A75468; }
.gc-detail-attributes { display: grid; gap: 7px; margin: 16px 0; }
.gc-detail-attributes div { display: flex; justify-content: space-between; gap: 12px; padding: 10px 12px; border-radius: 12px; background: #FAF8FA; font-size: 10px; }
.gc-detail-attributes span { color: var(--gc-muted); }
.gc-detail-purchase { display: grid; grid-template-columns: 108px 1fr; gap: 9px; margin: 20px 0; }
.gc-quantity-picker { min-height: 50px; display: grid; grid-template-columns: 32px 1fr 32px; align-items: center; border: 1px solid var(--gc-border); border-radius: 16px; background: #fff; }
.gc-quantity-picker button { height: 100%; border: 0; background: transparent; color: var(--gc-text); font-size: 18px; }
.gc-quantity-picker input { width: 100%; border: 0; outline: 0; text-align: center; color: var(--gc-text); font-weight: 900; -moz-appearance: textfield; }
.gc-quantity-picker input::-webkit-outer-spin-button,
.gc-quantity-picker input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.gc-add-bag-button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 0 16px; border: 0; border-radius: 999px; background: var(--gc-text); color: #fff !important; font-size: 10px; font-weight: 900; letter-spacing: .02em; text-align: center; cursor: pointer; }
.gc-add-bag-button:hover { transform: translateY(-1px); box-shadow: 0 9px 24px rgba(91,75,99,.16); }
.gc-add-bag-button:disabled { background: #BEB3BD; cursor: not-allowed; }
.gc-detail-delivery { display: grid; gap: 8px; margin-top: 18px; }
.gc-detail-delivery > div { display: grid; grid-template-columns: 35px 1fr; gap: 9px; align-items: center; padding: 10px; border: 1px solid var(--gc-border); border-radius: 15px; background: #fff; }
.gc-detail-delivery i { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 12px; background: #FFF2F7; color: #C85D8C; }
.gc-detail-delivery strong { display: block; font-size: 10px; }
.gc-detail-delivery small { display: block; margin-top: 1px; color: var(--gc-muted); font-size: 8px; }
.gc-detail-copy-section { margin-bottom: 55px; padding: 24px 18px; border-radius: 28px; background: linear-gradient(135deg, #FFF9FB, #F7FAFF); border: 1px solid var(--gc-border); }
.gc-detail-copy-section h2 { margin: 4px 0 18px; font-size: 27px; font-weight: 900; }
.gc-love-grid { display: grid; grid-template-columns: 1fr; gap: 9px; }
.gc-love-grid > div { padding: 15px; border-radius: 18px; background: #fff; border: 1px solid var(--gc-border); }
.gc-love-grid span { display: block; margin-bottom: 5px; font-size: 18px; }
.gc-love-grid strong { display: block; font-size: 11px; }
.gc-love-grid p { margin: 2px 0 0; color: var(--gc-muted); font-size: 9px; }
.gc-product-description { margin-top: 18px; padding-top: 18px; border-top: 1px dashed #DCCFD8; color: #6C5F70; font-size: 12px; line-height: 1.8; }

/* Cart drawer */
.gc-cart-drawer { width: min(94vw, 440px) !important; background: var(--gc-bg); }
.gc-cart-drawer .offcanvas-header { border-bottom: 1px solid var(--gc-border); }
.gc-cart-drawer h5 { margin: 2px 0 0; font-size: 19px; font-weight: 900; }
.gc-cart-loading { padding: 32px 10px; text-align: center; color: var(--gc-muted); font-size: 11px; }
.gc-cart-drawer-empty { padding: 40px 10px; text-align: center; }
.gc-cart-drawer-empty img { width: 110px; height: 110px; object-fit: cover; border-radius: 24px; mix-blend-mode: multiply; }
.gc-cart-drawer-empty h6 { margin: 13px 0 3px; font-size: 20px; font-weight: 900; }
.gc-cart-drawer-empty p { margin-bottom: 15px; color: var(--gc-muted); font-size: 11px; }
.gc-cart-drawer-row { display: grid; grid-template-columns: 76px 1fr auto; gap: 10px; align-items: start; padding: 11px 0; border-bottom: 1px solid var(--gc-border); }
.gc-cart-drawer-thumb img { width: 76px; height: 76px; object-fit: cover; border-radius: 16px; }
.gc-cart-drawer-copy > a { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; color: var(--gc-text); font-size: 10px; line-height: 1.35; font-weight: 900; }
.gc-cart-drawer-copy > strong { display: block; margin-top: 4px; font-size: 11px; }
.gc-cart-line-total { padding-top: 2px; font-size: 10px; white-space: nowrap; }
.gc-cart-drawer-qty { display: flex; align-items: center; gap: 5px; margin-top: 8px; }
.gc-cart-drawer-qty button { min-width: 28px; height: 28px; border: 1px solid var(--gc-border); border-radius: 10px; background: #fff; color: var(--gc-text); }
.gc-cart-drawer-qty .remove { width: auto; padding: 0 7px; border: 0; background: transparent; color: #B66B7D; font-size: 8px; }
.gc-cart-drawer-qty span { min-width: 18px; text-align: center; font-size: 10px; font-weight: 900; }
.gc-cart-drawer-summary { position: sticky; bottom: 0; margin-top: 12px; padding: 14px; border: 1px solid var(--gc-border); border-radius: 20px; background: rgba(255,255,255,.96); box-shadow: 0 -5px 26px rgba(91,75,99,.06); }
.gc-cart-progress { margin-bottom: 12px; color: #7B6B7E; font-size: 9px; font-weight: 800; }
.gc-cart-progress > div { height: 7px; overflow: hidden; margin-top: 6px; border-radius: 999px; background: #F1EAF0; }
.gc-cart-progress i { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--gc-accent), #9CBCE3); transition: width .25s ease; }
.gc-cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 11px; }
.gc-cart-total span { color: var(--gc-muted); font-size: 10px; }
.gc-cart-total strong { font-size: 18px; }
.gc-cart-drawer-summary .gc-add-bag-button { width: 100%; }
.gc-cart-drawer-summary .gc-text-link { display: block; margin-top: 10px; text-align: center; }

/* Full cart / checkout */
.gc-simple-page-head { padding: 28px 0 18px; }
.gc-cart-page-layout,
.gc-checkout-layout { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 56px; }
.gc-cart-page-items { display: grid; gap: 9px; }
.gc-cart-page-item { display: grid; grid-template-columns: 86px 1fr; gap: 11px; padding: 10px; border: 1px solid var(--gc-border); border-radius: 20px; background: #fff; }
.gc-cart-page-item > a img { width: 86px; height: 86px; object-fit: cover; border-radius: 15px; }
.gc-cart-page-copy > a { display: block; color: var(--gc-text); font-size: 11px; font-weight: 900; line-height: 1.35; }
.gc-cart-page-copy small { display: block; margin: 3px 0; color: var(--gc-muted); font-size: 8px; }
.gc-cart-page-copy strong { font-size: 12px; }
.gc-cart-page-actions { grid-column: 1 / -1; display: flex; justify-content: flex-end; align-items: center; gap: 7px; }
.gc-cart-page-actions select { min-height: 38px; padding: 0 10px; border: 1px solid var(--gc-border); border-radius: 12px; background: #fff; }
.gc-cart-page-actions button { min-height: 38px; border: 0; background: transparent; color: #B65F76; font-size: 9px; font-weight: 800; }
.gc-cart-summary-card { align-self: start; padding: 18px; border: 1px solid var(--gc-border); border-radius: 22px; background: #fff; box-shadow: var(--gc-shadow-card); }
.gc-cart-summary-card > div:not(.gc-free-delivery-note):not(.gc-checkout-mini-item) { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; font-size: 10px; }
.gc-free-delivery-note { margin: 10px 0 13px; padding: 10px; border-radius: 13px; background: #F2F7FF; color: #5F6F8B; font-size: 9px; font-weight: 800; }
.gc-cart-summary-card .gc-add-bag-button { width: 100%; margin-top: 8px; }
.gc-cart-summary-card .gc-text-link { display: block; margin-top: 12px; text-align: center; }

.gc-checkout-form-card { padding: 18px; border: 1px solid var(--gc-border); border-radius: 24px; background: #fff; }
.gc-checkout-form-card h2 { margin: 12px 0 10px; font-size: 17px; font-weight: 900; }
.gc-form-grid { display: grid; grid-template-columns: 1fr; gap: 9px; }
.gc-form-grid label,
.gc-form-label { display: block; }
.gc-form-grid label > span,
.gc-form-label > span { display: block; margin: 0 0 5px 2px; color: #7D7080; font-size: 9px; font-weight: 800; }
.gc-form-grid input,
.gc-form-label textarea { width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid var(--gc-border); border-radius: 14px; outline: 0; background: #FCFBFC; color: var(--gc-text); font-size: 12px; }
.gc-form-label { margin-top: 9px; }
.gc-form-label textarea { min-height: 82px; resize: vertical; }
.gc-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.gc-choice-grid label { position: relative; cursor: pointer; }
.gc-choice-grid input { position: absolute; opacity: 0; pointer-events: none; }
.gc-choice-grid label > span { min-height: 92px; display: flex; flex-direction: column; justify-content: center; gap: 2px; padding: 12px; border: 1px solid var(--gc-border); border-radius: 16px; background: #FCFBFC; }
.gc-choice-grid input:checked + span { border-color: #E5A8C6; background: #FFF2F7; box-shadow: inset 0 0 0 1px #F3BED5; }
.gc-choice-grid i { margin-bottom: 3px; color: #C95F91; font-size: 17px; }
.gc-choice-grid strong { font-size: 10px; }
.gc-choice-grid small { color: var(--gc-muted); font-size: 8px; line-height: 1.35; }
.gc-checkout-mini-item { display: flex; justify-content: space-between; gap: 10px; padding: 7px 0; border-bottom: 1px solid #F0E9EF; font-size: 9px; }
.gc-checkout-mini-item span { max-width: 70%; }
.gc-summary-total { margin-top: 8px; font-size: 12px !important; }
.gc-checkout-summary p,
.gc-checkout-summary > small { color: var(--gc-muted); font-size: 8px; line-height: 1.5; }

/* QPay / order success */
.gc-payment-card { max-width: 720px; margin: 34px auto 60px; padding: 24px; border: 1px solid var(--gc-border); border-radius: 28px; background: #fff; text-align: center; box-shadow: var(--gc-shadow-card); }
.gc-payment-card h1 { margin: 5px 0 8px; font-size: 28px; font-weight: 900; }
.gc-qpay-qr { width: min(290px, 82vw); display: block; margin: 18px auto; border-radius: 18px; }
.gc-bank-app-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 18px; }
.gc-bank-app-grid a { padding: 8px; border: 1px solid var(--gc-border); border-radius: 13px; background: #fff; color: var(--gc-text); font-size: 7px; }
.gc-bank-app-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; border-radius: 9px; }
.gc-bank-app-grid span { display: block; overflow: hidden; margin-top: 4px; text-overflow: ellipsis; white-space: nowrap; }
.gc-payment-help { margin-top: 15px; color: var(--gc-muted); font-size: 9px; }
.gc-payment-success i { color: #56A67D; font-size: 42px; }
.gc-order-success { max-width: 760px; margin: 35px auto 22px; text-align: center; }
.gc-success-icon { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 12px; border-radius: 50%; background: linear-gradient(135deg, #FFDCEA, #DCEBFF); color: #B85B8A; font-size: 28px; }
.gc-order-success h1 { margin: 7px 0; font-size: clamp(29px, 7vw, 47px); font-weight: 900; }
.gc-order-success p { color: var(--gc-muted); font-size: 11px; }
.gc-order-status-pills { display: flex; justify-content: center; gap: 7px; flex-wrap: wrap; margin-top: 12px; }
.gc-order-status-pills span { padding: 8px 11px; border-radius: 999px; background: #FFF2F7; color: #926179; font-size: 9px; font-weight: 900; }
.gc-order-receipt { max-width: 850px; display: grid; grid-template-columns: 1fr; gap: 12px; margin: 0 auto; }
.gc-order-receipt-items,
.gc-order-address { padding: 18px; border: 1px solid var(--gc-border); border-radius: 20px; background: #fff; }
.gc-order-receipt-items > div { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; border-bottom: 1px solid #F1EDF0; font-size: 10px; }
.gc-order-receipt-items > div.total { margin-top: 4px; border: 0; font-size: 14px; }
.gc-order-address h2 { font-size: 16px; font-weight: 900; }
.gc-order-address p { font-size: 10px; line-height: 1.6; }
.gc-order-address .muted { color: var(--gc-muted); }

@media (min-width: 768px) {
    .gc-shop-hero { padding: 38px 34px; }
    .gc-shop-hero-stats { display: block; }
    .gc-shop-filter-row { grid-template-columns: 1.2fr 1fr 1.2fr auto auto; align-items: center; }
    .gc-shop-filter-row .gc-pill-button { grid-column: auto; width: auto; }
    .gc-shop-grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
    .gc-product-page { grid-template-columns: 1.08fr .92fr; gap: 42px; align-items: start; }
    .gc-product-info-panel { position: sticky; top: 132px; }
    .gc-love-grid { grid-template-columns: repeat(3,1fr); }
    .gc-cart-page-layout { grid-template-columns: minmax(0,1fr) 330px; gap: 24px; }
    .gc-cart-page-item { grid-template-columns: 100px 1fr auto; align-items: center; }
    .gc-cart-page-item > a img { width: 100px; height: 100px; }
    .gc-cart-page-actions { grid-column: auto; }
    .gc-checkout-layout { grid-template-columns: minmax(0,1fr) 360px; gap: 26px; }
    .gc-checkout-summary { position: sticky; top: 130px; }
    .gc-form-grid { grid-template-columns: 1fr 1fr; }
    .gc-form-grid .full { grid-column: 1 / -1; }
    .gc-order-receipt { grid-template-columns: 1.35fr .65fr; }
}

@media (min-width: 992px) {
    .gc-header-bag { padding: 0 14px; }
    .gc-product-main-image img { aspect-ratio: 1 / 1.03; }
}

/* =========================================================
   GLITTERcat UPDATE 004 — compact teen-first product cards
   ========================================================= */
.gc-horizontal-products {
    gap: 10px;
    padding: 2px 1px 12px;
    scroll-padding-inline: 1px;
}
.gc-horizontal-product-item {
    flex: 0 0 46%;
    max-width: 176px;
}
.gc-product-grid,
.gc-shop-grid {
    gap: 10px;
}
.gc-product-card {
    border-radius: 18px;
    box-shadow: 0 5px 14px rgba(91,75,99,.045);
}
.gc-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(91,75,99,.09);
}
.gc-product-media {
    position: relative;
}
.gc-product-image-wrap {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    background:
        radial-gradient(circle at 82% 12%, rgba(248,215,232,.52), transparent 28%),
        linear-gradient(145deg, #fff, #FAF6F9);
}
.gc-product-image {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
    border-radius: 13px;
}
.gc-product-card:hover .gc-product-image {
    transform: scale(1.018);
}
.gc-product-badge {
    top: 7px;
    left: 7px;
    max-width: calc(100% - 52px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 5px 7px;
    font-size: 7px;
    box-shadow: 0 4px 14px rgba(91,75,99,.10);
}
.gc-product-heart {
    top: 7px;
    right: 7px;
    width: 34px;
    height: 34px;
    border: 0;
    box-shadow: 0 4px 13px rgba(91,75,99,.09);
}
.gc-product-body {
    padding: 9px 10px 10px;
}
.gc-product-eyebrow {
    min-height: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    margin-bottom: 3px;
}
.gc-product-eyebrow > span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #A38B9B;
    font-size: 7.5px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.gc-product-eyebrow > small {
    flex: 0 0 auto;
    color: #C15C83;
    font-size: 7px;
    font-weight: 900;
}
.gc-product-name {
    min-height: 34px;
    font-size: 11.5px;
    line-height: 1.4;
    letter-spacing: -.01em;
}
.gc-product-commerce-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 6px;
    margin-top: 7px;
}
.gc-product-price-stack {
    min-width: 0;
    min-height: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px;
}
.gc-product-price {
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
}
.gc-product-price-stack del {
    font-size: 8px;
}
.gc-quick-add-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFF0F7, #F4EEFF);
    color: #C8538A !important;
    box-shadow: inset 0 0 0 1px rgba(255,114,182,.12);
    transition: transform .18s ease, box-shadow .18s ease;
}
.gc-quick-add-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(255,114,182,.16);
}
.gc-quick-add-icon:disabled {
    background: #F2EEF1;
    color: #B9ADB6 !important;
    box-shadow: none;
}
.gc-sold-out-overlay {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 6px 8px;
}
.gc-product-main-image {
    background: linear-gradient(145deg, #fff, #FAF6F9);
}
.gc-product-main-image img {
    object-fit: contain;
    padding: 10px;
}
.gc-product-thumbs img {
    object-fit: contain;
    background: #FAF7F9;
}

@media (min-width: 390px) {
    .gc-horizontal-product-item {
        flex-basis: 43%;
        max-width: 184px;
    }
}

@media (min-width: 768px) {
    .gc-horizontal-product-item {
        flex-basis: 23%;
        max-width: 210px;
    }
    .gc-product-card {
        border-radius: 20px;
    }
    .gc-product-body {
        padding: 11px 12px 12px;
    }
    .gc-product-name {
        min-height: 38px;
        font-size: 12.5px;
    }
    .gc-product-price {
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    .gc-horizontal-product-item {
        flex-basis: 18.5%;
        max-width: 218px;
    }
}
