/* ═══════════════════════════════════════════════════
   CheckoutWithGC — Main Stylesheet
   ═══════════════════════════════════════════════════ */
:root {
  --primary:        #1a1a2e;
  --primary-hover:  #16213e;
  --accent:         #e63946;
  --accent-hover:   #c1121f;
  --accent-light:   #fef0f0;
  --gold:           #f4a261;
  --white:          #ffffff;
  --off-white:      #f9f9f9;
  --gray-50:        #f7f7f7;
  --gray-100:       #f0f0f0;
  --gray-200:       #e0e0e0;
  --gray-300:       #c8c8c8;
  --gray-400:       #a0a0a0;
  --gray-500:       #6e6e6e;
  --gray-700:       #3d3d3d;
  --black:          #111111;
  --success:        #2d6a4f;
  --success-bg:     #edf6f0;
  --success-border: #95d5b2;
  --error:          #c1121f;
  --error-bg:       #fff0f0;
  --error-border:   #ffb3b3;
  --font-sans:      'DM Sans', system-ui, sans-serif;
  --font-serif:     'Playfair Display', Georgia, serif;
  --nav-h:          72px;
  --topbar-h:       38px;
  --container:      1240px;
  --radius-sm:      4px;
  --radius-md:      10px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --shadow-sm:      0 1px 3px rgba(0,0,0,.07), 0 2px 6px rgba(0,0,0,.05);
  --shadow-md:      0 4px 16px rgba(0,0,0,.09), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:      0 8px 32px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl:      0 16px 48px rgba(0,0,0,.15), 0 6px 18px rgba(0,0,0,.08);
  --transition:     0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-sans); background: var(--white); color: var(--black); -webkit-font-smoothing: antialiased; line-height: 1.6; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { font-family: var(--font-sans); cursor: pointer; }
textarea { resize: vertical; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: .7rem 1.5rem; border-radius: var(--radius-md);
  font-size: .875rem; font-weight: 600; border: 2px solid transparent;
  transition: all var(--transition); white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary  { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); box-shadow: 0 4px 16px rgba(230,57,70,.35); transform: translateY(-1px); }
