/*
Theme Name:  Haizum Ethnic
Theme URI:   https://haizum.agency
Author:      Haizum Agency
Author URI:  https://haizum.agency
Description: Indian ethnic & bridal boutique theme with WooCommerce. Deep rose, ivory, gold. Scrolling trust bar, testimonials. Built by Haizum Agency.
Version:     1.0
License:     Private
Text Domain: haizum-ethnic
*/

/* ============================================================
   GOOGLE FONTS
   Cormorant Garamond — high-fashion Indian bridal serif
   Nunito — soft, round, readable body text
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=Nunito:wght@300;400;600;700&display=swap');

/* ============================================================
   GLOBAL VARIABLES
   ============================================================ */

:root {
  /* Main Brand Color */
  --primary:      #d5c0e7;

  /* Buttons & Highlights */
  --accent:       #b894d6;
  --accent-hover: #a47bc8;

  /* Backgrounds */
  --bg:           #faf7fd;
  --surface:      #ffffff;
  --surface2:     #f4edf9;

  /* Text */
  --text:         #231237;
  --text2:        #4b3a60;
  --text3:        #8d7aa5;
}

  --success:      #16a34a;
  --error:        #dc2626;
  --warning:      #d97706;

  --radius:       12px;
  --radius-sm:    8px;
  --radius-pill:  999px;
  --max-width:    1100px;
  --header-h:     68px;

  --font:         'Nunito', 'Segoe UI', sans-serif;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
}

/* ============================================================
   RESET + BASE
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
input, textarea, select, button { font-family: var(--font); font-size: inherit; }

/* ============================================================
   UTILITY
   ============================================================ */

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-block;
  padding: 11px 28px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  text-align: center;
  letter-spacing: 0.3px;
}

.btn-primary { background: var(--primary);color: #231237; border-color: var(--primary); }
.btn-primary:hover { background: #4e1530; border-color: #4e1530; }

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

.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

.section-heading {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
  line-height: 1.15;
}

.section-sub {
  font-size: 14px;
  color: var(--text2);
  margin-bottom: 32px;
  font-weight: 300;
}

/* ============================================================
   ANNOUNCEMENT BAR — thin strip above header
   ============================================================ */

.announcement-bar {
  background: var(--primary);
  color: #231237;
}
  text-align: center;
  padding: 7px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.announcement-bar a { color: var(--accent); }

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo { flex-shrink: 0; display: flex; align-items: center; }
.site-logo img { height: 42px; width: auto; }

.site-logo-text {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: #231237;
  letter-spacing: 0.5px;
  font-style: italic;
}

.site-nav { flex: 1; }

.nav-list { display: flex; align-items: center; gap: 4px; }

.nav-list li a {
  display: block;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text2);
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}

.nav-list li a:hover,
.nav-list li.current-menu-item a {
  color: var(--primary);
  background: var(--surface2);
}

.header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.cart-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  background: var(--surface2);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  transition: all 0.2s;
  border: 1px solid var(--border);
}

.cart-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.cart-icon-svg { width: 15px; height: 15px; }

.cart-count {
  background: var(--accent);
  color: #fff;
  width: 18px; height: 18px;
  border-radius: 50%;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}

.menu-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.2s; }

.mobile-nav {
  display: none;
  position: fixed; top: var(--header-h); left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px; z-index: 99;
  box-shadow: 0 8px 32px rgba(107,29,62,0.1);
}

.mobile-nav.open { display: block; }
.mobile-nav .nav-list { flex-direction: column; align-items: flex-start; gap: 2px; }
.mobile-nav .nav-list li a { font-size: 14px; padding: 11px 16px; width: 100%; }

@media (max-width: 768px) { .site-nav { display: none; } .menu-toggle { display: flex; } }

/* ============================================================
   MARQUEE TRUST BAR — scrolling strip, key feature of aham.store style
   ============================================================ */

