/*
Theme Name: SriswaStudio
Theme URI: https://sriswastudio.com
Author: SriswaStudio
Author URI: https://sriswastudio.com
Description: A beautiful anti-tarnish jewellery store theme for SriswaStudio. WooCommerce ready with elegant typography and a rich burgundy palette.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sriswastudio
Tags: e-commerce, woocommerce, jewellery, elegant, minimal, fashion
*/

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

:root {
  --primary:        #8B1A4A;
  --primary-dark:   #6d1239;
  --primary-light:  #f5e6ed;
  --secondary:      #c47a9b;
  --foreground:     #1a1a1a;
  --muted:          #6b6b6b;
  --border:         #e8d5de;
  --background:     #fdfaf9;
  --white:          #ffffff;
  --font-serif:     'Cormorant Garamond', Georgia, serif;
  --font-sans:      'DM Sans', system-ui, sans-serif;
  --radius:         0.5rem;
  --shadow-sm:      0 1px 3px rgba(139,26,74,0.08);
  --shadow-md:      0 4px 16px rgba(139,26,74,0.12);
  --shadow-lg:      0 8px 32px rgba(139,26,74,0.16);
  --container:      1200px;
  --header-height:  64px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--foreground);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 0.5rem; }
.section-header p { color: var(--muted); font-size: 1rem; }

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.section-header-row h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); }
.view-all {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  white-space: nowrap;
}
.view-all:hover { text-decoration: underline; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.announcement-bar a { color: #fff; text-decoration: underline; }

/* ============================================================
   HEADER  — 3-column: [nav left] [logo center] [actions right]
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #f0e8ec;
  box-shadow: 0 1px 4px rgba(139,26,74,0.06);
  height: var(--header-height);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-height);
  gap: 1rem;
}

/* Left col */
.header-left {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Center col */
.header-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Right col */
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
}

.site-logo { display: flex; align-items: center; }
.site-logo img { height: 44px; width: auto; object-fit: contain; }
.site-logo:hover { opacity: 0.85; }

/* Desktop nav */
.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: #4b4b4b;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover,
.main-nav a.current-menu-item {
  color: var(--primary);
}

/* Account + Cart buttons */
.header-account-btn,
.header-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #4b4b4b;
  padding: 0.4rem 0.6rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.header-account-btn:hover,
.header-cart-btn:hover { color: var(--primary); background: var(--primary-light); }

.header-signin-label { display: none; }
@media (min-width: 640px) { .header-signin-label { display: inline; } }

.header-cart-label { display: none; }
@media (min-width: 640px) { .header-cart-label { display: inline; } }

/* Account avatar initial */
.account-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Cart count badge */
.header-cart-btn { position: relative; }
.cart-count {
  position: absolute;
  top: 0; right: 2px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile hamburger */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #4b4b4b;
  padding: 0.4rem;
  border-radius: 50%;
  transition: color 0.2s;
}
.mobile-menu-btn:hover { color: var(--primary); }

/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
}
.mobile-nav-overlay.open { display: block; }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 80%; max-width: 320px;
  height: 100%;
  z-index: 999;
  background: var(--white);
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.mobile-nav.open {
  display: flex;
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  padding: 0.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-close:hover { color: var(--primary); background: var(--primary-light); }

.mobile-nav-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem;
  padding: 0.875rem 1rem;
  background: var(--primary-light);
  border-radius: 0.75rem;
}
.mobile-nav-user-name { font-weight: 600; font-size: 0.875rem; color: var(--foreground); margin:0; }
.mobile-nav-user-email { font-size: 0.75rem; color: var(--muted); margin:0; }

.mobile-nav-links {
  flex: 1;
  padding: 1rem;
}
.mobile-nav-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-nav-links ul a,
.mobile-nav-links a {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav-links ul a:hover,
.mobile-nav-links a:hover { background: var(--primary-light); color: var(--primary); }

.mobile-nav-footer {
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a0810;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,8,16,0.82) 0%, rgba(26,8,16,0.52) 50%, transparent 100%);
}
.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 8rem;
  background: linear-gradient(to top, rgba(253,250,249,0.5), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.9);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}
