/*
Theme Name: GiftBliss Child
Theme URI: https://giftbliss.com
Description: A premium WooCommerce child theme for gift delivery services — inspired by TCS Sentiments, iJP, and top-tier gifting platforms. Features occasion-based browsing, same-day delivery, personalized gift curation, and a luxurious warm aesthetic.
Author: GiftBliss Team
Author URI: https://giftbliss.com
Template: storefront
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: giftbliss-child
Tags: woocommerce, gift-delivery, child-theme, e-commerce, storefront
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors */
  --gb-rose:        #C8394B;
  --gb-rose-light:  #F2728A;
  --gb-rose-dark:   #8C1A28;
  --gb-gold:        #D4A843;
  --gb-gold-light:  #F0CC7A;
  --gb-gold-dark:   #9A7520;
  --gb-cream:       #FDF8F2;
  --gb-warm-white:  #FFFCF8;
  --gb-charcoal:    #1A1A1A;
  --gb-text:        #2D2D2D;
  --gb-text-muted:  #6B6B6B;
  --gb-border:      #E8D8CC;
  --gb-success:     #2D7A4F;
  --gb-warning:     #D4830A;

  /* Gradients */
  --gb-gradient-hero:   linear-gradient(135deg, #8C1A28 0%, #C8394B 40%, #D4A843 100%);
  --gb-gradient-card:   linear-gradient(180deg, rgba(255,255,255,0) 60%, rgba(200,57,75,0.08) 100%);
  --gb-gradient-gold:   linear-gradient(135deg, #D4A843, #F0CC7A, #D4A843);

  /* Typography */
  --gb-font-display:  'Playfair Display', 'Georgia', serif;
  --gb-font-body:     'DM Sans', 'Helvetica Neue', sans-serif;
  --gb-font-accent:   'Cormorant Garamond', 'Georgia', serif;

  /* Spacing */
  --gb-space-xs:  0.25rem;
  --gb-space-sm:  0.5rem;
  --gb-space-md:  1rem;
  --gb-space-lg:  2rem;
  --gb-space-xl:  4rem;
  --gb-space-2xl: 6rem;

  /* Borders & Shadows */
  --gb-radius-sm:  6px;
  --gb-radius-md:  14px;
  --gb-radius-lg:  24px;
  --gb-radius-xl:  40px;
  --gb-shadow-sm:  0 2px 8px rgba(200,57,75,0.08);
  --gb-shadow-md:  0 8px 32px rgba(200,57,75,0.14);
  --gb-shadow-lg:  0 20px 60px rgba(200,57,75,0.18);
  --gb-shadow-gold: 0 4px 20px rgba(212,168,67,0.3);

  /* Transitions */
  --gb-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gb-transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&display=swap');

/* ============================================================
   BASE RESETS & GLOBAL
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--gb-font-body);
  color: var(--gb-text);
  background-color: var(--gb-warm-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--gb-font-display);
  color: var(--gb-charcoal);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

a {
  color: var(--gb-rose);
  text-decoration: none;
  transition: color var(--gb-transition);
}

a:hover { color: var(--gb-rose-dark); }

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

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.gb-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gb-space-lg);
}

.gb-section {
  padding: var(--gb-space-2xl) 0;
}

.gb-section--sm {
  padding: var(--gb-space-xl) 0;
}

.gb-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gb-badge--gold {
  background: var(--gb-gradient-gold);
  color: var(--gb-rose-dark);
}

.gb-badge--rose {
  background: var(--gb-rose);
  color: #fff;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header,
header.site-header {
  background: var(--gb-warm-white) !important;
  border-bottom: 1px solid var(--gb-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

/* Top announcement bar */
.gb-announcement-bar {
  background: var(--gb-gradient-hero);
  color: #fff;
  text-align: center;
  padding: 9px var(--gb-space-lg);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.gb-announcement-bar a {
  color: var(--gb-gold-light);
  text-decoration: underline;
}

/* Delivery cities strip */
.gb-delivery-strip {
  background: var(--gb-cream);
  border-bottom: 1px solid var(--gb-border);
  padding: 7px var(--gb-space-lg);
  display: flex;
  align-items: center;
  gap: var(--gb-space-md);
  font-size: 0.78rem;
  color: var(--gb-text-muted);
  overflow-x: auto;
  white-space: nowrap;
}

.gb-delivery-strip span {
  font-weight: 600;
  color: var(--gb-rose);
  flex-shrink: 0;
}

.gb-delivery-strip a {
  color: var(--gb-text-muted);
  transition: color var(--gb-transition);
}

.gb-delivery-strip a:hover { color: var(--gb-rose); }

/* Site branding */
.site-branding .site-title a {
  font-family: var(--gb-font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gb-rose-dark) !important;
  letter-spacing: -0.02em;
}

/* Main nav */
.main-navigation ul li a {
  font-family: var(--gb-font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gb-text);
  padding: 8px 16px;
  border-radius: var(--gb-radius-sm);
  transition: all var(--gb-transition);
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a {
  color: var(--gb-rose);
  background: rgba(200,57,75,0.06);
}

/* Cart icon in header */
.site-header-cart .widget_shopping_cart_content,
.cart-contents {
  color: var(--gb-rose) !important;
}

.site-header-cart .count {
  background: var(--gb-rose) !important;
  color: #fff !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.gb-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gb-cream);
}

.gb-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--gb-gradient-hero);
  opacity: 0.92;
}

.gb-hero__pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(212,168,67,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.gb-hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.gb-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gb-gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--gb-space-md);
}

.gb-hero__eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gb-gold);
}