.btn-outline  { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white    { background: #fff; color: var(--primary); border-color: #fff; }
.btn-white:hover { background: var(--off-white); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-cart     { background: var(--primary); color: #fff; border-color: var(--primary); font-size: .82rem; }
.btn-cart:hover { background: var(--accent); border-color: var(--accent); }
.btn-full     { width: 100%; }
.btn-submit   { height: 54px; font-size: .9rem; letter-spacing: .02em; }
.btn:disabled { opacity: .4; cursor: not-allowed; pointer-events: none; }
.btn:active:not(:disabled) { transform: translateY(0); }

/* ── TOPBAR ── */
.topbar { background: var(--primary); height: var(--topbar-h); display: flex; align-items: center; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; font-size: .75rem; color: rgba(255,255,255,.7); }
.topbar-inner i { margin-right: 5px; }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-right a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.topbar-right a:hover { color: #fff; }
.topbar-sep { opacity: .3; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white); box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.12); }
.header-inner {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { width: 38px; height: 38px; background: var(--accent); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; }
.logo-text { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--primary); letter-spacing: -.02em; }
.logo-text span { color: var(--accent); }

/* Main Nav */
.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.nav-link {
  display: flex; align-items: center; gap: 4px; padding: .5rem .75rem;
  font-size: .82rem; font-weight: 500; color: var(--gray-700); border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link--gc { color: var(--accent); font-weight: 600; }
.nav-badge { background: var(--accent); color: #fff; font-size: .6rem; font-weight: 700; padding: 2px 6px; border-radius: 999px; }

/* Mega dropdown */
.has-dropdown { position: relative; }
.has-dropdown:hover .mega-dropdown,
.has-dropdown:hover .simple-dropdown { display: block; }

.mega-dropdown {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200); min-width: 680px; z-index: 300;
  padding: 1.5rem; margin-top: 8px;
}
.mega-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.mega-col h4 { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-400); margin-bottom: .75rem; }
.mega-col ul { display: flex; flex-direction: column; gap: .5rem; }
.mega-col ul a { font-size: .82rem; color: var(--gray-700); padding: .2rem 0; transition: color var(--transition); }
.mega-col ul a:hover { color: var(--accent); padding-left: 4px; }
.mega-featured img { width: 100%; border-radius: var(--radius-md); aspect-ratio: 4/3; object-fit: cover; margin-bottom: .75rem; }
.mega-cta { font-size: .8rem; font-weight: 700; color: var(--accent); }

.simple-dropdown {
  display: none; position: absolute; top: 100%; right: 0;
  background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200); min-width: 190px; padding: .5rem 0; z-index: 300; margin-top: 8px;
}
.simple-dropdown li a { display: block; padding: .6rem 1.1rem; font-size: .83rem; color: var(--gray-700); transition: background var(--transition), color var(--transition); }
.simple-dropdown li a:hover { background: var(--gray-50); color: var(--accent); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.action-btn {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  background: none; border: none; color: var(--gray-700); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.action-btn:hover { background: var(--gray-100); color: var(--accent); }
.cart-btn { position: relative; }
.cart-count { position: absolute; top: 4px; right: 4px; background: var(--accent); color: #fff; font-size: .58rem; font-weight: 700; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Search Bar */
.search-bar { display: none; background: var(--gray-50); border-top: 1px solid var(--gray-200); padding: .875rem 0; }
.search-bar.open { display: block; }
.search-form { display: flex; gap: .5rem; align-items: center; max-width: 600px; }
.search-form input { flex: 1; height: 46px; padding: 0 1rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius-md); font-family: var(--font-sans); font-size: .875rem; outline: none; }
.search-form input:focus { border-color: var(--accent); }
.search-form button { height: 46px; padding: 0 1.25rem; background: var(--accent); color: #fff; border: none; border-radius: var(--radius-md); font-size: .82rem; font-weight: 600; }
.search-close { background: none; border: none; font-size: 1.1rem; color: var(--gray-400); margin-left: .5rem; }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; left: -100%; width: 300px; height: 100%; background: #fff; z-index: 500; overflow-y: auto; transition: left .3s ease; box-shadow: var(--shadow-xl); }
.mobile-menu.open { left: 0; }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--gray-200); background: var(--primary); }
.mobile-menu-header .logo-text { color: #fff; }
.mobile-menu-header button { background: none; border: none; color: rgba(255,255,255,.7); font-size: 1.1rem; }
.mobile-nav-list { padding: 1rem 0; }
.mobile-nav-list li a { display: block; padding: .75rem 1.5rem; font-size: .9rem; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); transition: color var(--transition), background var(--transition); }
.mobile-nav-list li a:hover { color: var(--accent); background: var(--gray-50); }
.mobile-gc-link { color: var(--accent) !important; font-weight: 600 !important; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 400; display: none; }
.mobile-overlay.show { display: block; }

/* ── HERO ── */
.hero { position: relative; height: 580px; overflow: hidden; }
.hero-slides { height: 100%; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity .8s ease; }
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(0,0,0,.65) 30%, rgba(0,0,0,.2) 70%); }
.hero-slide .container { height: 100%; display: flex; align-items: center; position: relative; z-index: 2; }
.hero-content { max-width: 600px; }
.hero-tag { display: inline-block; background: var(--accent); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; margin-bottom: 1rem; }
.hero-content h1 { font-family: var(--font-serif); font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: .875rem; }
.hero-content h1 em { font-style: italic; color: var(--gold); }
.hero-content p { font-size: 1.05rem; color: rgba(255,255,255,.82); margin-bottom: 1.75rem; line-height: 1.7; }
.hero-btns { display: flex; gap: .875rem; flex-wrap: wrap; }

/* Hero controls */
.hero-prev, .hero-next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.3); color: #fff; width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .9rem; transition: background var(--transition); cursor: pointer; backdrop-filter: blur(4px); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }
.hero-prev:hover, .hero-next:hover { background: rgba(255,255,255,.3); }
.hero-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 8px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: all var(--transition); }
.hero-dot.active { background: #fff; width: 24px; border-radius: 4px; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 1rem 0; }
.trust-items { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .75rem; }
.trust-item > i { font-size: 1.3rem; color: var(--accent); }
.trust-item strong { display: block; font-size: .82rem; font-weight: 700; color: var(--black); }
.trust-item span { font-size: .75rem; color: var(--gray-500); }

/* ── SECTIONS ── */
.section-head { display: flex; align-items: baseline; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.section-head.center { flex-direction: column; align-items: center; text-align: center; }
.section-tag { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.section-head h2 { font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; color: var(--primary); letter-spacing: -.02em; flex: 1; }
.section-link { margin-left: auto; font-size: .82rem; font-weight: 600; color: var(--accent); display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.section-link:hover { text-decoration: underline; }

/* ── CATEGORIES ── */
.categories-section { padding: 64px 0; }
.categories-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.25rem; }
.cat-col-right { display: flex; flex-direction: column; gap: 1.25rem; }
.cat-card { position: relative; border-radius: var(--radius-xl); overflow: hidden; display: block; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cat-card--large { height: 420px; }
.cat-col-right .cat-card { height: 197px; }
.cat-card:hover img { transform: scale(1.04); }
.cat-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, transparent 40%, rgba(0,0,0,.6)); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; }
.cat-tag { display: inline-block; background: var(--accent); color: #fff; font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; margin-bottom: .5rem; width: fit-content; }
.cat-overlay h3 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.cat-col-right .cat-overlay h3 { font-size: 1.15rem; }
.cat-cta { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.85); display: flex; align-items: center; gap: 5px; }
.cat-cta:hover { color: #fff; }

/* ── PRODUCTS ── */
.products-section { padding: 64px 0; }
.products-section--alt { background: var(--gray-50); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; }
.product-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow var(--transition), transform var(--transition); border: 1px solid var(--gray-200); }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--gray-100); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-badge { position: absolute; top: 12px; left: 12px; font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 8px; border-radius: 4px; color: #fff; }
.product-badge--new  { background: var(--success); }
.product-badge--hot  { background: var(--gold); }
.product-badge--sale { background: var(--accent); }
.product-actions { position: absolute; top: 10px; right: 10px; display: flex; flex-direction: column; gap: 6px; opacity: 0; transform: translateX(8px); transition: all var(--transition); }
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.product-action-btn { width: 34px; height: 34px; background: #fff; border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .85rem; color: var(--gray-700); box-shadow: var(--shadow-sm); transition: all var(--transition); }
.product-action-btn:hover { background: var(--accent); color: #fff; }
.product-body { padding: 1.1rem; }
.product-cat { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.product-name { font-size: .92rem; font-weight: 600; color: var(--black); margin: .3rem 0; line-height: 1.4; }
.product-desc { font-size: .78rem; color: var(--gray-500); line-height: 1.6; margin-bottom: .6rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-price-row { display: flex; align-items: center; gap: .5rem; margin-bottom: .4rem; flex-wrap: wrap; }
.product-price { font-size: 1rem; font-weight: 700; color: var(--black); }
.product-orig { font-size: .82rem; color: var(--gray-400); text-decoration: line-through; }
.product-saving { font-size: .72rem; font-weight: 700; color: var(--accent); background: var(--accent-light); padding: 2px 6px; border-radius: 3px; }
.product-stars { font-size: .75rem; color: #f4a261; margin-bottom: .75rem; display: flex; align-items: center; gap: 2px; }
.product-stars span { color: var(--gray-400); margin-left: 4px; }

/* ── GC BANNER ── */
.gc-banner { background: linear-gradient(135deg, var(--primary) 0%, #0f3460 60%, #16213e 100%); padding: 72px 0; }
.gc-banner-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.gc-banner-text h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: #fff; margin-bottom: .875rem; line-height: 1.25; }
.gc-banner-text p { color: rgba(255,255,255,.72); font-size: .9rem; line-height: 1.75; margin-bottom: 1.5rem; }
.gc-banner-brands { display: flex; flex-wrap: wrap; gap: .625rem; }
.gc-brand-pill { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-md); padding: 8px 12px; transition: all var(--transition); }
.gc-brand-pill:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.3); transform: translateY(-2px); }
.gc-brand-pill img { width: 48px; height: 30px; object-fit: contain; border-radius: 3px; background: rgba(255,255,255,.9); padding: 2px; }
.gc-brand-pill span { font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.85); }

/* ── WHY SECTION ── */
.why-section { padding: 72px 0; background: var(--gray-50); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-card { background: #fff; border-radius: var(--radius-xl); padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: box-shadow var(--transition), transform var(--transition); }
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-icon { width: 56px; height: 56px; background: var(--accent-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.3rem; color: var(--accent); }
.why-card h3 { font-size: .95rem; font-weight: 700; color: var(--primary); margin-bottom: .5rem; }
.why-card p  { font-size: .82rem; color: var(--gray-500); line-height: 1.7; }

/* ── PAGE BANNER ── */
.page-banner { position: relative; padding: 80px 0 56px; overflow: hidden; }
.page-banner--sm { padding: 64px 0 44px; }
.page-banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-banner-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,46,.9) 0%, rgba(26,26,46,.7) 100%); }
.page-banner-content { position: relative; z-index: 1; }
.page-banner h1 { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: #fff; margin-bottom: .625rem; }
.page-banner p { font-size: .95rem; color: rgba(255,255,255,.72); max-width: 560px; margin-bottom: .875rem; }
.breadcrumb { display: inline-flex; align-items: center; gap: 8px; font-size: .75rem; color: rgba(255,255,255,.55); }
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: rgba(255,255,255,.9); }
.breadcrumb i { font-size: .6rem; opacity: .6; }

/* ── GIFT CARD LISTING ── */
.giftcards-page { padding: 56px 0 72px; }
.gc-search-bar { position: relative; max-width: 480px; margin-bottom: 2.5rem; }
.gc-search-bar i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--gray-400); font-size: .9rem; }
.gc-search-bar input { width: 100%; height: 50px; padding: 0 1rem 0 42px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-md); font-family: var(--font-sans); font-size: .9rem; outline: none; transition: border-color var(--transition); }
.gc-search-bar input:focus { border-color: var(--accent); }
.gc-brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1.25rem; margin-bottom: 3rem; }
.gc-brand-card { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow var(--transition), transform var(--transition); }
.gc-brand-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.gc-brand-img { aspect-ratio: 16/9; background: var(--gray-50); display: flex; align-items: center; justify-content: center; padding: 1.25rem; overflow: hidden; }
.gc-brand-img img { width: 100%; height: 100%; object-fit: contain; transition: transform var(--transition); }
.gc-brand-card:hover .gc-brand-img img { transform: scale(1.05); }
.gc-brand-info { padding: .875rem 1rem; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--gray-100); }
.gc-brand-info h3 { font-size: .88rem; font-weight: 600; color: var(--black); }
.gc-brand-check { font-size: .72rem; font-weight: 700; color: var(--accent); display: flex; align-items: center; gap: 5px; }
.gc-no-results { text-align: center; padding: 3rem; flex-direction: column; gap: 1rem; color: var(--gray-400); font-size: .95rem; }
.gc-no-results i { margin-bottom: .5rem; }