.hero-title em {
  font-style: normal;
  color: #f5b8ce;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 2.25rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-social-proof {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 500;
  flex-wrap: wrap;
}
.hero-social-proof span.divider {
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.2);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(139,26,74,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139,26,74,0.4);
}
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.8125rem; }

/* ============================================================
   TRUST BADGES  — horizontal icon + text per badge
   ============================================================ */
.trust-badges {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.25rem 1.5rem;
  border-right: 1px solid var(--border);
}
.trust-badge-icon {
  width: 42px; height: 42px;
  background: var(--primary-light);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-badge-icon svg { width: 20px; height: 20px; stroke: var(--primary); fill: none; stroke-width: 1.5; }
.trust-badge h3 { font-family: var(--font-sans); font-size: 0.875rem; font-weight: 600; margin-bottom: 0.125rem; color: var(--foreground); }
.trust-badge p { font-size: 0.75rem; color: var(--muted); margin: 0; }

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 1.25rem;
}

/* WooCommerce overrides */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5rem 1.25rem !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  width: 100% !important;
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
  border: 1px solid var(--border);
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.product-card-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--primary-light);
}
.product-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.05); }

.product-card-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  text-transform: uppercase;
}
.product-card-badge.sale { background: #e53e3e; }
.product-card-badge.new { background: #2d7a2d; }

.product-card-body { padding: 1rem 1.1rem 1.25rem; }
.product-card-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--foreground);
}
.product-card-title a { color: inherit; }
.product-card-title a:hover { color: var(--primary); }

.product-card-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.product-card-price .price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}
.product-card-price .original {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: line-through;
}

.product-card-actions {
  margin-top: 0.85rem;
  display: flex;
  gap: 0.5rem;
}
.product-card-actions .btn { flex: 1; padding: 0.6rem 0.75rem; font-size: 0.8rem; border-radius: 0.5rem; }

/* WooCommerce product card styles */
.woocommerce ul.products li.product {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
  border: 1px solid var(--border);
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  width: 100% !important;
}
.woocommerce ul.products li.product:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.woocommerce ul.products li.product a img {
  margin: 0 !important;
  width: 100% !important;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-serif) !important;
  font-size: 1.05rem !important;
  padding: 0.75rem 1rem 0.25rem !important;
  color: var(--foreground) !important;
}
.woocommerce ul.products li.product .price {
  padding: 0 1rem 1rem !important;
  color: var(--primary) !important;
  font-weight: 700 !important;
}
.woocommerce ul.products li.product .button {
  margin: 0 1rem 1rem !important;
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: 0.5rem !important;
  font-size: 0.8rem !important;
  padding: 0.6rem 1rem !important;
  display: block !important;
  text-align: center !important;
  border: none !important;
}
.woocommerce ul.products li.product .button:hover { background: var(--primary-dark) !important; }

/* ============================================================
   CATEGORIES GRID
   ============================================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.category-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--primary-light);
  display: block;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
}
.category-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.category-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, rgba(196,122,155,0.2) 100%);
}
.category-card img {
  position: absolute;
  bottom: 0; right: 0;
  width: 65%; height: 65%;
  object-fit: cover;
  opacity: 0.85;
  mix-blend-mode: multiply;
  transition: transform 0.5s ease;
}
.category-card:hover img { transform: scale(1.07); }
.category-card-body {
  position: absolute;
  inset: 0;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}
.category-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--foreground);
}
.category-card-body span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary);
}
.category-card:hover .category-card-body span { text-decoration: underline; }

/* ============================================================
   INSTAGRAM SECTION
   ============================================================ */