.gb-hero__title {
  font-family: var(--gb-font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--gb-space-md);
}

.gb-hero__title em {
  font-style: italic;
  color: var(--gb-gold-light);
}

.gb-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--gb-space-lg);
  max-width: 460px;
}

.gb-hero__actions {
  display: flex;
  gap: var(--gb-space-md);
  flex-wrap: wrap;
  align-items: center;
}

.gb-hero__delivery-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 8px 16px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.gb-btn,
.button,
button[type="submit"],
input[type="submit"],
.wc-proceed-to-checkout .checkout-button,
#place_order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--gb-radius-xl);
  font-family: var(--gb-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--gb-transition);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.gb-btn--primary,
.button:not(.secondary):not(.alt):not(.white),
input[type="submit"],
#place_order {
  background: var(--gb-rose) !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(200,57,75,0.35);
}

.gb-btn--primary:hover,
.button:not(.secondary):not(.alt):not(.white):hover {
  background: var(--gb-rose-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,57,75,0.45) !important;
}

.gb-btn--gold {
  background: var(--gb-gradient-gold);
  color: var(--gb-rose-dark);
  box-shadow: var(--gb-shadow-gold);
  font-weight: 700;
}

.gb-btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,168,67,0.45);
}

.gb-btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}

.gb-btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* ============================================================
   OCCASION CATEGORIES GRID
   ============================================================ */
.gb-occasions {
  background: var(--gb-warm-white);
}

.gb-section-header {
  text-align: center;
  margin-bottom: var(--gb-space-xl);
}

.gb-section-header__label {
  display: inline-block;
  color: var(--gb-rose);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.gb-section-header__title {
  font-family: var(--gb-font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--gb-charcoal);
  margin-bottom: 10px;
}

.gb-section-header__subtitle {
  color: var(--gb-text-muted);
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.gb-occasion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--gb-space-md);
}

.gb-occasion-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: var(--gb-space-lg) var(--gb-space-md);
  background: var(--gb-cream);
  border-radius: var(--gb-radius-lg);
  border: 1.5px solid var(--gb-border);
  text-align: center;
  cursor: pointer;
  transition: all var(--gb-transition);
  text-decoration: none;
}

.gb-occasion-card:hover {
  background: var(--gb-rose);
  border-color: var(--gb-rose);
  transform: translateY(-4px);
  box-shadow: var(--gb-shadow-md);
}

.gb-occasion-card:hover .gb-occasion-card__icon,
.gb-occasion-card:hover .gb-occasion-card__name {
  color: #fff;
}

.gb-occasion-card__icon {
  font-size: 2.2rem;
  color: var(--gb-rose);
  transition: color var(--gb-transition);
  line-height: 1;
}

