/**
 * heleneriu.fr - Stitch Redesign Override
 * Based on Stitch "Helene Riu Homepage Redesign" mockups
 * Palette: Cream/Beige/Gold/Brown - Elegant artisan luxury
 * Fonts: Playfair Display (headings) + Inter (body)
 * Generated: 2026-03-20
 */

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

/* ══════════════════════════════════════════
   CSS VARIABLE OVERRIDES
   ══════════════════════════════════════════ */
:root {
  /* Stitch palette */
  --stitch-cream: #F5F0E8;
  --stitch-cream-light: #FAF8F4;
  --stitch-cream-dark: #EDE6D8;
  --stitch-gold: #B8960C;
  --stitch-gold-light: #D4AF37;
  --stitch-gold-dark: #8B7200;
  --stitch-brown: #8B7355;
  --stitch-brown-light: #A08770;
  --stitch-brown-dark: #6D5A42;
  --stitch-brown-text: #5F4D38;
  --stitch-charcoal: #3A3028;
  --stitch-white: #FFFFFF;
  --stitch-border: #E0D5C5;
  --stitch-border-light: #EDE6D8;
  --stitch-shadow: rgba(139, 115, 85, 0.08);
  --stitch-shadow-hover: rgba(139, 115, 85, 0.15);
  --stitch-radius: 8px;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ══════════════════════════════════════════
   GLOBAL BASE
   ══════════════════════════════════════════ */
body {
  font-family: var(--font-body) !important;
  background-color: var(--stitch-cream-light) !important;
  color: var(--stitch-charcoal) !important;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.section__title,
.hero__title,
.footer-heading {
  font-family: var(--font-heading) !important;
  color: var(--stitch-charcoal) !important;
  font-weight: 500;
  letter-spacing: -0.01em;
}

a {
  color: var(--stitch-brown);
  transition: color 0.2s ease;
}
a:hover {
  color: var(--stitch-gold);
}

/* ══════════════════════════════════════════
   HEADER REDESIGN
   ══════════════════════════════════════════ */

/* Trust bar */
.trust-bar {
  background: var(--stitch-brown-dark) !important;
  padding: 6px 0 !important;
  font-size: 12px !important;
}
.trust-bar-text {
  color: var(--stitch-cream) !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em;
}
.trust-bar-icon svg {
  stroke: var(--stitch-cream) !important;
  opacity: 0.8;
}

/* Topbar contact - hidden in Stitch design (info in trust bar + footer) */
.header-topbar {
  display: none !important;
}

/* Main header - Stitch centered layout */
.header-main {
  background: var(--stitch-white) !important;
  border-bottom: 1px solid var(--stitch-border) !important;
  padding: 8px 0 !important;
}

/* Stitch header grid: brand centered, actions right */
.stitch-header {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  position: relative !important;
  padding: 8px 0 !important;
}

/* Brand centered */
.stitch-brand {
  text-align: center !important;
  margin-bottom: 6px !important;
}
.stitch-brand .brand-link {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-decoration: none !important;
}

/* Nav centered below brand */
.stitch-nav {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
}

/* Actions positioned top-right */
.stitch-actions {
  position: absolute !important;
  right: 15px !important;
  top: 12px !important;
  left: auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  z-index: 10 !important;
  float: none !important;
}
/* Ensure container is relative for absolute positioning */
.stitch-header .container,
.header-main .container {
  position: relative !important;
}
.brand-name {
  font-family: var(--font-heading) !important;
  font-size: 32px !important;
  font-weight: 400 !important;
  color: var(--stitch-charcoal) !important;
  letter-spacing: 0.02em !important;
  line-height: 1.2 !important;
}
.brand-name em {
  font-style: italic !important;
  color: var(--stitch-gold) !important;
}
.brand-tagline {
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  color: var(--stitch-brown) !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  margin-top: 2px !important;
}
.brand-logo {
  display: none !important;
}

/* Navigation links */
.nav-menu {
  display: flex !important;
  justify-content: center !important;
  gap: 0 !important;
}
.nav-link {
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--stitch-brown-dark) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  padding: 8px 16px !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
  border-bottom: 2px solid transparent !important;
}
.nav-link:hover,
.nav-link.active {
  color: var(--stitch-gold) !important;
  border-bottom-color: var(--stitch-gold) !important;
}
.nav-icon {
  display: none !important;
}

/* Search bar */
.header-search input,
#search_widget input {
  background: var(--stitch-cream) !important;
  border: 1px solid var(--stitch-border) !important;
  border-radius: var(--stitch-radius) !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  padding: 8px 16px !important;
  color: var(--stitch-charcoal) !important;
}
.header-search button,
#search_widget button {
  background: var(--stitch-brown) !important;
  border-radius: 0 var(--stitch-radius) var(--stitch-radius) 0 !important;
  border: none !important;
}

