/* ==========================================================================
   GUSIE'S BEAUTY - MASTER LUXURY ARTISANAL BOTANICAL THEME & RESPONSIVE UX
   Palette: Warm Gold (#B29243), Soft Sand/Cream (#FAF7F2), Botanical Green (#275446),
   Rich Espresso (#2D2511), and Ivory (#FFFFFF).
   Full Mobile, Tablet & Desktop Responsive Architecture
   (c) 2026 Gusie's Beauty • Sierra Holdings Inc
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,400;1,600;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Authentic Packaging Palette (High Contrast Compliant) */
  --gb-gold-primary: #947228;
  --gb-gold-accent: #B29243;
  --gb-gold-light: #C5AD72;
  --gb-gold-sand: #D9C9A1;
  --gb-gold-dark: #6E531B;
  --gb-gold-bronze: #4A3812;
  --gb-gold-glow: #FBBF24;
  --gb-gold-metallic: #D4AF37;
  
  --gb-botanical-green: #275446;
  --gb-botanical-dark: #1A392F;
  --gb-botanical-light: #EBF3F0;
  --gb-botanical-accent: #3A7D69;
  
  --gb-bg-cream: #FAF7F2;
  --gb-bg-card: #FFFFFF;
  --gb-bg-dark: #18181B;
  --gb-bg-dark-card: #27272A;
  
  --gb-text-espresso: #2D2511;
  --gb-text-body: #3E3728;
  --gb-text-muted: #5C5446;
  --gb-text-light: #F4F4F5;
  --gb-text-light-muted: #D4D4D8;
  
  --gb-border-sand: #E8DFD1;
  --gb-border-gold: rgba(178, 146, 67, 0.4);
  --gb-border-dark: rgba(255, 255, 255, 0.15);
  
  /* Typography */
  --gb-font-serif: 'Playfair Display', Georgia, serif;
  --gb-font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Radii & Shadows */
  --gb-radius-sm: 8px;
  --gb-radius-md: 14px;
  --gb-radius-lg: 22px;
  --gb-radius-xl: 32px;
  --gb-shadow-sm: 0 4px 12px rgba(45, 37, 17, 0.06);
  --gb-shadow-md: 0 10px 30px rgba(45, 37, 17, 0.10);
  --gb-shadow-lg: 0 20px 50px rgba(45, 37, 17, 0.14);
  --gb-shadow-gold: 0 8px 25px rgba(148, 114, 40, 0.35);
}

/* Base Elements */
body, #website, .ko_Theme #website {
  font-family: var(--gb-font-sans) !important;
  color: var(--gb-text-body);
  background-color: var(--gb-bg-cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

p, #website p, .ko_Theme #website p {
  background: transparent !important;
  background-color: transparent !important;
}

h1, h2, h3, h4, h5, h6,
.gb-serif,
[data-font*="Annie"],
[style*="Annie Use Your Telescope"] {
  font-family: var(--gb-font-serif) !important;
  color: var(--gb-text-espresso) !important;
  letter-spacing: -0.015em;
  font-weight: 700;
}

/* ==========================================================================
   1. TOP ANNOUNCEMENT BAR & SHIMMER
   ========================================================================== */