.instagram-section {
  background: var(--primary-light);
  text-align: center;
  padding: 5rem 0;
}
.instagram-section h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.instagram-section p { color: var(--muted); margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #1a0810;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 56px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  background: #25D366;
  color: #fff;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.25s, box-shadow 0.25s;
  border: none;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  color: #fff;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ============================================================
   WOOCOMMERCE — SINGLE PRODUCT
   ============================================================ */
.woocommerce div.product { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding: 3rem 0; }
.woocommerce div.product .woocommerce-product-gallery { border-radius: 1rem; overflow: hidden; }
.woocommerce div.product .entry-summary .product_title {
  font-family: var(--font-serif) !important;
  font-size: 2.2rem !important;
  font-weight: 600 !important;
  margin-bottom: 0.75rem !important;
}
.woocommerce div.product .entry-summary .price {
  color: var(--primary) !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  margin-bottom: 1.5rem !important;
}
.woocommerce .single_add_to_cart_button {
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: 100px !important;
  padding: 0.9rem 2.5rem !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  border: none !important;
}
.woocommerce .single_add_to_cart_button:hover { background: var(--primary-dark) !important; }

/* ============================================================
   WOOCOMMERCE — CART & CHECKOUT
   ============================================================ */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: 0.5rem !important;
  font-weight: 600 !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover { background: var(--primary-dark) !important; }

.woocommerce-notices-wrapper .woocommerce-message {
  border-top-color: var(--primary) !important;
}
.woocommerce-notices-wrapper .woocommerce-message a.button { background: var(--primary) !important; }

/* ============================================================
   SHOP PAGE — TOOLBAR
   ============================================================ */
.woocommerce .woocommerce-result-count { color: var(--muted); font-size: 0.875rem; }
.woocommerce .woocommerce-ordering select {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--foreground);
}
.shop-header { margin: 2rem 0; }
.shop-header h1 { font-size: 2.2rem; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.woocommerce .woocommerce-breadcrumb {
  font-size: 0.8125rem;
  color: var(--muted);
  padding: 1rem 0;
}
.woocommerce .woocommerce-breadcrumb a { color: var(--primary); }

/* ============================================================
   PAGINATION
   ============================================================ */
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  border-color: var(--border) !important;
  color: var(--primary) !important;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--primary) !important;
  color: #fff !important;
}

/* ============================================================
   FORMS
   ============================================================ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--foreground);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139,26,74,0.1);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(3, 1fr) !important; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --header-height: 56px; }
  .main-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
  .trust-badges-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-badge { padding: 1rem; gap: 0.625rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .woocommerce div.product { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
  .hero { min-height: 65vh; }
  .hero-title { font-size: 2.5rem; }
  .header-center .site-logo img { height: 36px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   WHATSAPP FLOAT WRAP & TOOLTIP
   ============================================================ */
.whatsapp-float-wrap {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-direction: row-reverse;
}
.whatsapp-float {
  background: #25D366;
  color: #fff;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.25s, box-shadow 0.25s;
  flex-shrink: 0;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  color: #fff;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
.whatsapp-tooltip {
  background: #fff;
  color: #1a1a1a;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.14);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

/* ============================================================
   ANNOUNCEMENT BAR CLOSE BUTTON
   ============================================================ */
.announcement-close {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font-size: 0.9rem;
  margin-left: 1rem;
  opacity: 0.75;
  vertical-align: middle;
}
.announcement-close:hover { opacity: 1; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 9998;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--primary-dark); }

/* ============================================================
   SINGLE PRODUCT — DELIVERY & RETURN BOXES + WHATSAPP BTN
   ============================================================ */
.sriswa-delivery-box,
.sriswa-return-box {
  margin: 0.75rem 0;
  padding: 0.75rem 1rem;
  background: var(--primary-light);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.875rem;
  color: var(--foreground);
  font-weight: 500;
}
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.9rem 1.5rem;
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
  transition: background 0.2s, transform 0.2s;
}
.btn-whatsapp:hover { background: #1ebe5d; color: #fff; transform: translateY(-1px); }