.gb-occasion-card__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gb-text);
  transition: color var(--gb-transition);
  letter-spacing: 0.02em;
}

/* ============================================================
   CITY DELIVERY SECTION
   ============================================================ */
.gb-cities {
  background: var(--gb-cream);
}

.gb-city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: var(--gb-space-sm);
}

.gb-city-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  background: #fff;
  border: 1.5px solid var(--gb-border);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gb-text);
  cursor: pointer;
  transition: all var(--gb-transition);
  text-decoration: none;
  white-space: nowrap;
}

.gb-city-pill:hover {
  border-color: var(--gb-rose);
  color: var(--gb-rose);
  background: rgba(200,57,75,0.04);
  transform: translateY(-2px);
}

.gb-city-pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gb-gold);
  flex-shrink: 0;
}

/* ============================================================
   PRODUCT CARDS (WooCommerce)
   ============================================================ */
ul.products,
.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
  gap: var(--gb-space-lg) !important;
  padding: 0 !important;
  list-style: none !important;
}

ul.products li.product,
.products .product {
  background: #fff;
  border-radius: var(--gb-radius-md);
  border: 1px solid var(--gb-border);
  overflow: hidden;
  transition: all var(--gb-transition);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--gb-shadow-sm);
}

ul.products li.product:hover,
.products .product:hover {
  transform: translateY(-6px);
  box-shadow: var(--gb-shadow-lg);
  border-color: rgba(200,57,75,0.2);
}

/* Product badges */
ul.products li.product .onsale,
.products .product .onsale {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gb-rose) !important;
  color: #fff !important;
  border-radius: var(--gb-radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  z-index: 2;
  letter-spacing: 0.06em;
}

/* Product image */
ul.products li.product a img,
.products .product a img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--gb-transition-slow);
}

ul.products li.product:hover a img,
.products .product:hover a img {
  transform: scale(1.06);
}

/* Product image overlay */
ul.products li.product .gb-product-overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  aspect-ratio: 4/3;
  background: linear-gradient(to bottom, transparent 50%, rgba(200,57,75,0.07));
  pointer-events: none;
  z-index: 1;
}

/* Quick add to wishlist */
.gb-wishlist-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--gb-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all var(--gb-transition);
  font-size: 1rem;
  color: var(--gb-text-muted);
  box-shadow: var(--gb-shadow-sm);
}

.gb-wishlist-btn:hover {
  background: var(--gb-rose);
  color: #fff;
  border-color: var(--gb-rose);
}

/* Product info */
ul.products li.product .woocommerce-loop-product__title,
.products .product h2.woocommerce-loop-product__title {
  font-family: var(--gb-font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gb-charcoal);
  padding: 14px 16px 4px;
  line-height: 1.3;
}

ul.products li.product .price,
.products .product .price {
  padding: 0 16px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gb-rose);
}

ul.products li.product .price del,
.products .product .price del {
  color: var(--gb-text-muted);
  font-weight: 400;
  font-size: 0.85em;
}

/* Star ratings */
ul.products li.product .star-rating,
.products .product .star-rating {
  padding: 4px 16px 0;
}

.star-rating::before,
.star-rating span::before {
  color: var(--gb-gold) !important;
}

/* Add to cart button on product cards */
ul.products li.product .button,
.products .product .button {
  margin: 12px 16px 16px;
  width: calc(100% - 32px);
  padding: 11px 20px;
  font-size: 0.85rem;
  border-radius: var(--gb-radius-xl);
  background: var(--gb-rose) !important;
  color: #fff !important;
}

ul.products li.product .button:hover,
.products .product .button:hover {
  background: var(--gb-rose-dark) !important;
  transform: none;
}

/* Delivery info on card */
.gb-product-delivery {
  padding: 0 16px 6px;
  font-size: 0.75rem;
  color: var(--gb-success);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ============================================================
   SINGLE PRODUCT PAGE
   ============================================================ */
.single-product .product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gb-space-xl);
  align-items: start;
}

.single-product .woocommerce-product-gallery {
  border-radius: var(--gb-radius-lg);
  overflow: hidden;
  box-shadow: var(--gb-shadow-md);
}