.gb-top-announcement {
  background: linear-gradient(90deg, #18181B 0%, #27272A 30%, #2D2511 50%, #6E531B 75%, #18181B 100%);
  color: #FAF7F2 !important;
  text-align: center;
  padding: 11px 16px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(178, 146, 67, 0.5);
}

@media (max-width: 576px) {
  .gb-top-announcement {
    font-size: 0.78rem;
    padding: 8px 12px;
    flex-wrap: wrap;
    gap: 6px;
  }
}

/* ==========================================================================
   2. LUXURY TICKER / MARQUEE (WOW FACTOR)
   ========================================================================== */
.gb-marquee-strip {
  background: #18181B;
  color: #F4F4F5;
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  border-top: 1px solid var(--gb-gold-primary);
  border-bottom: 1px solid var(--gb-gold-primary);
}

.gb-marquee-track {
  display: inline-block;
  animation: gbMarquee 30s linear infinite;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gb-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 24px;
}

.gb-marquee-item i {
  color: var(--gb-gold-glow);
}

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

/* ==========================================================================
   3. HERO BANNER & GOLDEN GLOW HIGHLIGHTS
   ========================================================================== */
.gb-hero {
  position: relative;
  padding: 75px 0 85px;
  background: radial-gradient(circle at 85% 20%, #F5EFE6 0%, #FAF7F2 60%, #ECE4D0 100%);
  border-bottom: 1px solid var(--gb-border-sand);
  overflow: hidden;
}

.gb-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EBF3F0;
  color: var(--gb-botanical-dark);
  border: 1.5px solid rgba(39, 84, 70, 0.35);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.gb-hero-title {
  font-size: 3.3rem;
  line-height: 1.18;
  font-weight: 800;
  color: var(--gb-text-espresso);
  margin-bottom: 22px;
}

.gb-hero-lead {
  font-size: 1.18rem;
  line-height: 1.8;
  color: var(--gb-text-body);
  margin-bottom: 32px;
  max-width: 580px;
}

.gb-hero-img-wrapper {
  position: relative;
  border-radius: var(--gb-radius-xl);
  box-shadow: var(--gb-shadow-lg);
  overflow: hidden;
  border: 5px solid #FFFFFF;
}

.gb-hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gb-hero-img-wrapper:hover .gb-hero-img {
  transform: scale(1.03);
}

.gb-hero-floating-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  padding: 16px 20px;
  border-radius: var(--gb-radius-md);
  border: 1.5px solid rgba(148, 114, 40, 0.4);
  box-shadow: var(--gb-shadow-md);
  display: flex;
  align-items: center;
  gap: 16px;
}

.gb-floating-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gb-botanical-light);
  color: var(--gb-botanical-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .gb-hero { padding: 45px 0 55px; }
  .gb-hero-title { font-size: 2.5rem; }
  .gb-hero-img { height: 380px; }
}

@media (max-width: 576px) {
  .gb-hero-title { font-size: 2rem; }
  .gb-hero-lead { font-size: 1rem; line-height: 1.65; }
  .gb-hero-img { height: 280px; }
  .gb-hero-floating-card { bottom: 12px; left: 12px; right: 12px; padding: 12px 14px; }
}

/* ==========================================================================
   4. HIGH-CONTRAST ACCESSIBLE BUTTONS (44PX+ TAP TARGETS)
   ========================================================================== */
.gb-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #7A5B18 0%, #947228 50%, #634913 100%);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.96rem;
  padding: 12px 28px;
  min-height: 48px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  box-shadow: var(--gb-shadow-gold);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.gb-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(110, 83, 27, 0.5);
  background: linear-gradient(135deg, #59410F 0%, #7A5B18 100%);
  color: #FFFFFF !important;
}

.gb-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #FFFFFF;
  color: var(--gb-text-espresso) !important;
  font-weight: 700;
  font-size: 0.96rem;
  padding: 12px 28px;
  min-height: 48px;
  border-radius: 50px;
  border: 2px solid var(--gb-gold-primary);
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.gb-btn-outline:hover {
  background: var(--gb-gold-sand);
  border-color: var(--gb-gold-dark);
  color: var(--gb-text-espresso) !important;
}

.gb-btn-buy-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gb-botanical-dark);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 11px 22px;
  min-height: 46px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.gb-btn-buy-now:hover {
  background: #11261F;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   5. INTERACTIVE RITUAL BUNDLE BUILDER (WOW FACTOR)
   ========================================================================== */
.gb-ritual-builder-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FDFBF7 100%);
  border-radius: var(--gb-radius-xl);
  border: 2px solid var(--gb-gold-accent);
  padding: 40px;
  box-shadow: var(--gb-shadow-lg);
  position: relative;
  overflow: hidden;
}

.gb-ritual-step {
  background: #FAF7F2;
  border-radius: var(--gb-radius-md);
  border: 1.5px solid var(--gb-border-sand);
  padding: 20px;
  transition: all 0.25s ease;
}