/* GC Info block */
.gc-info-block { background: var(--gray-50); border-radius: var(--radius-xl); border: 1px solid var(--gray-200); padding: 2.5rem; }
.gc-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.gc-info-text h2 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; }
.gc-info-text p { font-size: .875rem; color: var(--gray-500); line-height: 1.8; margin-bottom: .75rem; }
.gc-steps { display: flex; flex-direction: column; gap: .875rem; margin-top: 1.5rem; }
.gc-step { display: flex; align-items: center; gap: 1rem; }
.gc-step span { flex-shrink: 0; width: 28px; height: 28px; background: var(--accent); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; }
.gc-step p { font-size: .85rem; color: var(--gray-700); margin: 0; }
.gc-info-tips h3 { font-size: .9rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; display: flex; align-items: center; gap: 8px; }
.gc-info-tips h3 i { color: var(--gold); }
.gc-info-tips ul { display: flex; flex-direction: column; gap: .625rem; }
.gc-info-tips li { font-size: .82rem; color: var(--gray-500); line-height: 1.6; padding-left: 1.2rem; position: relative; }
.gc-info-tips li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ── GIFT CARD CHECK PAGE ── */
.gc-check-section { padding: 56px 0 72px; }
.gc-check-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: start; }
.gc-card-display { margin-bottom: 1.5rem; }
.gc-card-image-wrap { position: relative; background: var(--gray-50); border-radius: var(--radius-xl); aspect-ratio: 3/2; display: flex; align-items: center; justify-content: center; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); padding: 2rem; margin-bottom: 1.25rem; }
.gc-card-image-wrap img { width: 100%; height: 100%; object-fit: contain; position: relative; z-index: 1; }
.gc-card-shine { position: absolute; top: -50%; left: -50%; width: 60%; height: 200%; background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%); transform: rotate(-15deg); animation: shine 4s infinite; }
@keyframes shine { 0%,100% { left: -60%; } 50% { left: 110%; } }
.gc-card-meta h2 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--primary); margin-bottom: .25rem; }
.gc-card-detail { font-size: .82rem; color: var(--gray-500); margin-bottom: 1rem; }
.btn-buynow { margin-top: .5rem; }
.gc-trust-badges { display: flex; gap: .875rem; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 600; color: var(--success); background: var(--success-bg); border: 1px solid var(--success-border); padding: 5px 10px; border-radius: 999px; }