/* ══════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 500px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58, 48, 40, 0.55) 0%, rgba(139, 115, 85, 0.35) 100%);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 700px !important;
  padding: 60px 20px !important;
}
.hero__title {
  font-family: var(--font-heading) !important;
  font-size: 48px !important;
  font-weight: 500 !important;
  color: var(--stitch-white) !important;
  line-height: 1.15 !important;
  margin-bottom: 16px !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.hero__subtitle {
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 300 !important;
  margin-bottom: 32px !important;
  line-height: 1.6 !important;
}
.hero__actions {
  display: flex !important;
  gap: 16px !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
}

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.btn--primary,
.btn-primary,
a.btn--primary {
  background: var(--stitch-gold) !important;
  color: var(--stitch-white) !important;
  border: none !important;
  border-radius: var(--stitch-radius) !important;
  padding: 12px 28px !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  cursor: pointer;
  display: inline-block;
}
.btn--primary:hover,
.btn-primary:hover,
a.btn--primary:hover {
  background: var(--stitch-gold-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(184, 150, 12, 0.3) !important;
}

.btn--outline,
.btn-outline,
a.btn--outline {
  background: transparent !important;
  color: var(--stitch-white) !important;
  border: 2px solid rgba(255,255,255,0.6) !important;
  border-radius: var(--stitch-radius) !important;
  padding: 10px 28px !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  display: inline-block;
}
.btn--outline:hover,
.btn-outline:hover,
a.btn--outline:hover {
  background: rgba(255,255,255,0.15) !important;
  border-color: var(--stitch-white) !important;
}

/* PrestaShop add to cart & checkout buttons */
.add-to-cart,
.btn.btn-primary.add-to-cart,
.cart-detailed-actions .btn-primary,
.checkout .btn-primary {
  background: var(--stitch-gold) !important;
  border: none !important;
  border-radius: var(--stitch-radius) !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
}
.add-to-cart:hover,
.cart-detailed-actions .btn-primary:hover {
  background: var(--stitch-gold-dark) !important;
  box-shadow: 0 4px 12px rgba(184, 150, 12, 0.3) !important;
}

/* ══════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════ */
.section {
  padding: 60px 0 !important;
}
.section__title {
  font-family: var(--font-heading) !important;
  font-size: 32px !important;
  font-weight: 500 !important;
  text-align: center !important;
  margin-bottom: 12px !important;
  color: var(--stitch-charcoal) !important;
}
.section__desc {
  text-align: center !important;
  color: var(--stitch-brown) !important;
  font-size: 15px !important;
  max-width: 600px !important;
  margin: 0 auto 40px !important;
  line-height: 1.6 !important;
}

/* Brands section */
.section--brands {
  background: var(--stitch-white) !important;
}

/* Services section */
.section--services {
  background: var(--stitch-cream-light) !important;
}

/* ══════════════════════════════════════════
   CARDS (Brand, Service, Product)
   ══════════════════════════════════════════ */