.gb-ritual-step.active {
  border-color: var(--gb-gold-primary);
  background: #FFFFFF;
  box-shadow: var(--gb-shadow-md);
}

.gb-ritual-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gb-gold-primary);
  color: #FFFFFF;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

/* ==========================================================================
   6. PRODUCT CARDS & MULTI-OPTION SELECTORS (FULL RESPONSIVE)
   ========================================================================== */
.gb-product-card {
  background: var(--gb-bg-card);
  border-radius: var(--gb-radius-lg);
  border: 1.5px solid var(--gb-border-sand);
  padding: 24px;
  box-shadow: var(--gb-shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.gb-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--gb-shadow-md);
  border-color: var(--gb-gold-accent);
}

/* Gallery Container */
.gb-gallery-container {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: var(--gb-radius-md);
  overflow: hidden;
  background: #FDFBF7;
  border: 1px solid var(--gb-border-sand);
  margin-bottom: 16px;
}

.gb-gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: opacity 0.2s ease, transform 0.3s ease;
  cursor: zoom-in;
}

.gb-gallery-container:hover .gb-gallery-main-img {
  transform: scale(1.04);
}

.gb-gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--gb-border-sand);
  color: var(--gb-text-espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.gb-gallery-nav-btn:hover {
  background: var(--gb-gold-primary);
  color: #FFFFFF;
}

.gb-gallery-prev { left: 10px; }
.gb-gallery-next { right: 10px; }

.gb-gallery-counter {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(24, 24, 27, 0.85);
  color: #FAF7F2;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  z-index: 4;
}

.gb-gallery-zoom-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--gb-border-sand);
  color: var(--gb-text-espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  z-index: 4;
}

.gb-product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #6E531B, #947228);
  color: #FFFFFF;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  z-index: 4;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Thumbnail Strip */
.gb-thumb-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.gb-thumb-item {
  width: 52px;
  height: 52px;
  border-radius: var(--gb-radius-sm);
  border: 1.5px solid var(--gb-border-sand);
  object-fit: cover;
  cursor: pointer;
  opacity: 0.65;
  transition: all 0.2s ease;
  flex-shrink: 0;
  background: #FFFFFF;
}

.gb-thumb-item:hover, .gb-thumb-item.active {
  opacity: 1;
  border-color: var(--gb-gold-primary);
  box-shadow: 0 0 0 2px rgba(148, 114, 40, 0.4);
}

/* Option Selectors */
.gb-option-group {
  margin-bottom: 14px;
}

.gb-option-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gb-text-espresso);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gb-select-control {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-family: var(--gb-font-sans);
  font-weight: 700;
  color: var(--gb-text-espresso);
  background-color: #FAF7F2;
  border: 1.5px solid var(--gb-border-sand);
  border-radius: var(--gb-radius-sm);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.gb-select-control:focus {
  border-color: var(--gb-gold-primary);
  box-shadow: 0 0 0 3px rgba(148, 114, 40, 0.25);
  background-color: #FFFFFF;
}

/* Price Display */
.gb-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
}

.gb-price-current {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gb-gold-dark);
  font-family: var(--gb-font-serif);
}

.gb-price-subtotal {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gb-text-muted);
}

.gb-qty-group {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--gb-border-sand);
  border-radius: var(--gb-radius-sm);
  background: #FAF7F2;
  overflow: hidden;
  width: 110px;
}

.gb-qty-btn {
  width: 34px;
  height: 38px;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--gb-text-espresso);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.gb-qty-btn:hover {
  background: var(--gb-gold-sand);
}

.gb-qty-input {
  width: 42px;
  height: 38px;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--gb-text-espresso);
}

/* ==========================================================================
   7. DEDICATED CART PAGE & STEPPERS
   ========================================================================== */
.gb-cart-container {
  background: #FFFFFF;
  border-radius: var(--gb-radius-lg);
  border: 1.5px solid var(--gb-border-sand);
  padding: 30px;
  box-shadow: var(--gb-shadow-sm);
}