/* Form card */
.gc-form-card { background: #fff; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); overflow: hidden; margin-bottom: 1rem; }
.gc-form-header { background: var(--gray-50); border-bottom: 2px solid var(--accent); padding: 1.1rem 1.5rem; display: flex; align-items: center; gap: .875rem; }
.gc-form-header-icon { width: 36px; height: 36px; background: var(--accent); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: #fff; font-size: .95rem; flex-shrink: 0; }
.gc-form-header h3 { font-size: .92rem; font-weight: 700; color: var(--black); }
.gc-form-header p  { font-size: .72rem; color: var(--gray-500); margin-top: 1px; }
.gc-form-card form { padding: 1.5rem; }

/* Form fields */
.form-field { margin-bottom: 1.1rem; }
.form-field > label, .form-field label { display: flex; justify-content: space-between; align-items: baseline; font-size: .75rem; font-weight: 700; color: var(--gray-700); margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .04em; }
.form-label-hint { font-size: .67rem; font-weight: 400; color: var(--gray-400); text-transform: none; letter-spacing: 0; }
.form-input-wrap { position: relative; }
.form-input-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--gray-300); font-size: .9rem; pointer-events: none; }
.form-input {
  width: 100%; height: 52px; padding: 0 48px;
  font-family: var(--font-sans); font-size: 1rem; font-weight: 500;
  color: var(--black); background: var(--gray-50);
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-md);
  outline: none; transition: all var(--transition);
  letter-spacing: .06em; -webkit-appearance: none;
}
.form-input:focus { border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px rgba(230,57,70,.1); }
.form-input.valid   { border-color: var(--success); background: var(--success-bg); }
.form-input.invalid { border-color: var(--error);   background: var(--error-bg); }
.form-input::placeholder { color: var(--gray-300); font-weight: 400; letter-spacing: .02em; }
.form-textarea { height: auto !important; padding: 14px !important; letter-spacing: 0 !important; }
select.form-input { cursor: pointer; }