.brand-card {
  background: var(--stitch-white) !important;
  border: 1px solid var(--stitch-border) !important;
  border-radius: var(--stitch-radius) !important;
  padding: 24px !important;
  transition: all 0.3s ease !important;
}
.brand-card:hover {
  border-color: var(--stitch-gold-light) !important;
  box-shadow: 0 8px 24px var(--stitch-shadow-hover) !important;
  transform: translateY(-2px);
}
.brand-card__name {
  font-family: var(--font-heading) !important;
  font-size: 20px !important;
  color: var(--stitch-charcoal) !important;
  margin-bottom: 4px !important;
}
.brand-card__origin {
  font-size: 12px !important;
  color: var(--stitch-brown) !important;
}
.brand-card__desc {
  font-size: 14px !important;
  color: var(--stitch-brown-text) !important;
  line-height: 1.6 !important;
  margin: 12px 0 !important;
}
.brand-card__cta {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--stitch-gold) !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}
.brand-card__cta:hover {
  color: var(--stitch-gold-dark) !important;
}
.brand-card__list {
  list-style: none !important;
  padding: 0 !important;
  margin: 8px 0 12px !important;
}
.brand-card__list li {
  padding: 3px 0 !important;
}
.brand-card__list li a {
  font-size: 13px !important;
  color: var(--stitch-brown) !important;
}
.brand-card__list li a:hover {
  color: var(--stitch-gold) !important;
}

/* Service cards */
.service-card {
  background: var(--stitch-white) !important;
  border: 1px solid var(--stitch-border) !important;
  border-radius: var(--stitch-radius) !important;
  padding: 28px 20px !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
}
.service-card:hover {
  border-color: var(--stitch-gold-light) !important;
  box-shadow: 0 8px 24px var(--stitch-shadow-hover) !important;
}
.service-card__icon {
  width: 56px !important;
  height: 56px !important;
  border: 1px solid var(--stitch-border) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 16px !important;
}
.service-card__icon svg {
  stroke: var(--stitch-gold) !important;
}
.service-card__title {
  font-family: var(--font-heading) !important;
  font-size: 16px !important;
  margin-bottom: 8px !important;
}
.service-card p {
  font-size: 13px !important;
  color: var(--stitch-brown-text) !important;
  line-height: 1.5 !important;
}
.service-card__link {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: var(--stitch-gold) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  text-decoration: none !important;
}

/* Workshop/Atelier cards */
.workshop-card {
  background: var(--stitch-white) !important;
  border: 1px solid var(--stitch-border) !important;
  border-radius: var(--stitch-radius) !important;
  padding: 24px !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
}
.workshop-card:hover {
  border-color: var(--stitch-gold-light) !important;
  box-shadow: 0 8px 24px var(--stitch-shadow-hover) !important;
}

/* ══════════════════════════════════════════
   PRODUCT CARDS (PrestaShop)
   ══════════════════════════════════════════ */
.product-miniature {
  background: var(--stitch-white) !important;
  border: 1px solid var(--stitch-border-light) !important;
  border-radius: var(--stitch-radius) !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
}
.product-miniature:hover {
  border-color: var(--stitch-gold-light) !important;
  box-shadow: 0 8px 24px var(--stitch-shadow-hover) !important;
  transform: translateY(-2px);
}
.product-miniature .product-title a {
  font-family: var(--font-heading) !important;
  font-size: 15px !important;
  color: var(--stitch-charcoal) !important;
  font-weight: 500 !important;
}
.product-miniature .product-price-and-shipping .price {
  color: var(--stitch-brown-dark) !important;
  font-weight: 600 !important;
  font-size: 16px !important;
}
.product-miniature .thumbnail-container img {
  border-radius: var(--stitch-radius) var(--stitch-radius) 0 0 !important;
}

/* ══════════════════════════════════════════
   CART PAGE
   ══════════════════════════════════════════ */