.trust-bar {
  background: var(--surface2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.trust-bar-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
  gap: 0;
}

.trust-bar-track:hover { animation-play-state: paused; }

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

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text2);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.trust-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ============================================================
   HERO BANNER
   ============================================================ */

.hero-banner {
  position: relative;
  height: 520px;
  background: var(--surface2);
  overflow: hidden;
}

@media (max-width: 600px) { .hero-banner { height: 400px; } }

.banner-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transition: transform 6s ease;
}

.hero-banner:hover .banner-bg { transform: scale(1.02); }

/* Deep rose gradient — rich, dramatic left side */
.banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(107,29,62,0.78) 0%,
    rgba(107,29,62,0.45) 45%,
    rgba(107,29,62,0.08) 100%
  );
}

.banner-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 600px) { .banner-content { padding: 0 24px; } }

.banner-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  width: fit-content;
}

.banner-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5.5vw, 58px);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  max-width: 500px;
  font-style: italic;
}

.banner-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  max-width: 380px;
  font-weight: 300;
  line-height: 1.7;
}

.banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-banner {
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
  border: 2px solid transparent;
  display: inline-block;
}

.btn-banner-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-banner-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

.btn-banner-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.65); }
.btn-banner-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* ============================================================
   FEATURED PRODUCTS
   ============================================================ */

.featured-section { padding: 64px 0; }

.section-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap; gap: 12px;
}

.view-all-link {
  font-size: 13px; font-weight: 700;
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
  transition: opacity 0.15s;
}

.view-all-link:hover { opacity: 0.65; }

/* ============================================================
   PRODUCT GRID — 2 column mobile first
   ============================================================ */

.product-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }

@media (min-width: 768px) { .product-grid { grid-template-columns: repeat(3,1fr); gap: 20px; } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4,1fr); } }

/* ============================================================
   PRODUCT CARD — rose-gold hover border
   ============================================================ */

.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: all 0.25s ease;
  display: block; cursor: pointer;
}

.product-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 28px rgba(201,153,58,0.15);
  transform: translateY(-3px);
}

.product-img-wrap {
  position: relative; padding-top: 125%;
  overflow: hidden; background: var(--surface2);
}

.product-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-img-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--text3); font-size: 12px;
}

.product-badge {
  position: absolute; top: 10px; left: 10px;
  padding: 3px 10px; border-radius: var(--radius-pill);
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}

.badge-new { background: var(--primary); color: #fff; }
.badge-sale { background: #c0392b; color: #fff; }

.product-info { padding: 14px 16px 16px; }

.product-name {
  font-size: 13px; font-weight: 600; color: var(--text);
  margin-bottom: 6px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.product-price { font-size: 14px; font-weight: 700; color: var(--primary); }
.product-price ins { text-decoration: none; color: var(--primary); }
.product-price del { font-size: 12px; font-weight: 400; color: var(--text3); margin-right: 4px; }

/* ============================================================
   TESTIMONIALS — key section (like aham.store)
   ============================================================ */

.testimonials-section {
  padding: 64px 0;
  background: var(--primary);
}

.testimonials-section .section-heading { color: #fff; }
.testimonials-section .section-sub { color: rgba(255,255,255,0.65); margin-bottom: 40px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(3,1fr); } }

.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 24px;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
  font-style: italic;
  font-family: var(--font-heading);
}

.testimonial-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-location {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

/* ============================================================
   COLLECTIONS STRIP (Homepage)
   ============================================================ */

.collections-strip {
  padding: 52px 0;
  background: var(--surface2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.collections-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 14px;
}

@media (min-width: 640px) { .collections-grid { grid-template-columns: repeat(4,1fr); } }

.collection-card {
  position: relative;
  border-radius: var(--radius); overflow: hidden;
  padding-top: 120%; background: var(--border);
  display: block; cursor: pointer;
  border: 1.5px solid var(--border);
  transition: all 0.2s;
}

.collection-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(201,153,58,0.2);
}

.collection-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.4s;
}

.collection-card:hover img { transform: scale(1.04); }

.collection-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(107,29,62,0.7) 0%, transparent 55%);
}

