/*
Theme Name:  Zemro
Theme URI:   https://zemro.in
Author:      Zemro Team
Author URI:  https://zemro.in
Description: Zemro Custom WordPress WooCommerce Theme — Tech Accessories
Version:     2.0.0
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zemro
Tags:        e-commerce, custom, responsive, woocommerce
*/

/* ============================================
   ZEMRO — Main Stylesheet v2.0
   Bootstrap 5 | WooCommerce | Custom Design
   ============================================ */

:root {
  --blue:        #1565c0;
  --blue-dark:   #0d47a1;
  --green:       #00a65a;
  --red:         #e53935;
  --gray-border: #e0e0e0;
  --text-gray:   #666;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  color: #111;
  background: #fff;
}


/* ════════════════════════════════════════
   STICKY HEADER WRAPPER
════════════════════════════════════════ */
.sticky-top-wrap {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
}

/* ════════════════════════════════════════
   PROMO BAR
════════════════════════════════════════ */
.promo-bar {
  background: #dce8f5;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  color: #222;
  letter-spacing: 0.2px;
}


/* ════════════════════════════════════════
   SITE HEADER
════════════════════════════════════════ */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--gray-border);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 998;
  gap: 16px;
  transition: box-shadow 0.2s;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 38px !important;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Desktop Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #222 !important;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 5px;
}

/* Remove Bootstrap default dropdown caret arrow */
.main-nav .dropdown-toggle::after {
  display: none !important;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
  background: #f5f5f5;
  color: #111 !important;
}

/* Search */
.search-wrap {
  flex: 1;
  max-width: 380px;
  position: relative;
}

.search-wrap input {
  width: 100%;
  border: 1.5px solid #d0d0d0;
  border-radius: 6px;
  padding: 8px 34px 8px 12px;
  font-size: 13.5px;
  outline: none;
  background: #fafafa;
  color: #333;
  font-family: inherit;
}

.search-wrap input:focus {
  border-color: var(--blue);
  background: #fff;
}