.cart-grid {
  background: var(--stitch-cream-light) !important;
}
.cart-grid-body {
  background: var(--stitch-white) !important;
  border-radius: var(--stitch-radius) !important;
  border: 1px solid var(--stitch-border) !important;
  padding: 24px !important;
}
.cart-grid-right .card {
  background: var(--stitch-cream) !important;
  border: 1px solid var(--stitch-border) !important;
  border-radius: var(--stitch-radius) !important;
}
.cart-grid-right .card-block {
  padding: 20px !important;
}
.cart-summary-line .label,
.cart-summary-line .value {
  font-family: var(--font-body) !important;
  color: var(--stitch-charcoal) !important;
}
.cart-summary-totals .cart-total .label {
  font-family: var(--font-heading) !important;
  font-size: 18px !important;
  font-weight: 600 !important;
}

/* ══════════════════════════════════════════
   ACCOUNT DASHBOARD
   ══════════════════════════════════════════ */
#my-account .page-header h1,
.page-my-account h1,
.page-customer-account h1 {
  font-family: var(--font-heading) !important;
  font-size: 36px !important;
  text-align: center !important;
  padding: 40px 0 !important;
  background: var(--stitch-cream) !important;
  margin: 0 !important;
}
.page-my-account .account-list a,
.myaccount-link-list a {
  background: var(--stitch-white) !important;
  border: 1px solid var(--stitch-border) !important;
  border-radius: var(--stitch-radius) !important;
  font-family: var(--font-body) !important;
  transition: all 0.3s ease !important;
}
.page-my-account .account-list a:hover,
.myaccount-link-list a:hover {
  border-color: var(--stitch-gold-light) !important;
  box-shadow: 0 4px 12px var(--stitch-shadow) !important;
}
.account-navigation .link-item.active {
  background: var(--stitch-gold) !important;
  color: var(--stitch-white) !important;
  border-radius: var(--stitch-radius) !important;
}

/* Order table */
.table-labeled th {
  background: var(--stitch-cream) !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: var(--stitch-brown-dark) !important;
  border-bottom: 2px solid var(--stitch-border) !important;
}
.table-labeled td {
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  border-bottom: 1px solid var(--stitch-border-light) !important;
}

/* ══════════════════════════════════════════
   BLOG / WORKSHOP (CMS pages)
   ══════════════════════════════════════════ */
.blog-grid,
.cms-page-content {
  max-width: 1100px;
  margin: 0 auto;
}
.blog-card {
  background: var(--stitch-white) !important;
  border-radius: var(--stitch-radius) !important;
  overflow: hidden;
  border: 1px solid var(--stitch-border-light) !important;
  transition: all 0.3s ease !important;
}
.blog-card:hover {
  box-shadow: 0 8px 24px var(--stitch-shadow-hover) !important;
  transform: translateY(-2px);
}
.blog-card__tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.blog-card__tag--knitting { background: #E8DCC8; color: #6D5A42; }
.blog-card__tag--technique { background: #C8D5E0; color: #3A5568; }
.blog-card__tag--new { background: #E0C8C8; color: #8B4042; }
.blog-card__tag--inspiration { background: #D5E0C8; color: #4A6B3A; }

.blog-card__title {
  font-family: var(--font-heading) !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  color: var(--stitch-charcoal) !important;
  line-height: 1.3 !important;
}
.blog-card__excerpt {
  font-size: 14px !important;
  color: var(--stitch-brown-text) !important;
  line-height: 1.5 !important;
}
.blog-card__readmore {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--stitch-gold) !important;
  text-decoration: none !important;
}

/* ══════════════════════════════════════════
   BRANDS DIRECTORY PAGE
   ══════════════════════════════════════════ */
.brands-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.brands-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58, 48, 40, 0.5) 0%, rgba(139, 115, 85, 0.3) 100%);
  z-index: 1;
}
.brands-hero__content {
  position: relative;
  z-index: 2;
}
.brands-hero__title {
  font-family: var(--font-heading) !important;
  font-size: 48px !important;
  color: var(--stitch-white) !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}
