/* ==========================================================================
   CERO BOLITAS - Modern, Ultra-light, High-Performance Design System
   SEO & GEO Optimized | Responsive | Accessible
   ========================================================================== */

:root {
  --primary: #9d5f9d;
  --primary-hover: #874e87;
  --primary-dark: #6f3e6f;
  --primary-light: #f8f1f8;
  --primary-glow: rgba(157, 95, 157, 0.18);
  --accent: #d49a5b;
  --accent-light: #fff9f2;
  
  --dark: #281f28;
  --dark-rgb: 40, 31, 40;
  --text: #342c34;
  --text-muted: #6f6570;
  --text-light: #8e8490;
  
  --bg-page: #faf7fa;
  --bg-card: #ffffff;
  --bg-alt: #f4edf5;
  --border: #ebddeb;
  --border-light: #f2eaf3;
  
  --shadow-sm: 0 2px 8px rgba(40, 31, 40, 0.05);
  --shadow-md: 0 8px 24px rgba(40, 31, 40, 0.08);
  --shadow-lg: 0 16px 36px rgba(40, 31, 40, 0.12);
  --shadow-hover: 0 20px 40px rgba(157, 95, 157, 0.16);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input, select, textarea {
  font: inherit;
}

/* ==========================================================================
   TOP NOTIFICATION BAR
   ========================================================================== */
.topbar {
  background: var(--dark);
  color: #f7eff7;
  font-size: 0.82rem;
  padding: 0.45rem 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.topbar-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.85;
}

.topbar-link {
  color: #eed6ee;
}
.topbar-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ==========================================================================
   NAVIGATION & HEADER
   ========================================================================== */
.site-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.nav-desktop-left,
.nav-desktop-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-desktop-right {
  justify-content: flex-end;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  position: relative;
  padding: 0.4rem 0.2rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.logo-brand {
  text-align: center;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--primary);
  line-height: 1.1;
  text-shadow: 0 1px 2px rgba(157, 95, 157, 0.1);
}

.logo-tagline {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
}

.cart-toggle-btn {
  background: var(--primary-light);
  border: 1px solid var(--border);
  color: var(--primary-dark);
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}

.cart-toggle-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.cart-badge {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-full);
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0 5px;
  transition: var(--transition);
}

.cart-toggle-btn:hover .cart-badge {
  background: #fff;
  color: var(--primary);
}

.menu-burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--dark);
}

/* Mobile navigation drawer */
.mobile-nav {
  display: none;
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  display: block;
  padding: 0.4rem 0;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.5rem 1.5rem;
  background: radial-gradient(circle at center, rgba(255,255,255,0.7) 0%, rgba(244,237,245,0.92) 100%),
              url('../img/hero-bg.png') center/cover no-repeat;
  text-align: center;
  overflow: hidden;
}

.hero-overlay-decor {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(157,95,157,0.12) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 860px;
  z-index: 2;
  animation: fadeIn 0.8s ease-out;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  color: var(--primary-dark);
  padding: 0.38rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: var(--primary);
  font-style: italic;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 2.2rem;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(157, 95, 157, 0.35);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(157, 95, 157, 0.42);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark);
  border-color: var(--border);
}