.form-input-status { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .7rem; color: #fff; pointer-events: none; }
.status-ok  { background: var(--success); }
.status-err { background: var(--error); }

.form-field-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 5px; min-height: 16px; }
.form-error { font-size: .7rem; color: var(--error); font-weight: 600; }
.form-counter { font-size: .67rem; color: var(--gray-400); font-weight: 600; margin-left: auto; }

.form-divider { border: none; border-top: 1px solid var(--gray-100); margin: 1.25rem 0; }
.req { color: var(--accent); }

/* GC Result */
.gc-result { display: none; margin: 1rem 1.5rem 0; padding: 1.1rem 1.25rem; border-radius: var(--radius-md); gap: 1rem; align-items: flex-start; }
.gc-result--success { background: var(--success-bg); border: 1.5px solid var(--success-border); }
.gc-result--error   { background: var(--error-bg);   border: 1.5px solid var(--error-border); }
.gc-result-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.gc-result--success .gc-result-icon { color: var(--success); }
.gc-result--error   .gc-result-icon { color: var(--error); }
.gc-result-body strong { display: block; font-size: .82rem; font-weight: 700; margin-bottom: .3rem; }
.gc-result--success .gc-result-body strong { color: var(--success); }
.gc-result--error   .gc-result-body strong { color: var(--error); }
.gc-result-body p { font-size: .8rem; color: var(--gray-700); line-height: 1.6; margin-bottom: .75rem; }
.gc-result-body .btn { font-size: .78rem; padding: .5rem 1rem; }