.brands-hero__subtitle {
  font-size: 16px !important;
  color: rgba(255,255,255,0.8) !important;
  font-style: italic !important;
}
.brands-directory-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 48px 20px !important;
}
.brand-directory-card {
  background: var(--stitch-white) !important;
  border: 1px solid var(--stitch-border) !important;
  border-radius: var(--stitch-radius) !important;
  padding: 32px 24px !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
}
.brand-directory-card:hover {
  border-color: var(--stitch-gold-light) !important;
  box-shadow: 0 8px 24px var(--stitch-shadow-hover) !important;
}
.brand-directory-card__logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.brand-directory-card__name {
  font-family: var(--font-heading) !important;
  font-size: 18px !important;
  color: var(--stitch-gold) !important;
  margin-bottom: 12px !important;
}
.brand-directory-card__desc {
  font-size: 13px !important;
  color: var(--stitch-brown-text) !important;
  line-height: 1.6 !important;
}

/* ══════════════════════════════════════════
   FOOTER REDESIGN
   ══════════════════════════════════════════ */
.footer-senior,
#footer {
  background: var(--stitch-cream) !important;
  border-top: 1px solid var(--stitch-border) !important;
  color: var(--stitch-brown-text) !important;
}
.footer-heading {
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: var(--stitch-charcoal) !important;
  margin-bottom: 16px !important;
}
.footer-links li a {
  font-size: 13px !important;
  color: var(--stitch-brown) !important;
  text-decoration: none !important;
  padding: 3px 0 !important;
  display: inline-block !important;
}
.footer-links li a:hover {
  color: var(--stitch-gold) !important;
}
.footer-newsletter input[type="email"],
.footer-newsletter input[type="text"] {
  background: var(--stitch-white) !important;
  border: 1px solid var(--stitch-border) !important;
  border-radius: var(--stitch-radius) 0 0 var(--stitch-radius) !important;
  padding: 10px 16px !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
}
.footer-newsletter button,
.footer-newsletter .btn {
  background: var(--stitch-gold) !important;
  color: var(--stitch-white) !important;
  border: none !important;
  border-radius: 0 var(--stitch-radius) var(--stitch-radius) 0 !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  font-size: 12px !important;
  padding: 10px 20px !important;
}
.footer-bottom,
.footer-copyright {
  border-top: 1px solid var(--stitch-border) !important;
  padding: 16px 0 !important;
  text-align: center !important;
  font-size: 12px !important;
  color: var(--stitch-brown) !important;
}
.social-links a {
  color: var(--stitch-brown) !important;
  transition: color 0.2s ease !important;
}
.social-links a:hover {
  color: var(--stitch-gold) !important;
}

/* ══════════════════════════════════════════
   PRESTASHOP COMPONENT OVERRIDES
   ══════════════════════════════════════════ */

/* Breadcrumb */
.breadcrumb {
  background: var(--stitch-cream-light) !important;
  font-size: 13px !important;
  padding: 10px 0 !important;
}
.breadcrumb a {
  color: var(--stitch-brown) !important;
}

/* Category pages */
.block-category h1 {
  font-family: var(--font-heading) !important;
  color: var(--stitch-charcoal) !important;
}

/* Faceted search */
#search_filters .facet-title {
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: var(--stitch-charcoal) !important;
}

/* Pagination */
.pagination .page-link {
  border: 1px solid var(--stitch-border) !important;
  color: var(--stitch-brown) !important;
  border-radius: var(--stitch-radius) !important;
  font-family: var(--font-body) !important;
}
.pagination .page-item.active .page-link {
  background: var(--stitch-gold) !important;
  border-color: var(--stitch-gold) !important;
  color: var(--stitch-white) !important;
}