.single-product .summary {
  padding: var(--gb-space-lg) 0;
}

.single-product h1.product_title {
  font-family: var(--gb-font-display);
  font-size: 2rem;
  color: var(--gb-charcoal);
  margin-bottom: var(--gb-space-sm);
}

.single-product .price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gb-rose);
  margin: var(--gb-space-md) 0;
}

.single-product .gb-delivery-options {
  background: var(--gb-cream);
  border: 1.5px solid var(--gb-border);
  border-radius: var(--gb-radius-md);
  padding: var(--gb-space-md);
  margin: var(--gb-space-md) 0;
}

.single-product .gb-delivery-options h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gb-text-muted);
  margin-bottom: 10px;
}

.gb-delivery-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gb-border);
  font-size: 0.88rem;
}

.gb-delivery-option:last-child { border-bottom: none; }

.gb-delivery-option__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--gb-radius-sm);
  background: rgba(200,57,75,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.gb-delivery-option__label { font-weight: 600; color: var(--gb-charcoal); }
.gb-delivery-option__time { color: var(--gb-text-muted); font-size: 0.8rem; }
.gb-delivery-option__price { margin-left: auto; font-weight: 700; color: var(--gb-rose); }

/* Personalization box */
.gb-personalization-box {
  background: linear-gradient(135deg, rgba(200,57,75,0.04), rgba(212,168,67,0.06));
  border: 1.5px dashed var(--gb-border);
  border-radius: var(--gb-radius-md);
  padding: var(--gb-space-md);
  margin: var(--gb-space-md) 0;
}

.gb-personalization-box h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gb-charcoal);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.gb-personalization-box textarea {
  width: 100%;
  border: 1.5px solid var(--gb-border);
  border-radius: var(--gb-radius-sm);
  padding: 10px 14px;
  font-family: var(--gb-font-body);
  font-size: 0.88rem;
  resize: vertical;
  min-height: 80px;
  background: #fff;
  transition: border-color var(--gb-transition);
}

.gb-personalization-box textarea:focus {
  outline: none;
  border-color: var(--gb-rose);
}

/* Add to cart */
.single-product .single_add_to_cart_button {
  background: var(--gb-rose) !important;
  color: #fff !important;
  padding: 15px 36px !important;
  border-radius: var(--gb-radius-xl) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 24px rgba(200,57,75,0.35) !important;
  border: none !important;
  transition: all var(--gb-transition) !important;
}

.single-product .single_add_to_cart_button:hover {
  background: var(--gb-rose-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(200,57,75,0.45) !important;
}

/* Trust badges on product page */
.gb-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: var(--gb-space-md) 0;
}

.gb-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  background: var(--gb-cream);
  border-radius: var(--gb-radius-sm);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gb-text-muted);
}

.gb-trust-badge__icon { font-size: 1.4rem; }

/* ============================================================
   CART PAGE
   ============================================================ */
.woocommerce-cart-form table.shop_table {
  border-radius: var(--gb-radius-md);
  overflow: hidden;
  border: 1.5px solid var(--gb-border) !important;
}

.woocommerce-cart-form table.shop_table thead tr {
  background: var(--gb-cream);
}

.woocommerce-cart-form table.shop_table th {
  font-family: var(--gb-font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gb-text-muted);
  padding: 14px 16px;
}

.cart-collaterals .cart_totals {
  background: var(--gb-cream);
  border-radius: var(--gb-radius-md);
  padding: var(--gb-space-lg);
  border: 1.5px solid var(--gb-border);
}

.cart_totals h2 {
  font-size: 1.2rem;
  margin-bottom: var(--gb-space-md);
}

/* Gift message in cart */
.gb-cart-gift-message {
  background: linear-gradient(135deg, rgba(200,57,75,0.04), rgba(212,168,67,0.06));
  border: 1.5px dashed var(--gb-gold);
  border-radius: var(--gb-radius-md);
  padding: var(--gb-space-md);
  margin-bottom: var(--gb-space-lg);
}

.gb-cart-gift-message h3 {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout #order_review_heading {
  font-family: var(--gb-font-display);
  font-size: 1.2rem;
  margin-bottom: var(--gb-space-md);
  color: var(--gb-charcoal);
}

