/* =============================================================
   NAINS HERBALS — nains-shop.css
   Enqueue in functions.php alongside nains-homepage.css:

   wp_enqueue_style(
     'nains-shop',
     get_stylesheet_directory_uri() . '/nains-shop.css',
     [],
     '1.0.0'
   );

   Or add this condition to your existing enqueue:
   if (is_shop() || is_product_category()) { ... }
   ============================================================= */

/* ── RESET / BASE ──────────────────────────────────────────── */
.nh-shop-page * { box-sizing: border-box; }
.nh-shop-page { background: #FFF9F0; min-height: 100vh; font-family: 'Inter', sans-serif; }

/* ── HERO HEADER ───────────────────────────────────────────── */
.nh-shop-hero {
  background: #1C2520;
  padding: 112px 20px 56px;
  text-align: center;
}
.nh-shop-breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.nh-shop-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.nh-shop-breadcrumb a:hover { color: #E67E22; }
.nh-shop-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.nh-shop-subtitle { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 24px; }

.nh-shop-search-form { max-width: 600px; margin: 0 auto; }
.nh-shop-search-input {
  width: 100%;
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.nh-shop-search-input:focus { border-color: #E67E22; }

/* ── SHOP HERO FEATURED STRIP (reuses homepage "cover" cards) ── */
.nh-shop-featured {
  margin: 26px auto 0;
  max-width: 1100px;
  position: relative;
}
.nh-shop-featured-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 12px 54px 10px;
  scroll-behavior: smooth;
}
.nh-shop-featured-track::-webkit-scrollbar { display: none; }
.nh-shop-featured-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  z-index: 5;
  pointer-events: none;
}
.nh-shop-featured-fade-left { left: 0; background: linear-gradient(to right, #1C2520, transparent); }
.nh-shop-featured-fade-right { right: 0; background: linear-gradient(to left, #1C2520, transparent); }
.nh-shop-featured-nav {
  position: absolute;
  top: 50%;
  left: 10px;
  right: 10px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}
.nh-shop-featured-nav .nh-strip-btn { pointer-events: auto; }

/* Minimal subset of homepage hero strip card styles (so shop/category gets it too) */
.nh-strip-card {
  flex-shrink: 0;
  width: 220px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}
.nh-strip-card:hover { transform: translateY(-6px); box-shadow: 0 18px 38px rgba(0,0,0,0.30); }
.nh-strip-img { position: relative; height: 180px; background: rgba(255,255,255,0.06); }
.nh-strip-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nh-strip-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
  font-family: 'Inter', sans-serif;
  color: #fff;
}
.nh-badge-orange { background: #E67E22; }
.nh-strip-info { padding: 12px; }
.nh-strip-name {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nh-strip-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-family: 'Inter', sans-serif;
  margin-top: 6px;
}
.nh-strip-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.nh-strip-price span:first-child {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  font-family: 'Inter', sans-serif;
}
.nh-strip-orig {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-decoration: line-through;
  font-family: 'Inter', sans-serif;
}

/* Square glass arrow buttons (consistent with homepage) */
.nh-strip-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  color: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.22);
}
.nh-strip-btn:hover {
  background: #E67E22;
  border-color: #E67E22;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(230,126,34,0.35);
}
.nh-strip-btn svg { stroke: currentColor; }

/* Keep arrows visible in transparent square nav buttons */
.nh-strip-btn {
  position: relative;
}
.nh-strip-btn svg {
  display: none;
}
#nhShopFeaturedPrev.nh-strip-btn::before,
#nhShopFeaturedNext.nh-strip-btn::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  color: currentColor;
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}
#nhShopFeaturedPrev.nh-strip-btn::before { content: '\2039'; }
#nhShopFeaturedNext.nh-strip-btn::before { content: '\203A'; }

@media (max-width: 640px) {
  .nh-shop-featured-track { padding-left: 16px; padding-right: 16px; }
  .nh-shop-featured-fade { display: none; }
  .nh-shop-featured-nav { display: none; }
  .nh-strip-card { width: 190px; }
}

/* ── LAYOUT ────────────────────────────────────────────────── */
.nh-shop-layout {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

/* ── SIDEBAR ────────────────────────────────────────────────── */
.nh-shop-sidebar {
  width: 270px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  position: sticky;
  top: 90px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}
.nh-shop-sidebar::-webkit-scrollbar { width: 4px; }
.nh-shop-sidebar::-webkit-scrollbar-thumb { background: #E5D5C3; border-radius: 4px; }

.nh-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.nh-sidebar-title {
  font-size: 16px;
  font-weight: 700;
  color: #1C2520;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.nh-filter-badge {
  background: #E67E22;
  color: #fff;
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 999px;
  font-weight: 700;
}
.nh-sidebar-actions { display: flex; align-items: center; gap: 12px; }
.nh-clear-all {
  font-size: 12px;
  font-weight: 600;
  color: #E67E22;
  text-decoration: none;
}
.nh-clear-all:hover { text-decoration: underline; }
.nh-sidebar-close { background: none; border: none; cursor: pointer; padding: 0; color: #1C2520; }

/* Filter Sections */
.nh-filter-section {
  padding: 16px 0;
  border-bottom: 1px solid #F0E6D8;
}
.nh-filter-section:last-child { border-bottom: none; }
.nh-filter-label {
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8B7D6B;
  font-weight: 700;
  margin: 0 0 10px;
}

/* Quick Pills */
.nh-quick-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.nh-quick-pill {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1.5px solid #E5D5C3;
  font-size: 12px;
  font-weight: 600;
  color: #8B7D6B;
  cursor: pointer;
  transition: all 0.2s;
}
.nh-quick-pill input { display: none; }
.nh-quick-pill:hover { border-color: #E67E22; color: #E67E22; }
.nh-quick-pill.is-active-sale { background: #E67E22; border-color: #E67E22; color: #fff; }
.nh-quick-pill.nh-pill-tan:hover { border-color: #D4A574; color: #D4A574; }
.nh-quick-pill.is-active-tan { background: #D4A574; border-color: #D4A574; color: #fff; }

/* Checkbox / Radio rows */
.nh-checkbox-list { display: flex; flex-direction: column; gap: 8px; }
.nh-checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.nh-checkbox-row input { width: 15px; height: 15px; accent-color: #1C2520; flex-shrink: 0; }
.nh-checkbox-name { font-size: 13px; color: #1C2520; flex: 1; transition: color 0.2s; }
.nh-checkbox-row:hover .nh-checkbox-name { color: #E67E22; }
.nh-checkbox-count { font-size: 12px; color: #8B7D6B; }

/* Product Type Chips */
.nh-chip-grid { display: flex; flex-wrap: wrap; gap: 6px; }
.nh-chip {
  padding: 5px 12px;
  border-radius: 999px;
  border: 1.5px solid #E5D5C3;
  font-size: 11px;
  color: #8B7D6B;
  cursor: pointer;
  transition: all 0.2s;
}
.nh-chip:hover { border-color: #1C2520; color: #1C2520; }
.nh-chip.is-active { background: #1C2520; border-color: #1C2520; color: #fff; }

/* Stars in rating filter */
.nh-stars { display: flex; gap: 2px; }
.nh-star-fill { color: #D4A574; }
.nh-star-empty { color: #E5D5C3; }

.nh-apply-btn {
  width: 100%;
  background: #E67E22;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 16px;
}

/* ── PRODUCT AREA ───────────────────────────────────────────── */
.nh-shop-main { flex: 1; min-width: 0; }

/* Toolbar */
.nh-shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  margin-bottom: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  flex-wrap: wrap;
  gap: 10px;
}
.nh-toolbar-left, .nh-toolbar-right { display: flex; align-items: center; gap: 12px; }
.nh-filter-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid #E5D5C3;
  background: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: #1C2520;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}
.nh-filter-toggle:hover { border-color: #1C2520; }
.nh-product-count { font-size: 14px; font-weight: 600; color: #1C2520; }

.nh-grid-toggle { display: flex; gap: 4px; background: #FFF9F0; border-radius: 8px; padding: 4px; }
.nh-grid-btn {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  color: #8B7D6B;
  text-decoration: none;
  transition: all 0.2s;
}
.nh-grid-btn.is-active { background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.1); color: #1C2520; }

.nh-sort-select {
  border: 1.5px solid #E5D5C3;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  color: #1C2520;
  font-family: 'Inter', sans-serif;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s;
}
.nh-sort-select:hover, .nh-sort-select:focus { border-color: #1C2520; outline: none; }
.nh-sort-form { display: flex; }

/* Active Filter Pills */
.nh-active-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.nh-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nh-pill:hover { opacity: 0.85; }
.nh-pill-dark   { background: #1C2520; color: #fff; }
.nh-pill-green  { background: #74C69D; color: #fff; }
.nh-pill-orange { background: #E67E22; color: #fff; }
.nh-pill-tan    { background: #D4A574; color: #fff; }

/* ── PRODUCTS GRID ──────────────────────────────────────────── */
.nh-products-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .nh-products-grid.nh-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .nh-products-grid.nh-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Product Card */
.nh-product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.nh-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(28,37,32,0.12);
}

.nh-badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 4px; z-index: 2; }
.nh-badge-sale {
  background: #E67E22;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
}
.nh-badge-new {
  background: #74C69D;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
}

.nh-card-img-link { display: block; aspect-ratio: 1/1; overflow: hidden; background: #F5F0E8; }
.nh-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  padding: 0;
}
.nh-product-card:hover .nh-card-img { transform: scale(1.06); }

.nh-card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}
.nh-card-name {
  font-size: 13px;
  font-weight: 600;
  color: #1C2520;
  text-decoration: none;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nh-card-name:hover { color: #E67E22; }
.nh-card-desc {
  font-size: 11px;
  color: #8B7D6B;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.nh-card-stars { display: flex; align-items: center; gap: 3px; }
.nh-rating-text { font-size: 11px; color: #8B7D6B; margin-left: 2px; }

.nh-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #F0E6D8;
}
.nh-card-price { display: flex; align-items: baseline; gap: 6px; }
.nh-price-sale { font-size: 15px; font-weight: 700; color: #1C2520; }
.nh-price-regular { font-size: 12px; color: #B0A090; text-decoration: line-through; }

.nh-atc-btn {
  width: 34px; height: 34px;
  background: #E67E22;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.nh-atc-btn:hover { background: #D4721E; transform: scale(1.1); }

/* ── PAGINATION ─────────────────────────────────────────────── */
.nh-pagination { margin-top: 40px; }
.nh-pagination .page-numbers {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.nh-pagination .page-numbers li a,
.nh-pagination .page-numbers li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: all 0.2s;
}
.nh-pagination .page-numbers li a { background: #fff; color: #1C2520; border: 1.5px solid #E5D5C3; }
.nh-pagination .page-numbers li a:hover { background: #E67E22; color: #fff; border-color: #E67E22; }
.nh-pagination .page-numbers li span.current { background: #E67E22; color: #fff; border: none; }
.nh-pagination .page-numbers li span.dots { border: none; color: #8B7D6B; }

/* ── NO PRODUCTS ────────────────────────────────────────────── */
.nh-no-products {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border-radius: 16px;
}
.nh-no-products-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: #1C2520;
  margin: 0 0 8px;
}
.nh-no-products-sub { font-size: 14px; color: #8B7D6B; margin-bottom: 24px; }
.nh-clear-btn {
  display: inline-block;
  background: #E67E22;
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.nh-clear-btn:hover { background: #D4721E; color: #fff; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
.lg-hide { display: none; }
.lg-show { display: flex; }

@media (max-width: 1023px) {
  .nh-shop-sidebar {
    position: fixed;
    inset: 0;
    width: 320px;
    max-height: 100vh;
    border-radius: 0;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 4px 0 24px rgba(0,0,0,0.15);
  }
  .nh-shop-sidebar.is-open { transform: translateX(0); }
  .nh-shop-layout { flex-direction: column; }
  .lg-hide { display: flex; }
  .lg-show { display: none; }
}

@media (max-width: 640px) {
  .nh-shop-hero { padding: 90px 16px 40px; }
  .nh-shop-layout { padding: 20px 16px; }
  .nh-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
/* ── CART PAGE ─────────────────────────────────────────────── */
.woocommerce-cart .entry-content,
.woocommerce-cart #primary { padding: 0; }

.woocommerce-cart-form,
.cart-collaterals {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Inter', sans-serif;
}

.woocommerce-cart-form table.shop_table {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.woocommerce-cart-form table.shop_table thead tr {
  background: #1C2520;
  color: #fff;
}
.woocommerce-cart-form table.shop_table th {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 20px;
  border: none;
}
.woocommerce-cart-form table.shop_table td {
  padding: 16px 20px;
  border-bottom: 1px solid #F0E6D8;
  vertical-align: middle;
  font-size: 14px;
  color: #1C2520;
}
.woocommerce-cart-form table.shop_table img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 8px;
  background: #F5F0E8;
}
.woocommerce-cart-form a.remove {
  color: #E67E22 !important;
  font-size: 20px;
  font-weight: 700;
}
.woocommerce-cart-form .button {
  background: #1C2520 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 10px 24px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
}
.woocommerce-cart-form .coupon input {
  border: 1.5px solid #E5D5C3;
  border-radius: 8px;
  padding: 10px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  margin-right: 8px;
}

.cart_totals {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  max-width: 420px;
  margin-left: auto;
}
.cart_totals h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: #1C2520;
  margin-bottom: 16px;
}
.cart_totals table { width: 100%; border-collapse: collapse; }
.cart_totals table th,
.cart_totals table td {
  padding: 12px 0;
  border-bottom: 1px solid #F0E6D8;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #1C2520;
}
.cart_totals .order-total th,
.cart_totals .order-total td {
  font-weight: 700;
  font-size: 16px;
  border-bottom: none;
}
.cart_totals .checkout-button {
  display: block;
  background: #E67E22 !important;
  color: #fff !important;
  text-align: center;
  padding: 14px !important;
  border-radius: 999px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  font-family: 'Inter', sans-serif !important;
  margin-top: 16px;
  text-decoration: none;
}
.cart_totals .checkout-button:hover { background: #D4721E !important; }

/* ── MY ACCOUNT ─────────────────────────────────────────────── */
.woocommerce-account .woocommerce {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Inter', sans-serif;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  height: fit-content;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #1C2520;
  text-decoration: none;
  border-bottom: 1px solid #F5F0E8;
  transition: all 0.2s;
}
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
  background: #F5F0E8;
  color: #E67E22;
}
.woocommerce-account .woocommerce-MyAccount-content {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
}
.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
  font-family: 'Cormorant Garamond', serif;
  color: #1C2520;
}
.woocommerce-account table.shop_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.woocommerce-account table.shop_table th {
  background: #F5F0E8;
  padding: 10px 14px;
  font-weight: 600;
  color: #1C2520;
  border: none;
  text-align: left;
}
.woocommerce-account table.shop_table td {
  padding: 12px 14px;
  border-bottom: 1px solid #F0E6D8;
}
.woocommerce-account .button {
  background: #1C2520 !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 8px 18px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border: none !important;
}
.woocommerce-account .button:hover { background: #E67E22 !important; }
.woocommerce-account input[type="text"],
.woocommerce-account input[type="email"],
.woocommerce-account input[type="password"],
.woocommerce-account select {
  border: 1.5px solid #E5D5C3 !important;
  border-radius: 8px !important;
  padding: 10px 14px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  width: 100% !important;
}
.woocommerce-account input:focus,
.woocommerce-account select:focus {
  border-color: #1C2520 !important;
  outline: none !important;
}

@media (max-width: 768px) {
  .woocommerce-account .woocommerce { grid-template-columns: 1fr; }
}