.btn-outline:hover {
  background: #fff;
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ==========================================================================
   CATEGORIES SECTION
   ========================================================================== */
.section {
  padding: 4.5rem 1.5rem;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-eyebrow {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.6rem;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
  display: flex;
  align-items: flex-end;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.category-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.category-card:hover .category-img {
  transform: scale(1.06);
}

.category-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2.2rem 1.8rem 1.8rem;
  background: linear-gradient(to top, rgba(36,26,36,0.95) 0%, rgba(36,26,36,0.7) 60%, transparent 100%);
  color: #fff;
}

.category-subtitle {
  font-size: 0.88rem;
  color: #ecd2ec;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.category-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.25;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.category-card:hover .category-link {
  background: var(--primary);
  border-color: var(--primary);
}

/* ==========================================================================
   BRENDA STORY SECTION
   ========================================================================== */
.brenda-section {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.brenda-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3.5rem;
}

.brenda-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.brenda-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.brenda-text {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.instagram-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #ffffff;
  color: var(--primary-dark);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: var(--shadow-sm);
}

.instagram-tag:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.brenda-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #ffffff;
}

.brenda-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.brenda-img-tag {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: rgba(40, 31, 40, 0.88);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   NUEVAS FUNDAS NORDICAS BANNER
   ========================================================================== */
.feature-banner {
  background: #ffffff;
}

.feature-banner-card {
  background: linear-gradient(135deg, #fff7ff 0%, #faedf9 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  box-shadow: var(--shadow-md);
}

.feature-banner-img {
  max-height: 380px;
  width: 100%;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 15px 25px rgba(157, 95, 157, 0.18));
  transition: transform 0.4s ease;
}

.feature-banner-card:hover .feature-banner-img {
  transform: scale(1.03);
}

/* ==========================================================================
   PRODUCT CATALOG & FEATURED PRODUCTS
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border);
}

.product-img-wrapper {
  position: relative;
  background: #fdfafc;
  padding: 1.5rem;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img {
  transform: scale(1.07);
}

.product-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
}

.product-details {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.product-price {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.product-price-range {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
}

.product-actions {
  margin-top: auto;
}

.btn-add-cart {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-add-cart:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 15px rgba(157, 95, 157, 0.35);
}

/* ==========================================================================
   TRUST / VALUE PROPOSITIONS BAR
   ========================================================================== */
.trust-bar {
  background: var(--dark);
  color: #ffffff;
  padding: 3.5rem 1.5rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.trust-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}

.trust-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.trust-subtitle {
  font-size: 0.88rem;
  color: #d8c3d8;
}

/* ==========================================================================
   FAQ SECTION (SEO & AI OPTIMIZED)
   ========================================================================== */
.faq-section {
  background: #ffffff;
  position: relative;
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--bg-card);
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  gap: 1rem;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon-chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-item.active .faq-icon-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.4rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-cta-banner {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, rgba(40,31,40,0.92), rgba(65,48,65,0.96)),
              url('../img/faq-bg.jpg') center/cover no-repeat;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  color: #ffffff;
}

.faq-cta-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.faq-cta-desc {
  font-size: 1.05rem;
  color: #eed6ee;
  margin-bottom: 1.8rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--dark);
  color: #f7eff7;
  padding: 4.5rem 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.footer-brand-desc {
  font-size: 0.92rem;
  color: #cbb8cb;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-link {
  font-size: 0.92rem;
  color: #d8c3d8;
  transition: var(--transition);
}

.footer-link:hover {
  color: #ffffff;
  padding-left: 4px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: #ad9bad;
}

.footer-eu-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-eu-badge img {
  height: 38px;
  width: auto;
  opacity: 0.85;
}

/* ==========================================================================
   CART DRAWER & MODAL
   ========================================================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(40, 31, 40, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -460px;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: #ffffff;
  z-index: 999;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open {
  right: 0;
}

.cart-drawer-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-alt);
}

.cart-drawer-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  padding: 0.3rem;
}

.cart-close-btn:hover {
  color: var(--dark);
}

.cart-drawer-body {
  padding: 1.5rem;
  flex-grow: 1;
  overflow-y: auto;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.cart-empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary);
  opacity: 0.5;
}

.cart-item {
  display: grid;
  grid-template-columns: 65px 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
  align-items: center;
}

.cart-item-img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  background: #faf6fa;
  border-radius: var(--radius-sm);
  padding: 0.25rem;
}

.cart-item-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.cart-item-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--bg-alt);
  border-radius: var(--radius-full);
  padding: 0.2rem 0.5rem;
}

.cart-qty-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.95rem;
  color: var(--dark);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #cc4444;
  cursor: pointer;
  font-size: 0.8rem;
  padding: 0.25rem;
}

.cart-drawer-footer {
  padding: 1.5rem;
  background: var(--bg-page);
  border-top: 1px solid var(--border);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.cart-summary-total {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border);
}

.btn-checkout {
  width: 100%;
  padding: 0.95rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: var(--transition);
}

.btn-checkout:hover {
  background: var(--primary-hover);
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-notice {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--dark);
  color: #ffffff;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.toast-icon {
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .header-container {
    grid-template-columns: auto 1fr auto;
  }
  .nav-desktop-left,
  .nav-desktop-right {
    display: none;
  }
  .menu-burger-btn {
    display: block;
  }
  .logo-brand {
    text-align: left;
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brenda-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .feature-banner-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .topbar-container {
    flex-direction: column;
    text-align: center;
    gap: 0.3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-section {
    min-height: auto;
    padding: 3.5rem 1rem;
  }
  .cart-drawer {
    max-width: 100%;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Brand Logo styling */
.site-logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo-brand:hover .site-logo-img {
  transform: scale(1.02);
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.footer-emblem-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
}
