/* ===================================================
   LAYOUT FASHION — Editorial / Fashion-forward layout
   For women's fashion stores (loja de moda feminina)
   Activated by: data-layout="layout-fashion"
   =================================================== */

/* ---------- Custom Font for Fashion Layout ---------- */
@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=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- Base Overrides ---------- */
[data-layout="layout-fashion"] {
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:       0.75rem;
  --radius-sm:    0.375rem;
  --radius-pill:  50rem;
  --shadow:       0 8px 30px rgba(0,0,0,.06);
  --shadow-lg:    0 20px 48px rgba(0,0,0,.08);
  --transition:   .35s cubic-bezier(.4,0,.2,1);
}

[data-layout="layout-fashion"] body {
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: .01em;
}

[data-layout="layout-fashion"] h1,
[data-layout="layout-fashion"] h2,
[data-layout="layout-fashion"] h3,
[data-layout="layout-fashion"] h4,
[data-layout="layout-fashion"] h5,
[data-layout="layout-fashion"] h6 {
  font-weight: 700;
  letter-spacing: -.02em;
}

[data-layout="layout-fashion"] .container {
  max-width: 1280px;
}

/* ── Remove top notification bar ── */
[data-layout="layout-fashion"] .top-bar {
  display: none !important;
}

/* ════════════════════════════════════════════
   HEADER — Centered editorial style
   ════════════════════════════════════════════ */

[data-layout="layout-fashion"] .main-header {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: none;
  transition: box-shadow var(--transition);
}

[data-layout="layout-fashion"] .main-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}

[data-layout="layout-fashion"] .header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1rem 0;
  gap: 0;
}

/* Left side — Navigation + Search */
[data-layout="layout-fashion"] .header-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Center — Logo */
[data-layout="layout-fashion"] .header-logo {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

[data-layout="layout-fashion"] .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

[data-layout="layout-fashion"] .logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark);
  letter-spacing: -.02em;
}

/* Left side — Search toggle (desktop) */
[data-layout="layout-fashion"] .header-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Right side — Actions (search toggle, user, cart) */
[data-layout="layout-fashion"] .header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

[data-layout="layout-fashion"] .header-action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text);
  font-size: 1.05rem;
  transition: background var(--transition), color var(--transition);
  position: relative;
}

[data-layout="layout-fashion"] .header-action-btn:hover {
  background: rgba(var(--primary-rgb),.12);
  color: var(--primary);
}

[data-layout="layout-fashion"] .cart-btn {
  background: transparent;
  color: var(--text);
}

[data-layout="layout-fashion"] .cart-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}

[data-layout="layout-fashion"] .cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--primary);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  font-family: var(--font-body);
}

/* ── Search overlay ── */
[data-layout="layout-fashion"] .search-toggle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}

[data-layout="layout-fashion"] .search-toggle-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}

[data-layout="layout-fashion"] .search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.97);
  z-index: 3000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}

[data-layout="layout-fashion"] .search-overlay.active {
  opacity: 1;
  visibility: visible;
}

[data-layout="layout-fashion"] .search-overlay-inner {
  width: 100%;
  max-width: 640px;
  padding: 0 1.5rem;
  position: relative;
}

[data-layout="layout-fashion"] .search-overlay-close {
  position: absolute;
  top: -3rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--bg);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

[data-layout="layout-fashion"] .search-overlay-close:hover {
  background: var(--primary-light);
  color: var(--primary);
}

[data-layout="layout-fashion"] .search-overlay-input {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--border);
  padding: 1rem 0;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--dark);
  background: transparent;
  outline: none;
  transition: border-color var(--transition);
}

[data-layout="layout-fashion"] .search-overlay-input::placeholder {
  color: var(--text-muted);
  font-style: italic;
}

[data-layout="layout-fashion"] .search-overlay-input:focus {
  border-color: var(--primary);
}