.gc-security-note { display: flex; align-items: flex-start; gap: 10px; padding: 1rem 1.5rem; background: var(--success-bg); border-top: 1px solid var(--success-border); font-size: .75rem; color: var(--success); }
.gc-security-note i { margin-top: 2px; flex-shrink: 0; }

.gc-how-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; }
.gc-how-card h4 { font-size: .8rem; font-weight: 700; color: var(--primary); margin-bottom: .875rem; display: flex; align-items: center; gap: 7px; }
.gc-how-card h4 i { color: var(--accent); }
.gc-how-card ol { padding-left: 1.4rem; list-style: decimal; display: flex; flex-direction: column; gap: .6rem; }
.gc-how-card ol li { font-size: .82rem; color: var(--gray-500); line-height: 1.6; }

/* Other brands */
.other-brands-section { padding: 40px 0 56px; border-top: 1px solid var(--gray-200); }
.other-brands-section h3 { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 1rem; }
.other-brands-grid { display: flex; flex-wrap: wrap; gap: .625rem; }
.other-brand-pill { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 7px 12px; font-size: .78rem; font-weight: 600; color: var(--gray-700); transition: all var(--transition); }
.other-brand-pill:hover { border-color: var(--accent); color: var(--accent); box-shadow: var(--shadow-sm); }
.other-brand-pill img { width: 40px; height: 25px; object-fit: contain; border-radius: 3px; }
.other-brand-pill--more { background: var(--gray-50); }
.other-brand-pill--more i { font-size: .9rem; }