.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
  border: 1.5px solid var(--gb-border);
  border-radius: var(--gb-radius-sm);
  padding: 12px 16px;
  font-family: var(--gb-font-body);
  font-size: 0.9rem;
  transition: border-color var(--gb-transition);
  width: 100%;
}

.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus {
  outline: none;
  border-color: var(--gb-rose);
  box-shadow: 0 0 0 3px rgba(200,57,75,0.1);
}

/* Delivery date picker on checkout */
.gb-delivery-date-picker {
  background: var(--gb-cream);
  border: 1.5px solid var(--gb-border);
  border-radius: var(--gb-radius-md);
  padding: var(--gb-space-md);
  margin-bottom: var(--gb-space-lg);
}

/* Order review */
.woocommerce-checkout-review-order table.shop_table {
  border: 1.5px solid var(--gb-border);
  border-radius: var(--gb-radius-md);
  overflow: hidden;
}

/* ============================================================
   WHY CHOOSE US / FEATURES STRIP
   ============================================================ */
.gb-features {
  background: var(--gb-charcoal);
  color: #fff;
  padding: var(--gb-space-xl) 0;
}

.gb-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--gb-space-lg);
}

.gb-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.gb-feature__icon {
  font-size: 2rem;
  width: 64px;
  height: 64px;
  border-radius: var(--gb-radius-md);
  background: rgba(212,168,67,0.15);
  border: 1px solid rgba(212,168,67,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gb-feature__title {
  font-family: var(--gb-font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.gb-feature__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.gb-testimonials {
  background: var(--gb-cream);
}

.gb-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gb-space-lg);
}

.gb-testimonial-card {
  background: #fff;
  border-radius: var(--gb-radius-md);
  padding: var(--gb-space-lg);
  border: 1.5px solid var(--gb-border);
  position: relative;
}

.gb-testimonial-card::before {
  content: '"';
  font-family: var(--gb-font-accent);
  font-size: 5rem;
  line-height: 1;
  color: var(--gb-rose-light);
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.4;
}

.gb-testimonial-card__text {
  font-family: var(--gb-font-accent);
  font-style: italic;
  font-size: 1rem;
  color: var(--gb-text);
  line-height: 1.7;
  margin-bottom: var(--gb-space-md);
  padding-top: var(--gb-space-md);
}

.gb-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gb-testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gb-gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.gb-testimonial-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gb-charcoal);
}

.gb-testimonial-card__city {
  font-size: 0.78rem;
  color: var(--gb-text-muted);
}

.gb-testimonial-stars {
  color: var(--gb-gold);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0F0A0B !important;
  color: rgba(255,255,255,0.75) !important;
}

.gb-footer-top {
  padding: var(--gb-space-2xl) 0 var(--gb-space-xl);
}

.gb-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--gb-space-xl);
}

.gb-footer-brand .site-title {
  font-family: var(--gb-font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--gb-space-md);
}

.gb-footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--gb-space-md);
}

.gb-footer-socials {
  display: flex;
  gap: 10px;
}

.gb-social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--gb-radius-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all var(--gb-transition);
  text-decoration: none;
}

.gb-social-btn:hover {
  background: var(--gb-rose);
  border-color: var(--gb-rose);
  color: #fff;
}

.gb-footer-col h4 {
  font-family: var(--gb-font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gb-gold);
  margin-bottom: var(--gb-space-md);
}

.gb-footer-col ul {
  list-style: none;
  padding: 0;
}

.gb-footer-col ul li {
  margin-bottom: 8px;
}

.gb-footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--gb-transition);
  text-decoration: none;
}

.gb-footer-col ul li a:hover {
  color: var(--gb-rose-light);
}