[data-layout="layout-fashion"] .search-overlay-hint {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Hide default search form in fashion layout */
[data-layout="layout-fashion"] .header-search {
  display: none !important;
}

/* ── Navigation ── */
[data-layout="layout-fashion"] .main-nav {
  background: transparent;
  border-top: none;
  padding: 0.6rem 0 0.8rem;
  border-bottom: 1px solid var(--border);
}

[data-layout="layout-fashion"] .main-nav .container {
  display: flex;
  justify-content: center;
}

[data-layout="layout-fashion"] .nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5rem;
  align-items: center;
}

[data-layout="layout-fashion"] .nav-item {
  position: relative;
}

[data-layout="layout-fashion"] .nav-link {
  display: block;
  padding: 0.35rem 0;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--transition);
  position: relative;
}

[data-layout="layout-fashion"] .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--primary);
  transition: width var(--transition);
}

[data-layout="layout-fashion"] .nav-link:hover::after,
[data-layout="layout-fashion"] .nav-link.active::after {
  width: 100%;
}

[data-layout="layout-fashion"] .nav-link:hover,
[data-layout="layout-fashion"] .nav-link.active {
  background: transparent;
  color: var(--primary);
}

/* Mega Dropdown in Fashion Layout */
[data-layout="layout-fashion"] .mega-dropdown {
  border-radius: 0 0 var(--radius) var(--radius);
  border-top: 2px solid var(--primary-light);
}

[data-layout="layout-fashion"] .mega-item {
  border-radius: var(--radius-sm);
}

[data-layout="layout-fashion"] .mega-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

/* ════════════════════════════════════════════
   HERO — Full-screen editorial hero
   ════════════════════════════════════════════ */

[data-layout="layout-fashion"] .hero {
  height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center center;
  position: relative;
}

[data-layout="layout-fashion"] .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.2) 0%,
    rgba(0,0,0,.45) 100%
  );
  z-index: 1;
}

[data-layout="layout-fashion"] .hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 720px;
  margin: 0 auto;
}

[data-layout="layout-fashion"] .hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

[data-layout="layout-fashion"] .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  letter-spacing: -.03em;
}

[data-layout="layout-fashion"] .hero-title span {
  font-style: italic;
  color: inherit;
  opacity: .85;
}

[data-layout="layout-fashion"] .hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  opacity: .88;
  margin: 0 auto 2rem;
  max-width: 480px;
  line-height: 1.7;
}

[data-layout="layout-fashion"] .hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

[data-layout="layout-fashion"] .btn-hero-primary {
  background: #fff;
  color: var(--dark);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: none;
  transition: all var(--transition);
}

[data-layout="layout-fashion"] .btn-hero-primary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
}

[data-layout="layout-fashion"] .btn-hero-outline {
  border: 2px solid rgba(255,255,255,.8);
  color: #fff;
  padding: 0.9rem 2.4rem;
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  transition: all var(--transition);
}

[data-layout="layout-fashion"] .btn-hero-outline:hover {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}

/* ════════════════════════════════════════════
   SECTION TITLES — Fashion editorial
   ════════════════════════════════════════════ */

[data-layout="layout-fashion"] .section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
}

[data-layout="layout-fashion"] .section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

[data-layout="layout-fashion"] .section-title-center {
  display: block;
  text-align: center;
}

[data-layout="layout-fashion"] .section-title-center::after {
  left: 50%;
  transform: translateX(-50%);
}

[data-layout="layout-fashion"] .section-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ════════════════════════════════════════════
   CATEGORY GRID — Elegant 3-column
   ════════════════════════════════════════════ */

[data-layout="layout-fashion"] .category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  [data-layout="layout-fashion"] .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

[data-layout="layout-fashion"] .category-link {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 3/4;
}

[data-layout="layout-fashion"] .category-link-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.55) 35%, rgba(0,0,0,0) 60%);
}

[data-layout="layout-fashion"] .category-link-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .02em;
}