.collection-card-label {
  position: absolute; bottom: 14px; left: 14px;
  color: #fff; font-size: 13px; font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.3px; font-style: italic;
}

/* ============================================================
   SHOP PAGE
   ============================================================ */

.shop-page { padding: 40px 0 64px; }

.shop-layout { display: grid; grid-template-columns: 1fr; gap: 32px; }

@media (min-width: 900px) { .shop-layout { grid-template-columns: 220px 1fr; } }

.shop-sidebar { display: none; }
@media (min-width: 900px) { .shop-sidebar { display: block; } }

.filter-group { margin-bottom: 28px; }

.filter-title {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--text3); margin-bottom: 14px;
}

.filter-list li { margin-bottom: 6px; }

.filter-list li a {
  font-size: 13px; color: var(--text2); transition: color 0.15s;
  display: flex; align-items: center; justify-content: space-between; padding: 4px 0;
}

.filter-list li a:hover,
.filter-list li.current-cat a { color: var(--primary); font-weight: 700; }

.filter-count {
  font-size: 11px; color: var(--text3);
  background: var(--surface2);
  padding: 1px 7px; border-radius: var(--radius-pill);
  border: 1px solid var(--border);
}

.shop-toolbar {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 24px;
  flex-wrap: wrap; gap: 10px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}

.shop-result-count { font-size: 12px; color: var(--text3); }

.shop-ordering select {
  padding: 7px 12px; border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 13px;
  color: var(--text); background: var(--surface);
  cursor: pointer; outline: none;
}

.woocommerce-pagination { margin-top: 40px; text-align: center; }

.woocommerce-pagination ul { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--radius); border: 1.5px solid var(--border);
  font-size: 13px; font-weight: 700; color: var(--text2);
  background: var(--surface); transition: all 0.15s;
}

.woocommerce-pagination ul li a:hover {
  background: var(--primary); color: #fff; border-color: var(--primary);
}

.woocommerce-pagination ul li span.current {
  background: var(--primary); color: #fff; border-color: var(--primary);
}

/* ============================================================
   SINGLE PRODUCT PAGE
   ============================================================ */

.single-product-page { padding: 40px 0 64px; }

.product-layout { display: grid; grid-template-columns: 1fr; gap: 32px; }

@media (min-width: 768px) { .product-layout { grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; } }

.product-gallery { position: relative; }

.product-main-img {
  border-radius: var(--radius); overflow: hidden;
  background: var(--surface2); padding-top: 120%; position: relative;
  border: 1.5px solid var(--border);
}

.product-main-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.product-details {}

.product-category-link {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 10px; display: block;
}

.single-product-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 600; line-height: 1.15;
  margin-bottom: 14px; letter-spacing: -0.2px;
}

.product-price-single {
  font-size: 26px; font-weight: 700; color: var(--primary);
  margin-bottom: 16px; font-family: var(--font-heading);
}

.product-price-single del { font-size: 17px; font-weight: 400; color: var(--text3); margin-right: 8px; font-family: var(--font); }
.product-price-single ins { text-decoration: none; }

.product-short-desc {
  font-size: 14px; color: var(--text2); line-height: 1.9;
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border); font-weight: 300;
}

.cart-form { margin-bottom: 14px; }

.qty-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }

.qty-label { font-size: 12px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--text3); }

.quantity .input-text {
  width: 72px; padding: 10px 12px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 15px; font-weight: 700; text-align: center;
  background: var(--surface); color: var(--text); outline: none;
}

.quantity .input-text:focus { border-color: var(--accent); }

.single_add_to_cart_button {
  width: 100%; padding: 15px;
  background: var(--primary); color: #fff;
  border: none; border-radius: var(--radius);
  font-size: 14px; font-weight: 700;
  cursor: pointer; transition: all 0.2s; margin-bottom: 10px;
}