.gb-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--gb-space-md) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.gb-footer-bottom .gb-payment-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.gb-payment-icon {
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

/* ============================================================
   WooCommerce NOTICES & MESSAGES
   ============================================================ */
.woocommerce-message,
.woocommerce-info {
  background: rgba(200,57,75,0.06) !important;
  border-top-color: var(--gb-rose) !important;
  border-radius: 0 var(--gb-radius-sm) var(--gb-radius-sm) 0;
}

.woocommerce-error {
  background: rgba(200,57,75,0.06) !important;
}

/* ============================================================
   SHOP PAGE FILTERS & SORTING
   ============================================================ */
.woocommerce-ordering select,
.woocommerce-result-count {
  border: 1.5px solid var(--gb-border);
  border-radius: var(--gb-radius-sm);
  padding: 10px 16px;
  font-family: var(--gb-font-body);
  font-size: 0.88rem;
  background: #fff;
}

.woocommerce-ordering select:focus {
  outline: none;
  border-color: var(--gb-rose);
}

/* Filter sidebar */
.widget_price_filter .price_slider_amount .button {
  border-radius: var(--gb-radius-xl);
  padding: 8px 20px;
}

.widget_price_filter .ui-slider .ui-slider-handle,
.widget_price_filter .ui-slider .ui-slider-range {
  background: var(--gb-rose) !important;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.woocommerce-breadcrumb {
  font-size: 0.82rem;
  color: var(--gb-text-muted);
  padding: 14px 0;
}

.woocommerce-breadcrumb a {
  color: var(--gb-text-muted);
}

.woocommerce-breadcrumb a:hover {
  color: var(--gb-rose);
}

/* ============================================================
   MY ACCOUNT PAGE
   ============================================================ */
.woocommerce-account .woocommerce-MyAccount-navigation {
  background: var(--gb-cream);
  border-radius: var(--gb-radius-md);
  padding: var(--gb-space-md);
  border: 1.5px solid var(--gb-border);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  border-radius: var(--gb-radius-sm);
  overflow: hidden;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 11px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gb-text);
  transition: all var(--gb-transition);
  border-radius: var(--gb-radius-sm);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  background: var(--gb-rose);
  color: #fff;
}

/* ============================================================
   SEARCH
   ============================================================ */
.search-form input[type="search"] {
  border: 1.5px solid var(--gb-border);
  border-radius: var(--gb-radius-xl) 0 0 var(--gb-radius-xl);
  padding: 12px 20px;
  font-family: var(--gb-font-body);
  font-size: 0.9rem;
}

.search-form input[type="submit"] {
  border-radius: 0 var(--gb-radius-xl) var(--gb-radius-xl) 0;
  padding: 12px 20px;
}

/* ============================================================
   WIDGETS
   ============================================================ */
.widget-title {
  font-family: var(--gb-font-display);
  font-size: 1rem;
  margin-bottom: var(--gb-space-md);
  color: var(--gb-charcoal);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.gb-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.gb-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.gb-reveal--delay-1 { transition-delay: 0.1s; }
.gb-reveal--delay-2 { transition-delay: 0.2s; }
.gb-reveal--delay-3 { transition-delay: 0.3s; }
.gb-reveal--delay-4 { transition-delay: 0.4s; }

/* ============================================================
   LOADING SKELETON
   ============================================================ */
.gb-skeleton {
  background: linear-gradient(90deg, #f0e8e8 25%, #f8f0f0 50%, #f0e8e8 75%);
  background-size: 200% 100%;
  animation: gb-shimmer 1.5s infinite;
  border-radius: var(--gb-radius-sm);
}

@keyframes gb-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --gb-space-xl: 2.5rem;
    --gb-space-2xl: 4rem;
  }

  ul.products,
  .products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: var(--gb-space-md) !important;
  }

  .single-product .product {
    grid-template-columns: 1fr;
    gap: var(--gb-space-lg);
  }

  .gb-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--gb-space-lg);
  }

  .gb-trust-badges {
    grid-template-columns: repeat(3, 1fr);
  }

  .gb-hero {
    min-height: 420px;
    padding: var(--gb-space-xl) 0;
  }

  .gb-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gb-footer-bottom {
    flex-direction: column;
    gap: var(--gb-space-sm);
    text-align: center;
  }
}

@media (max-width: 480px) {
  ul.products,
  .products {
    grid-template-columns: 1fr !important;
  }

  .gb-footer-grid {
    grid-template-columns: 1fr;
  }

  .gb-occasion-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gb-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .site-header, .site-footer, .gb-announcement-bar { display: none; }
  body { color: #000; background: #fff; }
}