/* Modal / popups */
.modal-header {
  background: var(--stitch-cream) !important;
  border-bottom: 1px solid var(--stitch-border) !important;
}
.modal-title {
  font-family: var(--font-heading) !important;
}

/* Forms */
.form-control {
  border: 1px solid var(--stitch-border) !important;
  border-radius: var(--stitch-radius) !important;
  font-family: var(--font-body) !important;
  padding: 10px 14px !important;
}
.form-control:focus {
  border-color: var(--stitch-gold-light) !important;
  box-shadow: 0 0 0 3px rgba(184, 150, 12, 0.1) !important;
}

/* Product page */
.product-price .current-price-value {
  font-family: var(--font-heading) !important;
  color: var(--stitch-brown-dark) !important;
}

/* ══════════════════════════════════════════
   STITCH MOCKUP REFINEMENTS
   ══════════════════════════════════════════ */

/* Hide breadcrumb on homepage (mockup has none) */
body#index .breadcrumb,
body#index #wrapper .breadcrumb {
  display: none !important;
}

/* Section separators - gold gradient like mockup */
.section--brands + .section--services::before,
.section--services::before {
  content: '' !important;
  display: block !important;
  height: 4px !important;
  background: linear-gradient(90deg, transparent, var(--stitch-gold-light), transparent) !important;
  margin: 0 auto !important;
  max-width: 300px !important;
}

/* Header user actions: icon-only style like mockup */
.stitch-actions .user-actions .hidden-sm-down {
  font-size: 0 !important;
}
.stitch-actions .user-actions .material-icons,
.stitch-actions .user-actions i {
  font-size: 20px !important;
}
/* Keep cart count visible */
.stitch-actions .user-actions .cart-products-count {
  font-size: 11px !important;
}

/* Brand cards - add logo placeholder area matching mockup */
.brand-card__header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid var(--stitch-border-light) !important;
  margin-bottom: 12px !important;
}

/* Brands grid - horizontal scroll on homepage like mockup carousel */
.brands-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}

/* Workshop/Atelier section background matching mockup */
.section--workshop {
  background: linear-gradient(180deg, var(--stitch-cream-dark) 0%, var(--stitch-cream) 100%) !important;
}

/* Homepage sections spacing refinement */
body#index .section {
  padding: 56px 0 !important;
}

/* Services grid - 4 equal columns like mockup */
.services-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}

/* Atelier grid - 3 columns like mockup */
.atelier-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}

/* Workshop card CTA buttons - gold outline like mockup */
.atelier-card .btn--small,
.workshop-card .btn--small {
  background: transparent !important;
  color: var(--stitch-gold) !important;
  border: 1.5px solid var(--stitch-gold) !important;
  border-radius: var(--stitch-radius) !important;
  padding: 8px 20px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
}
.atelier-card .btn--small:hover,
.workshop-card .btn--small:hover {
  background: var(--stitch-gold) !important;
  color: var(--stitch-white) !important;
}

/* Footer newsletter section - matching mockup beige gradient */
.footer-senior .block_newsletter,
#footer .block_newsletter {
  background: linear-gradient(180deg, var(--stitch-cream-light) 0%, var(--stitch-cream) 100%) !important;
  padding: 40px 0 !important;
  border-bottom: 1px solid var(--stitch-border) !important;
}

/* Newsletter title */
.block_newsletter .title_block,
.newsletter-title {
  font-family: var(--font-heading) !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  color: var(--stitch-charcoal) !important;
}