.gb-cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gb-border-sand);
}

.gb-cart-item:last-child {
  border-bottom: none;
}

.gb-cart-item-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gb-cart-item-img {
  width: 75px;
  height: 75px;
  border-radius: var(--gb-radius-sm);
  border: 1px solid var(--gb-border-sand);
  object-fit: cover;
  background: #FAF7F2;
  flex-shrink: 0;
}

.gb-cart-item-title {
  font-family: var(--gb-font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gb-text-espresso);
}

.gb-cart-item-meta {
  display: flex;
  gap: 6px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.gb-cart-item-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--gb-border-sand);
  border-radius: 30px;
  background: #FAF7F2;
  overflow: hidden;
}

.gb-stepper-btn {
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gb-stepper-val {
  min-width: 32px;
  text-align: center;
  font-weight: 800;
  font-size: 0.95rem;
}

.gb-cart-item-price {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--gb-gold-dark);
  font-family: var(--gb-font-serif);
  min-width: 75px;
  text-align: right;
}

.gb-cart-remove-btn {
  background: transparent;
  border: none;
  color: #71717A;
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 8px;
}

.gb-cart-remove-btn:hover {
  color: #DC2626;
}

.gb-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--gb-text-body);
}

.gb-summary-total {
  border-top: 1.5px solid var(--gb-border-sand);
  margin-top: 12px;
  padding-top: 16px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gb-text-espresso);
  font-family: var(--gb-font-serif);
}

@media (max-width: 767px) {
  .gb-cart-item {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 14px;
  }
  .gb-cart-item-info {
    grid-column: 1 / -1;
  }
  .gb-cart-item-price {
    text-align: left;
  }
}

/* ==========================================================================
   8. STICKY MOBILE BOTTOM BAR & FLOATING BADGES
   ========================================================================== */
.gb-mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(24, 24, 27, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1.5px solid rgba(178, 146, 67, 0.5);
  padding: 10px 20px;
  z-index: 9999;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -4px 25px rgba(0,0,0,0.35);
}

@media (max-width: 768px) {
  .gb-mobile-bottom-bar {
    display: flex;
  }
  body {
    padding-bottom: 70px;
  }
}

.gb-cart-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gb-gold-glow);
  color: #18181B;
  font-size: 0.75rem;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  margin-left: 6px;
}

/* ==========================================================================
   9. ACCESSIBLE HIGH-CONTRAST FOOTER
   ========================================================================== */
.gb-luxury-footer, .gb-footer, #gb_luxury_footer, .keditFooter, .keditFooter1 {
  background: #18181B !important;
  background-color: #18181B !important;
  color: #FFFFFF !important;
  position: relative;
  border-top: 4px solid var(--gb-gold-accent);
}

.gb-luxury-footer p,
.gb-footer p,
#gb_luxury_footer p,
.keditFooter p,
.keditFooter1 p,
#footerContent p {
  background: transparent !important;
  background-color: transparent !important;
  color: #F4F4F5 !important;
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 1 !important;
}

.gb-luxury-footer a, .gb-footer a, #gb_luxury_footer a, .keditFooter a {
  color: #E4E4E7 !important;
  transition: color 0.2s ease;
}

.gb-luxury-footer a:hover, .gb-footer a:hover, #gb_luxury_footer a:hover, .keditFooter a:hover {
  color: var(--gb-gold-glow) !important;
}

.gb-footer-brand-title {
  font-family: var(--gb-font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gb-gold-glow) !important;
  margin-bottom: 14px;
}

/* Lightbox Modal */
.gb-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 12, 0.94);
  backdrop-filter: blur(8px);
  z-index: 9999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.gb-lightbox.active {
  display: flex;
}

.gb-lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--gb-radius-md);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  border: 2px solid var(--gb-gold-accent);
}

.gb-lightbox-close {
  position: absolute;
  top: 24px;
  right: 30px;
  color: #FFFFFF;
  font-size: 2.8rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.gb-lightbox-close:hover {
  color: var(--gb-gold-glow);
}