.single_add_to_cart_button:hover { background: #4e1530; }

.whatsapp-order-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; padding: 14px;
  background: var(--accent); color: #fff;
  border-radius: var(--radius);
  font-size: 14px; font-weight: 700;
  transition: all 0.2s;
  border: 2px solid var(--accent);
  margin-bottom: 20px;
}

.whatsapp-order-btn:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.whatsapp-order-btn svg { width: 20px; height: 20px; fill: currentColor; }

.product-meta { font-size: 12px; color: var(--text3); padding-top: 16px; border-top: 1px solid var(--border); }
.product-meta span { margin-right: 16px; }

.product-tabs { margin-top: 52px; }

.tabs-nav { display: flex; border-bottom: 1.5px solid var(--border); margin-bottom: 24px; }

.tab-btn {
  padding: 10px 20px; font-size: 13px; font-weight: 700;
  color: var(--text3); background: none; border: none; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1.5px; transition: all 0.15s;
}

.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-content p { font-size: 14px; color: var(--text2); line-height: 1.9; margin-bottom: 12px; font-weight: 300; }

/* ============================================================
   COLLECTIONS PAGE
   ============================================================ */

.collections-page { padding: 40px 0 64px; }

.collections-full-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }

@media (min-width: 640px) { .collections-full-grid { grid-template-columns: repeat(3,1fr); } }

.collection-full-card {
  border-radius: var(--radius); overflow: hidden; display: block;
  position: relative; padding-top: 100%; background: var(--surface2);
  border: 1.5px solid var(--border); transition: all 0.2s;
}

.collection-full-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,153,58,0.18); }

.collection-full-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.collection-full-card:hover img { transform: scale(1.04); }

.collection-full-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(107,29,62,0.65) 0%, transparent 55%); }

.collection-full-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; z-index: 1; }