/* Trust bar - tighter, more compact like mockup */
.trust-bar-content {
  display: flex !important;
  justify-content: center !important;
  gap: 32px !important;
}
.trust-bar-item {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

/* ══════════════════════════════════════════
   BRANDS PAGE OVERRIDE (Stitch mockup)
   ══════════════════════════════════════════ */
.brands-page__title {
  font-family: var(--font-heading) !important;
  color: var(--stitch-charcoal) !important;
}
.brands-page__title::after {
  background: var(--stitch-gold) !important;
}
.brands-page__intro {
  font-family: var(--font-body) !important;
  color: var(--stitch-brown) !important;
}
.brands-page__grid {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 1000px !important;
  gap: 24px !important;
}
.brand-card-page {
  border: 1px solid var(--stitch-border) !important;
  border-radius: var(--stitch-radius) !important;
}
.brand-card-page:hover {
  border-color: var(--stitch-gold-light) !important;
  box-shadow: 0 8px 24px var(--stitch-shadow-hover) !important;
}
.brand-card-page__img {
  background: var(--stitch-cream-light) !important;
  border-bottom: 1px solid var(--stitch-border-light) !important;
}
.brand-card-page__name {
  font-family: var(--font-heading) !important;
  color: var(--stitch-charcoal) !important;
}
.brand-card-page__desc {
  font-family: var(--font-body) !important;
  color: var(--stitch-brown-text) !important;
}
.brand-card-page__cta {
  font-family: var(--font-body) !important;
  color: var(--stitch-gold) !important;
  font-weight: 600 !important;
}
.brand-card-page:hover .brand-card-page__cta {
  color: var(--stitch-gold-dark) !important;
}
.brand-card-page__count {
  background: var(--stitch-cream) !important;
  color: var(--stitch-brown) !important;
}

/* ══════════════════════════════════════════
   PRODUCT PAGE REFINEMENTS
   ══════════════════════════════════════════ */
.product-add-to-cart .add-to-cart {
  background: var(--stitch-gold) !important;
  border-radius: var(--stitch-radius) !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 12px 32px !important;
  font-size: 14px !important;
}
.product-add-to-cart .add-to-cart:hover {
  background: var(--stitch-gold-dark) !important;
  box-shadow: 0 4px 12px rgba(184, 150, 12, 0.3) !important;
}
.product-variants .product-variants-item label {
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  letter-spacing: 0.05em !important;
  color: var(--stitch-charcoal) !important;
}
.product-variants .color {
  border-radius: var(--stitch-radius) !important;
  border: 1px solid var(--stitch-border) !important;
  padding: 6px 14px !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  transition: all 0.2s ease !important;
}
.product-variants .color.selected,
.product-variants .color:hover {
  border-color: var(--stitch-gold) !important;
  background: var(--stitch-cream) !important;
}
.product-quantity .qty .input-group .form-control {
  border: 1px solid var(--stitch-border) !important;
  border-radius: var(--stitch-radius) !important;
}
.tabs .nav-tabs .nav-link {
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  letter-spacing: 0.05em !important;
  color: var(--stitch-brown) !important;
}
.tabs .nav-tabs .nav-link.active {
  color: var(--stitch-gold) !important;
  border-bottom-color: var(--stitch-gold) !important;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 991px) {
  .hero__title {
    font-size: 32px !important;
  }
  .hero__inner {
    padding: 40px 16px !important;
  }
  .brands-directory-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .brand-name {
    font-size: 24px !important;
  }
  .stitch-nav {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .stitch-nav .nav-menu {
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
  }
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 28px !important;
  }
  .hero {
    min-height: 380px !important;
  }
  .hero__actions {
    flex-direction: column !important;
    align-items: center !important;
  }
  .section__title {
    font-size: 26px !important;
  }
  .brands-directory-grid {
    grid-template-columns: 1fr !important;
  }
  /* Mobile: hide desktop nav, show burger */
  .stitch-nav {
    display: none !important;
  }
  .stitch-brand .brand-name {
    font-size: 22px !important;
  }
  .stitch-actions {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    justify-content: flex-end !important;
    width: 100% !important;
  }
  .stitch-header {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  .stitch-brand {
    order: 0 !important;
    margin-bottom: 0 !important;
  }
  .brands-page__grid {
    grid-template-columns: 1fr !important;
  }
  .nav-link {
    font-size: 12px !important;
    padding: 8px 10px !important;
  }
}