/* ── SHOP PAGE ── */
.shop-page { padding: 40px 0 72px; }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.shop-filters { display: flex; gap: .5rem; flex-wrap: wrap; }
.filter-btn { padding: .45rem 1.1rem; border-radius: 999px; font-size: .8rem; font-weight: 600; border: 1.5px solid var(--gray-200); color: var(--gray-500); background: #fff; transition: all var(--transition); cursor: pointer; }
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.filter-btn--sale.active { background: var(--accent); border-color: var(--accent); }
.shop-count { font-size: .8rem; color: var(--gray-400); font-weight: 500; }

/* ── AUTH PAGES ── */
.auth-section { padding: 64px 0; background: var(--gray-50); min-height: 60vh; }
.auth-card { background: #fff; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); padding: 2.5rem; max-width: 460px; margin: 0 auto; border: 1px solid var(--gray-200); }

/* ── CONTENT PAGES ── */
.content-section { padding: 64px 0; }
.legal-card { background: #fff; border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); padding: 2.5rem; border: 1px solid var(--gray-200); max-width: 820px; }
.legal-card h2 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--primary); margin: 1.5rem 0 .625rem; }
.legal-card h2:first-of-type { margin-top: 0; }
.legal-card p { font-size: .875rem; color: var(--gray-500); line-height: 1.85; margin-bottom: .625rem; }
.legal-card ul, .legal-card ol { padding-left: 1.5rem; list-style: disc; display: flex; flex-direction: column; gap: .4rem; margin-bottom: .875rem; }
.legal-card ol { list-style: decimal; }
.legal-card li { font-size: .875rem; color: var(--gray-500); line-height: 1.7; }
.legal-card a { color: var(--accent); text-decoration: underline; }
.legal-updated { font-size: .78rem; color: var(--gray-400); font-style: italic; margin-bottom: 1.5rem !important; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-text .section-tag { margin-bottom: .5rem; }
.about-text h2 { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; }
.about-text p { font-size: .9rem; color: var(--gray-500); line-height: 1.85; margin-bottom: .875rem; }
.about-values { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.about-value { display: flex; align-items: flex-start; gap: 1rem; }
.about-value > i { font-size: 1.1rem; color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.about-value strong { display: block; font-size: .9rem; font-weight: 700; color: var(--primary); margin-bottom: .2rem; }
.about-value p { font-size: .82rem; color: var(--gray-500); line-height: 1.6; margin: 0; }
.about-img-stack { position: relative; margin-bottom: 1.5rem; }
.about-img-main { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; }
.about-img-secondary { position: absolute; bottom: -24px; right: -24px; width: 55%; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); border: 4px solid #fff; aspect-ratio: 4/3; object-fit: cover; }
.about-stats { display: flex; gap: 1.5rem; padding: 1.75rem; background: var(--primary); border-radius: var(--radius-xl); margin-top: 2.5rem; }
.about-stat { text-align: center; flex: 1; }
.about-stat strong { display: block; font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: #fff; }
.about-stat span { font-size: .75rem; color: rgba(255,255,255,.55); font-weight: 500; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
.contact-form-col h2 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: .5rem; }
.contact-form-col > p { font-size: .875rem; color: var(--gray-500); margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-info-col { background: var(--primary); border-radius: var(--radius-xl); padding: 2rem; }
.contact-info-col h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 1.5rem; }
.contact-info-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item { display: flex; gap: .875rem; }
.contact-info-icon { width: 36px; height: 36px; background: rgba(255,255,255,.12); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: .9rem; flex-shrink: 0; }
.contact-info-item strong { display: block; font-size: .82rem; font-weight: 700; color: #fff; margin-bottom: .2rem; }
.contact-info-item p { font-size: .78rem; color: rgba(255,255,255,.6); }
.contact-faq-link { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.1); }
.contact-faq-link p { font-size: .8rem; color: rgba(255,255,255,.55); margin-bottom: .75rem; }

/* Alerts */
.alert { display: flex; align-items: flex-start; gap: 10px; padding: .875rem 1rem; border-radius: var(--radius-md); margin-bottom: 1.25rem; font-size: .875rem; }
.alert--success { background: var(--success-bg); border: 1px solid var(--success-border); color: var(--success); }
.alert--error   { background: var(--error-bg);   border: 1px solid var(--error-border);   color: var(--error); }
.alert i { margin-top: 2px; flex-shrink: 0; }
.alert strong { font-weight: 700; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.faq-col h2 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--primary); margin-bottom: 1.25rem; display: flex; align-items: center; gap: .625rem; }
.faq-col h2 i { color: var(--accent); }
.faq-list { display: flex; flex-direction: column; gap: .5rem; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: #fff; border: none; padding: 1rem 1.1rem; font-family: var(--font-sans); font-size: .875rem; font-weight: 600; color: var(--black); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background var(--transition); }
.faq-q::after { content: '+'; font-size: 1.1rem; color: var(--accent); font-weight: 300; transition: transform var(--transition); }
.faq-item.open .faq-q { background: var(--accent-light); color: var(--accent); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.1rem 1rem; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: .85rem; color: var(--gray-500); line-height: 1.75; }
.faq-a a { color: var(--accent); text-decoration: underline; }
.faq-contact-cta { text-align: center; padding: 2.5rem; background: var(--gray-50); border-radius: var(--radius-xl); }
.faq-contact-cta p { font-size: 1rem; color: var(--gray-500); margin-bottom: 1rem; }

/* Empty state */
.empty-state { text-align: center; padding: 4rem 1rem; color: var(--gray-400); }
.empty-state i { margin-bottom: 1rem; }
.empty-state h3 { font-size: 1.1rem; font-weight: 700; color: var(--gray-700); margin-bottom: .5rem; }

/* ── NEWSLETTER ── */
.newsletter-section { background: linear-gradient(135deg, var(--accent) 0%, #c1121f 100%); padding: 64px 0; }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.newsletter-tag { display: inline-block; background: rgba(255,255,255,.2); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; margin-bottom: .75rem; }
.newsletter-text h2 { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.newsletter-text p { font-size: .875rem; color: rgba(255,255,255,.78); line-height: 1.7; }
.newsletter-form { display: flex; flex-direction: column; gap: .75rem; }
.nl-input-wrap { position: relative; }
.nl-input-wrap i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--gray-400); }
.nl-input-wrap input { width: 100%; height: 52px; padding: 0 1rem 0 42px; border-radius: var(--radius-md); border: none; font-family: var(--font-sans); font-size: .875rem; outline: none; }
.newsletter-form button { height: 52px; background: var(--primary); color: #fff; border: none; border-radius: var(--radius-md); font-family: var(--font-sans); font-size: .875rem; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background var(--transition); }
.newsletter-form button:hover { background: var(--primary-hover); }
.nl-success { color: #fff; font-size: .875rem; font-weight: 600; display: flex; align-items: center; gap: 8px; }

/* ── FOOTER ── */
.site-footer { background: var(--primary); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding: 64px 0 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-logo .logo-text { color: #fff; font-size: 1.1rem; }
.footer-brand p { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.8; margin-bottom: 1.25rem; max-width: 300px; }
.footer-social { display: flex; gap: .625rem; margin-bottom: 1.25rem; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); transition: all var(--transition); }
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-trust { display: flex; flex-wrap: wrap; gap: .5rem; }
.footer-trust span { font-size: .7rem; color: rgba(255,255,255,.4); display: flex; align-items: center; gap: 5px; }
.footer-trust i { color: var(--success); }
.footer-col h4 { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .625rem; }
.footer-col a { font-size: .82rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }
.footer-payments { display: flex; gap: .75rem; }
.footer-payments i { font-size: 1.6rem; color: rgba(255,255,255,.3); transition: color var(--transition); }
.footer-payments i:hover { color: rgba(255,255,255,.6); }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--primary); z-index: 999; padding: 1rem 0; box-shadow: 0 -4px 20px rgba(0,0,0,.2); transform: translateY(100%); transition: transform .4s ease; }
.cookie-banner.show { transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.cookie-inner p { font-size: .82rem; color: rgba(255,255,255,.75); flex: 1; }
.cookie-inner a { color: rgba(255,255,255,.9); text-decoration: underline; }
.cookie-btns { display: flex; gap: .625rem; flex-shrink: 0; }
.cookie-accept { background: var(--accent); color: #fff; border: none; padding: .5rem 1.1rem; border-radius: var(--radius-sm); font-family: var(--font-sans); font-size: .8rem; font-weight: 700; cursor: pointer; }
.cookie-decline { background: transparent; color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.2); padding: .5rem 1.1rem; border-radius: var(--radius-sm); font-family: var(--font-sans); font-size: .8rem; cursor: pointer; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .mega-dropdown { min-width: 560px; }
  .mega-inner { grid-template-columns: repeat(3,1fr); }
  .mega-featured { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .main-nav, .topbar-right { display: none; }
  .hamburger { display: flex; }
  .categories-grid { grid-template-columns: 1fr; }
  .cat-card--large { height: 300px; }
  .cat-col-right { grid-template-columns: 1fr 1fr; display: grid; }
  .cat-col-right .cat-card { height: 200px; }
  .gc-banner-inner { grid-template-columns: 1fr; gap: 2rem; }
  .gc-check-grid { grid-template-columns: 1fr; }
  .gc-card-image-wrap { max-width: 380px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-secondary { display: none; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .gc-info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero { height: 420px; }
  .hero-content h1 { font-size: 1.7rem; }
  .hero-prev, .hero-next { display: none; }
  .trust-items { justify-content: center; }
  .trust-item { min-width: 140px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .gc-brands-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .topbar { display: none; }
  .form-input { font-size: 16px; }
}