.search-wrap .bi-search {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 15px;
  pointer-events: none;
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.btn-login {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  text-decoration: none;
}

.btn-login:hover { color: var(--blue); }

.btn-login .bi { font-size: 19px; }

.cart-btn {
  font-size: 22px;
  color: #222;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.cart-btn:hover { color: var(--blue); }


/* ════════════════════════════════════════
   HAMBURGER
════════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #222;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }


/* ════════════════════════════════════════
   MOBILE OVERLAY + DRAWER
════════════════════════════════════════ */
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1040;
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mob-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 88vw);
  background: #fff;
  z-index: 1050;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mob-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.mob-header-title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.mob-close {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #555;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s;
}

.mob-close:hover { background: #f3f3f3; color: #111; }

.mob-menu-body { flex: 1; overflow-y: auto; }

.mob-search {
  padding: 14px 16px 8px;
  position: relative;
}

.mob-search input {
  width: 100%;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 38px 10px 14px;
  font-size: 14px;
  outline: none;
  background: #f7f7f7;
  color: #333;
  font-family: inherit;
}

.mob-search input:focus { border-color: var(--blue); background: #fff; }

.mob-search .bi-search {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 15px;
  pointer-events: none;
}

.mob-nav-link {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.15s, color 0.15s;
}

.mob-nav-link:hover { background: #f5f8ff; color: var(--blue); }

.mob-footer-actions {
  border-top: 1px solid #ebebeb;
  padding: 8px 0 16px;
  flex-shrink: 0;
}

.mob-action-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.mob-action-link .bi { font-size: 19px; color: #555; }

.mob-action-link:hover { background: #f5f8ff; color: var(--blue); }
.mob-action-link:hover .bi { color: var(--blue); }


/* ════════════════════════════════════════
   HOMEPAGE — TRUST ROW
════════════════════════════════════════ */
.trust-row {
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
  padding: 14px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: #222;
}

.trust-item .bi { font-size: 22px; color: #444; }


/* ════════════════════════════════════════
   HOMEPAGE — EXPLORE CATEGORIES
════════════════════════════════════════ */
.explore-section {
  padding: 28px 0 16px;
}

.explore-section h2 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 22px;
}

.cat-row {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 12px;
  gap: 6px;
  -webkit-overflow-scrolling: touch;
}

.cat-row::-webkit-scrollbar { display: none; }

.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 90px;
  flex-shrink: 0;
  text-decoration: none;
  padding: 4px 6px;
}

.cat-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #deeaf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #1a4fa0;
  overflow: hidden;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.cat-item:hover .cat-icon {
  background: #c4d9f5;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(21,101,192,0.15);
}

.cat-label {
  font-size: 12.5px;
  font-weight: 500;
  color: #333;
  text-align: center;
  white-space: nowrap;
}

.cat-item:hover .cat-label { color: var(--blue); }


/* ════════════════════════════════════════
   HOMEPAGE — PRODUCTS SECTION
════════════════════════════════════════ */
.products-section { padding: 24px 0; }

.sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.sec-head h2 { font-size: 21px; font-weight: 800; }

.more-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}

.more-link:hover { text-decoration: underline; }


/* ════════════════════════════════════════
   WOOCOMMERCE PRODUCT LOOP GRID
   Overrides WC default ul.products
════════════════════════════════════════ */
ul.products {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 12px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

ul.products li.product {
  margin: 0 !important;
  float: none !important;
  width: auto !important;
}


/* ════════════════════════════════════════
   PRODUCT CARD — .pc
════════════════════════════════════════ */
li.pc {
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.22s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

li.pc:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.11);
  transform: translateY(-4px);
}

/* Image */
.pc-img {
  position: relative;
  background: #f3f3f3;
  padding: 16px 16px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.pc-img img,
.pc-img .woo-img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
  display: block;
}

/* Sale badge */
.dbadge {
  position: absolute;
  top: 10px;
  right: 10px;
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 8px rgba(229,57,53,0.35);
}

/* Sold out overlay */
.sold-ov {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sold-lbl {
  background: rgba(30,30,30,.75);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 7px 22px;
  border-radius: 5px;
  letter-spacing: 0.5px;
}

/* Info */
.pc-info {
  padding: 12px 14px 10px;
  flex: 1;
}

.pc-tag {
  font-size: 10px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  margin-bottom: 5px;
}

.pc-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #111;
  line-height: 1.45;
  margin-bottom: 10px;
  min-height: 40px;
}

.pc-prices {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.pd {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--red);
  background: #ffeaea;
  border: 1px solid #ffd0d0;
  border-radius: 3px;
  padding: 2px 7px;
}

.pn {
  font-size: 16px;
  font-weight: 800;
  color: var(--blue);
}

/* Fix WooCommerce price HTML inside .pn */
.pn .woocommerce-Price-amount,
.pn bdi { font-size: inherit; font-weight: inherit; color: inherit; }

.po {
  font-size: 12px;
  color: #aaa;
  text-decoration: line-through;
}

/* Footer: Add to Cart */
.pc-footer {
  padding: 10px 14px 14px;
}

.pc-cart-btn {
  width: 100%;
  background: var(--blue);
  color: #fff !important;
  border: none;
  border-radius: 7px;
  padding: 9px 0;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.18s, transform 0.15s;
  letter-spacing: 0.3px;
  text-decoration: none !important;
}

.pc-cart-btn:hover {
  background: var(--blue-dark) !important;
  transform: translateY(-1px);
}

.pc-cart-btn.added,
.pc-cart-btn.loading {
  background: #2e7d32 !important;
}

/* Hide inner link decoration */
.pc-inner-link {
  display: block;
  text-decoration: none !important;
  color: inherit !important;
}

li.is-sold .pc-footer { display: none; }


/* ════════════════════════════════════════
   PRODUCT PAGE — LAYOUT
════════════════════════════════════════ */
.product-wrap {
  display: flex;
  gap: 32px;
  padding-bottom: 32px;
  align-items: flex-start;
}

.product-images {
  flex-shrink: 0;
  width: 420px;
}

/* WooCommerce gallery images */
.woocommerce-product-gallery {
  width: 100% !important;
}

.product-info { flex: 1; }


/* ── Product Info Typography ── */
.woocommerce-loop-product__title,
h1.product_title,
.product_title {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #111 !important;
  line-height: 1.25 !important;
  margin-bottom: 8px !important;
}

.woocommerce-product-rating {
  margin-bottom: 12px !important;
}

p.price, span.price {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #111 !important;
  margin-bottom: 6px !important;
}

p.price ins, span.price ins {
  text-decoration: none;
  color: var(--blue) !important;
}

p.price del, span.price del {
  color: #aaa !important;
  font-size: 15px !important;
}

.woocommerce-price-suffix {
  font-size: 12px;
  color: var(--text-gray);
  font-weight: 400;
}

/* Add to Cart button (WooCommerce default) */
.single_add_to_cart_button,
button.single_add_to_cart_button {
  background: var(--green) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 13px 28px !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: background 0.18s !important;
  font-family: inherit !important;
  letter-spacing: 0.3px !important;
}

.single_add_to_cart_button:hover {
  background: #008a4a !important;
}

/* Quantity input */
.woocommerce .quantity .qty {
  border: 1.5px solid var(--gray-border) !important;
  border-radius: 6px !important;
  padding: 8px 10px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  width: 70px !important;
  text-align: center !important;
  font-family: inherit !important;
}


/* ── Delivery check ── */
.delivery-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.delivery-input-row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.delivery-input-row input {
  border: 1.5px solid var(--gray-border);
  border-radius: 6px 0 0 6px;
  padding: 8px 13px;
  font-size: 14px;
  outline: none;
  width: 200px;
  color: #111;
  font-family: inherit;
}

.delivery-input-row input:focus { border-color: #555; }

.btn-change {
  background: #111;
  color: #fff;
  border: 1.5px solid #111;
  border-radius: 0 6px 6px 0;
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}

.btn-change:hover { background: #333; }

.free-delivery {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #111;
  margin-bottom: 16px;
}

.free-delivery .bi-truck { font-size: 18px; color: var(--green); }
.free-delivery strong { color: var(--green); }


/* ── Trust Pills ── */
.trust-pills {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--gray-border);
  border-radius: 50px;
  padding: 11px 20px;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: #222;
}

.trust-pill .bi { font-size: 20px; color: #444; }


/* ── Lower Section ── */
.lower-wrap { padding: 28px 0; }

.lower-cols {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.col-left { width: 380px; flex-shrink: 0; }
.col-right { flex: 1; }


/* ── Accordion ── */
.acc-item {
  border: 1.5px solid var(--gray-border);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #fff;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 600;
  color: #111;
  user-select: none;
}

.acc-header .bi { font-size: 14px; color: #666; transition: transform 0.25s; }

.acc-body {
  display: none;
  padding: 12px 18px 16px;
  font-size: 13.5px;
  color: #444;
  line-height: 1.75;
}

.acc-body.open { display: block; }

.spec-table { width: 100%; font-size: 13px; border-collapse: collapse; }
.spec-table td { padding: 5px 0; vertical-align: top; }
.spec-table td:first-child { color: #888; width: 45%; }


/* ── Reviews ── */
.reviews-title { font-size: 18px; font-weight: 800; margin-bottom: 18px; color: #111; }

.review-item { border-bottom: 1px solid #eee; padding-bottom: 16px; margin-bottom: 16px; }
.review-item:last-child { border-bottom: none; }

.review-date { font-size: 12.5px; color: var(--text-gray); margin-bottom: 5px; }

.review-stars { display: flex; gap: 2px; margin-bottom: 7px; }
.review-stars .bi-star-fill,
.review-stars .bi-star-half { color: #f5a623; font-size: 14px; }

.review-text { font-size: 14px; color: #111; line-height: 1.55; margin-bottom: 6px; }
.review-author { font-size: 12.5px; color: var(--text-gray); }

/* WooCommerce comment/review form */
#review_form_wrapper .comment-form-rating label { font-weight: 600; }

.btn-add-review {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 11px 22px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  font-family: inherit;
}

.btn-add-review:hover { background: #333; }


/* ── Related Products ── */
.related-section {
  padding: 32px 0;
  border-top: 1px solid var(--gray-border);
}

.related-section h2 { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.related-sub { font-size: 13.5px; color: var(--text-gray); margin-bottom: 18px; }

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

.rc {
  border: 1.5px solid var(--gray-border);
  border-radius: 10px;
  background: #f5f5f5;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.rc:hover { box-shadow: 0 4px 16px rgba(0,0,0,.09); }

.rc-img {
  background: #eaeaea;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
}

.rc-img img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #f5a623;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 4px;
  z-index: 2;
}

.rc-info { padding: 10px 12px 14px; background: #fff; }
.rc-brand { font-size: 11px; color: var(--text-gray); font-weight: 500; margin-bottom: 3px; }
.rc-name { font-size: 13px; font-weight: 600; color: #111; margin-bottom: 6px; line-height: 1.35; }


/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer {
  background: #dde4ec;
  padding: 56px 40px 0;
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 18px;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-address {
  font-size: 13.5px;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 14px;
}

.footer-contact {
  font-size: 13.5px;
  color: #4a5568;
  line-height: 2;
}

.footer-contact strong { color: #1a1a1a; font-weight: 700; }
.footer-contact a { color: #4a5568; text-decoration: none; }
.footer-contact a:hover { color: var(--blue); }

.footer-social {
  display: flex;
  gap: 9px;
  margin-top: 18px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.footer-social a:hover { transform: translateY(-2px); }
.footer-social a.fb:hover { background: #1877f2; color: #fff; }
.footer-social a.tw:hover { background: #000; color: #fff; }
.footer-social a.ig:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
}
.footer-social a.yt:hover { background: #ff0000; color: #fff; }
.footer-social a.li:hover { background: #0a66c2; color: #fff; }

.footer-col-title {
  font-size: 16px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 3px;
  background: var(--blue);
  border-radius: 2px;
}

.footer-col-links {
  list-style: none;
  padding: 0; margin: 0;
}

.footer-col-links li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}

.footer-col-links li::before {
  content: '•';
  color: var(--blue);
  font-size: 14px;
  line-height: 1.6;
  flex-shrink: 0;
}

.footer-col-links a {
  font-size: 13.5px;
  color: #1565c0;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.18s, padding-left 0.18s;
}

.footer-col-links a:hover { color: #0d47a1; padding-left: 3px; }

.footer-bottom {
  background: #2d3748;
  margin: 0 -40px;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom p { font-size: 13px; color: #a0aec0; margin: 0; text-align: center; }
.footer-bottom strong { color: #e2e8f0; }


/* ════════════════════════════════════════
   WOOCOMMERCE — GENERAL OVERRIDES
════════════════════════════════════════ */

/* Remove default WC styles that conflict */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button {
  font-family: inherit;
  border-radius: 7px;
  font-weight: 600;
}

/* WC notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-radius: 8px;
  font-family: inherit;
}

/* WC breadcrumb */
.woocommerce-breadcrumb {
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.woocommerce-breadcrumb a {
  color: var(--text-gray);
  text-decoration: none;
}

.woocommerce-breadcrumb a:hover { color: var(--blue); }

/* WC product title in archive */
.woocommerce-loop-product__title {
  font-size: 13.5px !important;
  padding: 0 !important;
}


/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1200px) {
  ul.products {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

@media (max-width: 992px) {
  ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-wrap {
    flex-direction: column;
  }
  .product-images {
    width: 100%;
  }
  .lower-cols {
    flex-direction: column;
  }
  .col-left {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .main-nav,
  .search-wrap,
  .header-right {
    display: none !important;
  }
  .hamburger {
    display: flex !important;
  }
  ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-pills {
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 36px 20px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom {
    margin: 0 -20px;
    padding: 14px 20px;
  }
  .products-section,
  .explore-section {
    padding: 18px 0;
  }
}

@media (max-width: 480px) {
  ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  .product-wrap {
    padding: 0 0 24px;
  }
}


/* ════════════════════════════════════════
   HERO SLIDER — Full Screen Fit
════════════════════════════════════════ */

/* No gap between header and slider */
body { margin: 0 !important; }
main, .site-main, #main { margin-top: 0 !important; padding-top: 0 !important; }

/* WordPress admin bar offset */
body.admin-bar .sticky-top-wrap { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .sticky-top-wrap { top: 46px; }
}

/*
  --promo-h : promo bar  ~34px
  --header-h: site header ~64px
  Total sticky = ~98px
  Slider fills remaining viewport = 100vh - 98px
*/
:root {
  --promo-h:  34px;
  --header-h: 64px;
  --topbar-total: calc(var(--promo-h) + var(--header-h));
}

.hero-section {
  width: 100%;
  height: calc(100vh - var(--topbar-total));
  overflow: hidden;
  display: block;
  line-height: 0;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Carousel fills hero-section height */
.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
}

/* ── Banner image: cover entire slider area ── */
.hero-banner-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  margin: 0;
  padding: 0;
}

/* ── Side Arrows: thin subtle circles ── */
.hero-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 34px !important;
  height: 34px !important;
  background: rgba(0,0,0,0.28) !important;
  border-radius: 50% !important;
  border: 1.5px solid rgba(255,255,255,0.30) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: rgba(255,255,255,0.88) !important;
  font-size: 15px !important;
  z-index: 20 !important;
  opacity: 1 !important;
  transition: background 0.2s, border-color 0.2s !important;
  padding: 0 !important;
  cursor: pointer !important;
}

.hero-arrow:hover {
  background: rgba(0,0,0,0.52) !important;
  border-color: rgba(255,255,255,0.65) !important;
  color: #fff !important;
}

.hero-arrow-left  { left: 16px !important; right: auto !important; }
.hero-arrow-right { right: 16px !important; left: auto !important; }

/* ── Bottom Pill Indicators ── */
.hero-dots {
  bottom: 14px !important;
  margin: 0 !important;
  align-items: center !important;
}

.hero-dots button {
  width: 24px !important;
  height: 3px !important;
  border-radius: 3px !important;
  background: rgba(255,255,255,0.38) !important;
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  margin: 0 3px !important;
  padding: 0 !important;
  opacity: 1 !important;
  transition: width 0.25s, background 0.25s !important;
}

.hero-dots button.active {
  width: 42px !important;
  background: rgba(255,255,255,0.92) !important;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  :root {
    --promo-h:  30px;
    --header-h: 56px;
  }
  .hero-arrow {
    width: 28px !important;
    height: 28px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 480px) {
  :root {
    --promo-h:  28px;
    --header-h: 52px;
  }
}