/* Dynamic category fallback gradients — fashion layout variants (slightly softer/more editorial) */
[data-layout="layout-fashion"] .cat-bg-dynamic1 { background: linear-gradient(135deg, #9b59b6 0%, #c39bd3 100%); }
[data-layout="layout-fashion"] .cat-bg-dynamic2 { background: linear-gradient(135deg, #5b6abf 0%, #8b9ee8 100%); }
[data-layout="layout-fashion"] .cat-bg-dynamic3 { background: linear-gradient(135deg, #2d8a6e 0%, #5ec4a0 100%); }
[data-layout="layout-fashion"] .cat-bg-dynamic4 { background: linear-gradient(135deg, #c77d44 0%, #e8b88a 100%); }
[data-layout="layout-fashion"] .cat-bg-dynamic5 { background: radial-gradient(circle at 30% 40%, #e8909a, #c06070); }
[data-layout="layout-fashion"] .cat-bg-dynamic6 { background: radial-gradient(circle at 70% 30%, #8e9bdb, #5f6ab0); }
[data-layout="layout-fashion"] .cat-bg-dynamic7 { background: linear-gradient(135deg, #4a9e9e 0%, #7ccccc 100%); }
[data-layout="layout-fashion"] .cat-bg-dynamic8 { background: linear-gradient(135deg, #c05050 0%, #e88080 100%); }

/* ════════════════════════════════════════════
   PRODUCT GRID — 2 columns (editorial)
   ════════════════════════════════════════════ */

[data-layout="layout-fashion"] .product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

@media (max-width: 576px) {
  [data-layout="layout-fashion"] .product-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Product Cards ── */
[data-layout="layout-fashion"] .product-card {
  border-radius: 0;
  border: none;
  background: transparent;
  transition: transform var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

[data-layout="layout-fashion"] .product-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

[data-layout="layout-fashion"] .product-card-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 5;
}

[data-layout="layout-fashion"] .product-card-tag {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 0;
}

[data-layout="layout-fashion"] .product-card-img {
  background: var(--bg);
  padding-top: 130%; /* 4:5 fashion aspect ratio — taller, more editorial */
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

[data-layout="layout-fashion"] .product-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

[data-layout="layout-fashion"] .product-card:hover .product-card-img img {
  transform: scale(1.04);
}

[data-layout="layout-fashion"] .product-card-body {
  padding: 0 0.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

[data-layout="layout-fashion"] .product-card-category {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

[data-layout="layout-fashion"] .product-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

[data-layout="layout-fashion"] .product-card-title a {
  text-decoration: none;
  color: var(--dark);
}

[data-layout="layout-fashion"] .product-card-title a:hover {
  color: var(--primary);
}

[data-layout="layout-fashion"] .product-card-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

[data-layout="layout-fashion"] .product-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
  white-space: nowrap;
}

[data-layout="layout-fashion"] .product-price .old-price {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 0.4rem;
}

[data-layout="layout-fashion"] .product-price .new-price {
  color: var(--accent);
}

[data-layout="layout-fashion"] .product-price .pix-price {
  font-size: 0.78rem;
  color: var(--success);
  font-weight: 600;
  display: block;
}

[data-layout="layout-fashion"] .btn-add-cart {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 0.9rem;
}

[data-layout="layout-fashion"] .btn-add-cart:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

[data-layout="layout-fashion"] .btn-add-cart:disabled {
  background: #cbd5e1;
  cursor: not-allowed;
  transform: none;
}

/* ════════════════════════════════════════════
   TRUST BANNER — Minimal
   ════════════════════════════════════════════ */

[data-layout="layout-fashion"] .trust-banner {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0 !important;
}

[data-layout="layout-fashion"] .trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
}

[data-layout="layout-fashion"] .trust-icon {
  width: 44px;
  height: 44px;
  background: transparent;
  color: var(--primary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0;
}

[data-layout="layout-fashion"] .trust-item h6 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

[data-layout="layout-fashion"] .trust-item small {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════
   FOOTER — Elegant, newsletter-focused
   ════════════════════════════════════════════ */

[data-layout="layout-fashion"] .site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 0;
  margin-top: 4rem;
}

[data-layout="layout-fashion"] .footer-top {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

[data-layout="layout-fashion"] .footer-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

[data-layout="layout-fashion"] .footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
  max-width: 360px;
  line-height: 1.7;
}

[data-layout="layout-fashion"] .footer-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

[data-layout="layout-fashion"] .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

[data-layout="layout-fashion"] .footer-contact-icon {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.06);
  color: var(--accent);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

/* Newsletter section */
[data-layout="layout-fashion"] .footer-newsletter {
  display: block;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-align: center;
}

[data-layout="layout-fashion"] .footer-newsletter-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

[data-layout="layout-fashion"] .footer-newsletter-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.5rem;
}

[data-layout="layout-fashion"] .footer-newsletter-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  gap: 0.5rem;
}

[data-layout="layout-fashion"] .footer-newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}

[data-layout="layout-fashion"] .footer-newsletter-form input::placeholder {
  color: rgba(255,255,255,.35);
}

[data-layout="layout-fashion"] .footer-newsletter-form input:focus {
  border-color: var(--primary);
}

[data-layout="layout-fashion"] .footer-newsletter-form button {
  padding: 0.85rem 2rem;
  background: var(--primary);
  color: #fff;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background var(--transition);
}

[data-layout="layout-fashion"] .footer-newsletter-form button:hover {
  background: var(--primary-dark);
}

/* Seals */
[data-layout="layout-fashion"] .footer-seals {
  padding: 1.5rem 0;
  background: transparent;
  border-top: none;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

[data-layout="layout-fashion"] .seals-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

[data-layout="layout-fashion"] .seal-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

[data-layout="layout-fashion"] .seal-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.06);
  color: var(--accent);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

[data-layout="layout-fashion"] .seal-text small {
  font-size: 0.75rem;
}

[data-layout="layout-fashion"] .seal-text .fw-bold {
  color: rgba(255,255,255,.85);
  font-size: 0.75rem;
}

/* Links Section */
[data-layout="layout-fashion"] .footer-links-section {
  padding: 2.5rem 0;
}

[data-layout="layout-fashion"] .footer-heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 1rem;
}

[data-layout="layout-fashion"] .footer-link-list li {
  margin-bottom: 0.45rem;
}

[data-layout="layout-fashion"] .footer-link-list a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition), padding-left var(--transition);
}

[data-layout="layout-fashion"] .footer-link-list a:hover {
  color: #fff;
  padding-left: 0.25rem;
}

/* Social */
[data-layout="layout-fashion"] .social-icons-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

[data-layout="layout-fashion"] .social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: all var(--transition);
}

[data-layout="layout-fashion"] .social-icon-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* Payment icons */
[data-layout="layout-fashion"] .payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

[data-layout="layout-fashion"] .payment-icon {
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}

[data-layout="layout-fashion"] .payment-icon:hover {
  color: #fff;
}

[data-layout="layout-fashion"] .pix-icon {
  background: var(--success);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 2px;
  letter-spacing: 0.05em;
}

/* Bottom Bar */
[data-layout="layout-fashion"] .footer-bottom {
  background: rgba(0,0,0,.25);
  padding: 1rem 0;
  font-size: 0.8rem;
}

[data-layout="layout-fashion"] .footer-copy {
  color: rgba(255,255,255,.4);
  font-size: 0.78rem;
}

/* Override text-muted inside dark footer for readability */
[data-layout="layout-fashion"] .site-footer .text-muted {
  color: rgba(255,255,255,.55) !important;
}

[data-layout="layout-fashion"] .footer-copy a {
  color: rgba(255,255,255,.4);
}

[data-layout="layout-fashion"] .footer-copy a:hover {
  color: #fff;
}

/* ════════════════════════════════════════════
   CAROUSEL — Cleaner navigation
   ════════════════════════════════════════════ */

[data-layout="layout-fashion"] .carousel-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 0;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

[data-layout="layout-fashion"] .carousel-nav-btn:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

/* ════════════════════════════════════════════
   MOBILE MENU — Full-screen overlay
   ════════════════════════════════════════════ */

[data-layout="layout-fashion"] .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

[data-layout="layout-fashion"] .mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  border-radius: 1px;
  transition: var(--transition);
}

/* Full-screen overlay mobile menu */
[data-layout="layout-fashion"] .mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255,255,255,.98);
  z-index: 2000;
  transform: translateY(-105%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  box-shadow: none;
  overflow-y: auto;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

[data-layout="layout-fashion"] .mobile-menu.active {
  transform: translateY(0);
}

[data-layout="layout-fashion"] .mobile-menu-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: transparent;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
}

[data-layout="layout-fashion"] .mobile-logo {
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
}

[data-layout="layout-fashion"] .mobile-close {
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  font-size: 1.3rem;
  padding: 0.25rem;
}

[data-layout="layout-fashion"] .mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 320px;
}

[data-layout="layout-fashion"] .mobile-nav-link {
  display: block;
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  border-bottom: none;
  transition: color var(--transition), opacity var(--transition);
}

[data-layout="layout-fashion"] .mobile-nav-link:hover {
  background: transparent;
  color: var(--primary);
  opacity: .7;
}

[data-layout="layout-fashion"] .mobile-menu .btn {
  max-width: 320px;
  margin: 0.5rem auto;
}

/* Hide the old-style mobile menu on desktop for fashion layout */
@media (min-width: 768px) {
  [data-layout="layout-fashion"] .mobile-menu {
    display: none !important;
  }
}

/* ════════════════════════════════════════════
   PAGE HERO — Editorial
   ════════════════════════════════════════════ */

[data-layout="layout-fashion"] .page-hero {
  height: 55vh;
  display: flex;
  align-items: center;
  text-align: center;
}

[data-layout="layout-fashion"] .page-hero .badge {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 1rem;
  border-radius: 0;
  background: rgba(255,255,255,.15);
}

/* ════════════════════════════════════════════
   AUTH PAGES — Refined
   ════════════════════════════════════════════ */

[data-layout="layout-fashion"] .auth-card {
  border-radius: 0;
  box-shadow: var(--shadow-lg);
  padding: 2.5rem 2rem;
  border: none;
}

/* ════════════════════════════════════════════
   BUTTONS — Fashion
   ════════════════════════════════════════════ */

[data-layout="layout-fashion"] .btn-primary {
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.7rem 1.5rem;
  transition: all var(--transition);
}

[data-layout="layout-fashion"] .btn-outline-primary {
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ════════════════════════════════════════════
   CARDS
   ════════════════════════════════════════════ */

[data-layout="layout-fashion"] .card {
  border-radius: 0;
  box-shadow: var(--shadow-sm);
}

/* ════════════════════════════════════════════
   PRODUCT LIST PAGE
   ════════════════════════════════════════════ */

[data-layout="layout-fashion"] .filter-sidebar {
  border-radius: 0;
}

[data-layout="layout-fashion"] .product-grid-card {
  border-radius: 0;
  border: none;
  background: transparent;
  transition: transform var(--transition);
}

[data-layout="layout-fashion"] .product-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

[data-layout="layout-fashion"] .product-grid-card .product-placeholder {
  height: 260px;
  background: var(--bg);
}

[data-layout="layout-fashion"] .product-grid-card .card-body {
  padding: 1rem 0.25rem;
  text-align: center;
}

[data-layout="layout-fashion"] .results-bar {
  border-radius: 0;
}

/* ════════════════════════════════════════════
   PRODUCT DETAIL
   ════════════════════════════════════════════ */

[data-layout="layout-fashion"] .product-detail-page {
  border-radius: 0;
}

[data-layout="layout-fashion"] .product-main-img {
  border-radius: 0;
  height: 600px;
}

[data-layout="layout-fashion"] .buy-box {
  border-radius: 0;
  padding: 1.75rem;
}

/* ════════════════════════════════════════════
   CART & CHECKOUT
   ════════════════════════════════════════════ */

[data-layout="layout-fashion"] .cart-page {
  border-radius: 0;
}

[data-layout="layout-fashion"] .order-summary {
  border-radius: 0;
}

[data-layout="layout-fashion"] .checkout-page {
  border-radius: 0;
}

/* ════════════════════════════════════════════
   WHATSAPP FLOAT
   ════════════════════════════════════════════ */

[data-layout="layout-fashion"] .whatsapp-float {
  width: 52px;
  height: 52px;
  border-radius: 0;
}

/* ════════════════════════════════════════════
   RESPONSIVE — Fashion layout
   Comprehensive breakpoints: XS, SM, MD, LG+
   Desktop styles unchanged — only mobile/tablet adjustments
   ════════════════════════════════════════════ */

/* ── Extra Small — ≤575.98px (phones portrait) ── */
@media (max-width: 575.98px) {
  [data-layout="layout-fashion"] .header-inner {
    grid-template-columns: auto 1fr auto;
    padding: 0.65rem 0;
  }

  [data-layout="layout-fashion"] .header-left {
    display: none;
  }

  [data-layout="layout-fashion"] .header-actions .search-toggle-btn {
    display: flex !important;
  }

  [data-layout="layout-fashion"] .mobile-menu-toggle {
    display: flex;
  }

  [data-layout="layout-fashion"] .main-nav {
    display: none !important;
  }

  [data-layout="layout-fashion"] .logo-text {
    font-size: 1.05rem;
  }

  [data-layout="layout-fashion"] .logo-icon {
    width: 28px;
    height: 28px;
    font-size: .85rem;
  }

  /* Hero */
  [data-layout="layout-fashion"] .hero {
    height: 50vh;
  }

  [data-layout="layout-fashion"] .hero-content {
    padding: 1.5rem 1rem;
  }

  [data-layout="layout-fashion"] .hero-title {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  [data-layout="layout-fashion"] .hero-subtitle {
    font-size: .85rem;
    max-width: 320px;
  }

  [data-layout="layout-fashion"] .hero-btns {
    flex-direction: column;
    gap: .5rem;
  }

  [data-layout="layout-fashion"] .btn-hero-primary,
  [data-layout="layout-fashion"] .btn-hero-outline {
    width: 100%;
    justify-content: center;
    padding: .75rem 1.5rem;
    font-size: .78rem;
  }

  [data-layout="layout-fashion"] .hero-badge {
    font-size: .6rem;
    padding: .3rem .8rem;
  }

  /* Page hero */
  [data-layout="layout-fashion"] .page-hero {
    height: 30vh;
  }

  [data-layout="layout-fashion"] .page-hero .hero-content {
    padding: 1.25rem 1rem;
  }

  [data-layout="layout-fashion"] .page-hero .hero-title {
    font-size: 1.4rem;
  }

  /* Product grid */
  [data-layout="layout-fashion"] .product-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  [data-layout="layout-fashion"] .product-card-img {
    padding-top: 110%;
  }

  [data-layout="layout-fashion"] .product-card-title {
    font-size: .88rem;
  }

  [data-layout="layout-fashion"] .product-price {
    font-size: .85rem;
  }

  /* Category grid */
  [data-layout="layout-fashion"] .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .6rem;
  }

  [data-layout="layout-fashion"] .category-link-name {
    font-size: .85rem;
  }

  /* Section titles */
  [data-layout="layout-fashion"] .section-title {
    font-size: 1.4rem;
  }

  [data-layout="layout-fashion"] .section-subtitle {
    font-size: .85rem;
  }

  /* Section spacing */
  [data-layout="layout-fashion"] .section-padding {
    padding: 2.5rem 0;
  }

  /* Product detail */
  [data-layout="layout-fashion"] .product-main-img {
    height: 320px;
  }

  /* Cart */
  [data-layout="layout-fashion"] .cart-thumb {
    width: 50px;
    height: 50px;
  }

  /* Checkout */
  [data-layout="layout-fashion"] .order-sidebar {
    position: static;
  }

  /* Trust banner */
  [data-layout="layout-fashion"] .trust-item h6 {
    font-size: .68rem;
  }

  /* Footer */
  [data-layout="layout-fashion"] .footer-newsletter-form {
    flex-direction: column;
  }

  [data-layout="layout-fashion"] .footer-newsletter-form button {
    width: 100%;
  }

  [data-layout="layout-fashion"] .footer-newsletter-title {
    font-size: 1.1rem;
  }

  [data-layout="layout-fashion"] .footer-newsletter-text {
    font-size: .8rem;
  }

  [data-layout="layout-fashion"] .seals-strip {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .6rem;
  }

  [data-layout="layout-fashion"] .footer-contact-list {
    flex-direction: column;
    gap: .5rem;
  }

  [data-layout="layout-fashion"] .footer-top {
    padding: 2rem 0 1.5rem;
  }

  [data-layout="layout-fashion"] .footer-links-section {
    padding: 1.5rem 0;
  }

  [data-layout="layout-fashion"] .footer-bottom {
    text-align: center;
  }

  [data-layout="layout-fashion"] .footer-bottom .d-flex {
    flex-direction: column;
    gap: .25rem;
  }

  /* Search overlay */
  [data-layout="layout-fashion"] .search-overlay-input {
    font-size: 1.1rem;
  }

  [data-layout="layout-fashion"] .search-overlay-inner {
    padding: 0 1rem;
  }

  /* WhatsApp */
  [data-layout="layout-fashion"] .whatsapp-float {
    width: 40px;
    height: 40px;
    bottom: .75rem;
    right: .75rem;
    font-size: 1.3rem;
  }

  /* Auth */
  [data-layout="layout-fashion"] .auth-card {
    padding: 1.5rem 1rem;
    border-radius: .75rem;
    max-width: 100%;
  }

  /* Mobile menu */
  [data-layout="layout-fashion"] .mobile-nav-link {
    font-size: 1.1rem;
    padding: .75rem 1rem;
  }

  /* Filter sidebar */
  [data-layout="layout-fashion"] .filter-sidebar {
    position: static;
    margin-bottom: 1rem;
  }

  /* Customer sidebar */
  [data-layout="layout-fashion"] .customer-sidebar-wrap {
    position: static;
  }

  /* Product list */
  [data-layout="layout-fashion"] .results-bar {
    flex-direction: column;
    gap: .5rem;
    padding: .6rem .75rem;
  }

  /* Buttons */
  [data-layout="layout-fashion"] .btn-primary,
  [data-layout="layout-fashion"] .btn-outline-primary {
    font-size: .76rem;
    padding: .55rem 1.1rem;
  }
}

/* ── Small — 576px-767.98px (phones landscape) ── */
@media (min-width: 576px) and (max-width: 767.98px) {
  [data-layout="layout-fashion"] .hero {
    height: 55vh;
  }

  [data-layout="layout-fashion"] .hero-title {
    font-size: 2.2rem;
  }

  [data-layout="layout-fashion"] .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  [data-layout="layout-fashion"] .product-card-img {
    padding-top: 115%;
  }
}

/* ── Small & below — ≤767.98px (shared mobile rules) ── */
@media (max-width: 767.98px) {
  [data-layout="layout-fashion"] .header-inner {
    grid-template-columns: auto 1fr auto;
    padding: 0.85rem 0;
  }

  [data-layout="layout-fashion"] .header-left {
    display: none;
  }

  [data-layout="layout-fashion"] .header-actions .search-toggle-btn {
    display: flex !important;
  }

  [data-layout="layout-fashion"] .mobile-menu-toggle {
    display: flex;
  }

  [data-layout="layout-fashion"] .main-nav {
    display: none !important;
  }

  [data-layout="layout-fashion"] .logo-text {
    font-size: 1.15rem;
  }

  /* Shared: category always 2 columns */
  [data-layout="layout-fashion"] .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
  }

  /* Shared: footer */
  [data-layout="layout-fashion"] .footer-newsletter-form {
    flex-direction: column;
  }

  [data-layout="layout-fashion"] .seals-strip {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  [data-layout="layout-fashion"] .footer-contact-list {
    flex-direction: column;
  }

  /* Shared: search overlay */
  [data-layout="layout-fashion"] .search-overlay-input {
    font-size: 1.3rem;
  }

  /* Shared: customer sidebar static */
  [data-layout="layout-fashion"] .customer-sidebar-wrap {
    position: static;
  }

  /* Shared: filter sidebar */
  [data-layout="layout-fashion"] .filter-sidebar {
    position: static;
    margin-bottom: 1rem;
  }
}

/* ── Tablet — 768px-1023.98px ── */
@media (min-width: 768px) and (max-width: 1023.98px) {
  [data-layout="layout-fashion"] .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  [data-layout="layout-fashion"] .hero {
    height: 50vh;
  }

  [data-layout="layout-fashion"] .page-hero {
    height: 35vh;
  }

  [data-layout="layout-fashion"] .product-main-img {
    height: 480px;
  }

  [data-layout="layout-fashion"] .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  [data-layout="layout-fashion"] .section-title {
    font-size: 1.7rem;
  }

  [data-layout="layout-fashion"] .nav-list {
    gap: 1.5rem;
  }

  [data-layout="layout-fashion"] .order-sidebar {
    position: static;
  }

  [data-layout="layout-fashion"] .mega-dropdown {
    min-width: 480px;
  }
}

/* ── Desktop & up — ≥768px (hide mobile menu) ── */
@media (min-width: 768px) {
  [data-layout="layout-fashion"] .mobile-menu {
    display: none !important;
  }
}

/* ── Large desktop — ≥1024px (sticky sidebars) ── */
@media (min-width: 1024px) {
  [data-layout="layout-fashion"] .filter-sidebar {
    position: sticky;
    top: 5.5rem;
  }
  [data-layout="layout-fashion"] .customer-sidebar-wrap {
    position: sticky;
    top: 5.5rem;
  }
  [data-layout="layout-fashion"] .order-summary,
  [data-layout="layout-fashion"] .order-sidebar {
    position: sticky;
    top: 5.5rem;
  }
}

/* ════════════════════════════════════════════
   SCROLLBAR — Fashion
   ════════════════════════════════════════════ */

[data-layout="layout-fashion"] ::-webkit-scrollbar {
  width: 6px;
}

[data-layout="layout-fashion"] ::-webkit-scrollbar-track {
  background: var(--bg);
}

[data-layout="layout-fashion"] ::-webkit-scrollbar-thumb {
  background: var(--dark);
  border-radius: 0;
}

[data-layout="layout-fashion"] ::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ════════════════════════════════════════════
   MISC — Section spacing
   ════════════════════════════════════════════ */

[data-layout="layout-fashion"] .section-padding {
  padding: 5rem 0;
}

[data-layout="layout-fashion"] .border-top-purple {
  border-top: 2px solid var(--primary);
}

[data-layout="layout-fashion"] .customer-sidebar-wrap {
  border-radius: 0;
}

[data-layout="layout-fashion"] .error-page {
  border-radius: 0;
}