.collection-full-name { font-family: var(--font-heading); font-size: 17px; font-weight: 600; color: #fff; margin-bottom: 2px; font-style: italic; }
.collection-full-count { font-size: 12px; color: rgba(255,255,255,0.65); }

/* ============================================================
   CART PAGE
   ============================================================ */

.cart-page { padding: 40px 0 64px; }

.cart-layout { display: grid; grid-template-columns: 1fr; gap: 24px; }

@media (min-width: 768px) { .cart-layout { grid-template-columns: 1fr 320px; align-items: start; } }

.cart-table-wrap { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }

.cart-table { width: 100%; border-collapse: collapse; }

.cart-table th {
  text-align: left; padding: 12px 16px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 1px;
  font-weight: 700; color: var(--text3);
  background: var(--surface2); border-bottom: 1.5px solid var(--border);
}

.cart-table td { padding: 16px; border-bottom: 1px solid var(--border); vertical-align: middle; font-size: 14px; color: var(--text); }
.cart-table tr:last-child td { border-bottom: none; }

.cart-product-cell { display: flex; align-items: center; gap: 14px; }

.cart-product-img { width: 64px; height: 64px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; background: var(--surface2); border: 1px solid var(--border); }
.cart-product-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-product-name { font-size: 13px; font-weight: 700; color: var(--text); }

.cart-remove { color: var(--text3); font-size: 18px; line-height: 1; cursor: pointer; background: none; border: none; transition: color 0.15s; }
.cart-remove:hover { color: var(--error); }

.cart-qty-input { width: 56px; padding: 7px 8px; border: 1.5px solid var(--border); border-radius: var(--radius); text-align: center; font-size: 14px; font-weight: 700; background: var(--surface); color: var(--text); outline: none; }
.cart-qty-input:focus { border-color: var(--accent); }

.cart-totals-box { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 24px; }

.cart-totals-title { font-family: var(--font-heading); font-size: 22px; font-weight: 600; margin-bottom: 20px; }

.totals-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.totals-row:last-of-type { border-bottom: none; font-size: 16px; font-weight: 700; padding-top: 14px; }

.totals-label { color: var(--text2); }
.totals-value { font-weight: 700; color: var(--text); }

.checkout-btn { display: block; width: 100%; padding: 15px; background: var(--primary); color: #fff; border: none; border-radius: var(--radius); font-size: 14px; font-weight: 700; cursor: pointer; text-align: center; transition: all 0.2s; margin-top: 16px; }
.checkout-btn:hover { background: #4e1530; }

.empty-cart-msg { text-align: center; padding: 60px 20px; color: var(--text2); }
.empty-cart-msg p { font-size: 15px; margin-bottom: 20px; }

/* ============================================================
   GENERIC PAGE
   ============================================================ */

.generic-page { padding: 52px 0 68px; }

.page-title { font-family: var(--font-heading); font-size: clamp(26px, 4vw, 40px); font-weight: 600; margin-bottom: 24px; letter-spacing: -0.3px; font-style: italic; }

.page-content { font-size: 15px; color: var(--text2); line-height: 1.9; max-width: 720px; font-weight: 300; }
.page-content h2 { font-family: var(--font-heading); font-size: 24px; font-weight: 600; color: var(--text); margin: 28px 0 12px; }
.page-content p  { margin-bottom: 14px; }
.page-content ul { padding-left: 20px; list-style: disc; margin-bottom: 14px; }
.page-content li { margin-bottom: 6px; }

/* ============================================================
   BREADCRUMB
   ============================================================ */

.breadcrumb { padding: 14px 0; font-size: 12px; color: var(--text3); border-bottom: 1px solid var(--border); margin-bottom: 32px; }
.breadcrumb a { color: var(--text3); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 6px; }

/* ============================================================
   FOOTER — deep burgundy (rich contrast to ivory page)
   ============================================================ */

.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.65);
  padding: 56px 0 28px;
  margin-top: 0;
}

.footer-top { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
@media (min-width: 640px) { .footer-top { grid-template-columns: 1.5fr 1fr 1fr; } }

.footer-brand-name { font-family: var(--font-heading); font-size: 26px; font-weight: 600; color: #fff; margin-bottom: 8px; font-style: italic; }
.footer-tagline { font-size: 13px; line-height: 1.7; font-weight: 300; margin-bottom: 16px; }

.footer-col-title { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.4); margin-bottom: 14px; }

.footer-links li { margin-bottom: 8px; }
.footer-links li a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.15s; font-weight: 300; }
.footer-links li a:hover { color: var(--accent); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

.footer-copy { font-size: 11px; color: rgba(255,255,255,0.3); }

.footer-whatsapp-link { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--accent); font-weight: 700; }

/* ============================================================
   FLOATING WHATSAPP — gold style
   ============================================================ */

.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: var(--accent); color: #fff;
  padding: 13px 20px 13px 15px;
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 700;
  box-shadow: 0 6px 24px rgba(201,153,58,0.45);
  transition: all 0.2s; text-decoration: none;
  border: 2px solid var(--accent);
}

.whatsapp-float:hover {
  background: var(--accent-hover); border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201,153,58,0.55);
}

.whatsapp-float svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }

@media (max-width: 400px) { .whatsapp-float .wa-label { display: none; } .whatsapp-float { padding: 13px; } }

/* ============================================================
   WOOCOMMERCE NOTICES
   ============================================================ */

.woocommerce-message { background: #f0fdf4; color: var(--success); border: 1.5px solid #bbf7d0; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.woocommerce-error   { background: #fef2f2; color: var(--error);   border: 1.5px solid #fecaca; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.woocommerce-info    { background: var(--surface2); color: var(--text2); border: 1.5px solid var(--border); padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 600px) { .desktop-only { display: none !important; } .section-heading { font-size: 26px; } .featured-section { padding: 40px 0; } }
@media (min-width: 601px) { .mobile-only { display: none !important; } }
