:root {
  --primary: #0f4d45;
  --primary-rgb: 15, 77, 69;
  --accent: #e2a200;
  --accent-rgb: 226, 162, 0;
  --bg: #fbfaf6;
  --card: #ffffff;
  --border: #e8e8e4;
  --text: #13211d;
  --text-muted: #6b7b76;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow-sm: 0 4px 12px rgba(15, 77, 69, 0.03);
  --shadow-md: 0 8px 24px rgba(15, 77, 69, 0.06);
  --shadow-lg: 0 16px 40px rgba(15, 77, 69, 0.08);
}

/* ── Base Styles ── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none !important;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  font-weight: 700;
  line-height: 1.25;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* ── Premium Glassmorphism Cards ── */
.glass-premium {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
}

/* ── Custom Buttons ── */
.btn-primary, .btn-secondary, .btn-add-cart, button.button, input[type="submit"].button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  letter-spacing: 0.3px;
}

.btn-primary, .btn-add-cart, button.button.alt, input[type="submit"].button.alt {
  background-color: var(--primary);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(15, 77, 69, 0.2);
}

.btn-primary:hover, .btn-add-cart:hover, button.button.alt:hover, input[type="submit"].button.alt:hover {
  background-color: #165d54;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 77, 69, 0.28);
}

.btn-secondary, button.button, input[type="submit"].button {
  background-color: transparent;
  color: var(--primary) !important;
  border: 1.5px solid var(--primary);
}

.btn-secondary:hover, button.button:hover, input[type="submit"].button:hover {
  background-color: rgba(15, 77, 69, 0.04);
  transform: translateY(-2px);
}

/* ── Utility Bar ── */
.utility-bar {
  background-color: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.6rem 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ── Site Header & Nav ── */
.site-header {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.5px;
}
.logo-ventures {
  font-size: 0.6rem;
  letter-spacing: 5px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.nav-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.2s ease;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-icon-btn {
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.nav-icon-btn:hover {
  color: var(--primary);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: var(--accent);
  color: var(--text);
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(226, 162, 0, 0.3);
}

.category-bar {
  background-color: rgba(250, 250, 248, 0.8);
  border-top: 1px solid var(--border);
  padding: 0.6rem 0;
}
.category-bar-inner {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-bar-inner::-webkit-scrollbar {
  display: none;
}
.category-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  border: 1px solid var(--border);
  background-color: #fff;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.category-link.active, .category-link:hover {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ── Hero Banner ── */
.hero-banner {
  background: linear-gradient(135deg, rgba(15,77,69,0.92) 0%, rgba(19,33,29,0.95) 100%), url('../images/hero_bg.jpg') center/cover no-repeat;
  color: #fff;
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.hero-title-accent {
  color: var(--accent);
}
.hero-subtitle {
  font-size: 1.15rem;
  margin-bottom: 2.75rem;
  opacity: 0.9;
  line-height: 1.6;
}
.hero-cta-group {
  display: flex;
  gap: 1.25rem;
}
.btn-hero {
  padding: 1.1rem 2.25rem;
  font-size: 1rem;
  border-radius: var(--radius-sm);
}
.hero-cta-group .btn-secondary {
  color: #fff !important;
  border-color: rgba(255,255,255,0.7);
}
.hero-cta-group .btn-secondary:hover {
  border-color: #fff;
  background-color: rgba(255,255,255,0.1);
}

/* ── Trust Strip ── */
.trust-strip {
  background-color: #fff;
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.trust-icon {
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(226, 162, 0, 0.08);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.trust-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}
.trust-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Shop / Featured Product Sections ── */
.featured-products-section, .shop-page-wrapper {
  padding: 5rem 0;
}
.section-header, .shop-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}
.section-title, .shop-title-main {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}
.section-subtitle, .shop-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ── Premium Product Cards ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.premium-card {
  background-color: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.premium-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 77, 69, 0.2);
}

.premium-image-container {
  aspect-ratio: 1 / 1;
  position: relative;
  background-color: #f5f5f3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.premium-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.premium-card:hover .premium-card-image {
  transform: scale(1.06);
}

.premium-sale-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #e61601;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(230, 22, 1, 0.2);
}

.premium-image-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 77, 69, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.premium-card:hover .premium-image-overlay {
  opacity: 1;
}
.premium-view-text {
  color: #fff;
  border: 1.5px solid #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  transform: translateY(10px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.premium-card:hover .premium-view-text {
  transform: translateY(0);
}

.premium-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.premium-card-category {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 2px;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.premium-card-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7em;
}
.premium-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 3.4em;
}
.premium-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin-top: auto;
}
.premium-price-box {
  display: flex;
  flex-direction: column;
}
.premium-price {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
}
.premium-price-sale {
  font-weight: 800;
  font-size: 1.2rem;
  color: #e61601;
}
.premium-price-original {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: var(--text-muted);
  margin-top: 0.1rem;
}
.premium-card-footer .btn-add-cart {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
}

.view-all-wrap {
  text-align: center;
  margin-top: 3.5rem;
}
.btn-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background-color: var(--primary);
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(15, 77, 69, 0.15);
  transition: all 0.3s;
}
.btn-view-all:hover {
  background-color: #165d54;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 77, 69, 0.25);
}

/* ── Cart Page Grid ── */
.cart-layout-grid, .checkout-form-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 4rem;
}

/* WooCommerce Table Styling */
table.shop_table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
table.shop_table th {
  background-color: rgba(15, 77, 69, 0.03);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  text-align: left;
  padding: 1.25rem;
  font-size: 0.9rem;
}
table.shop_table td {
  padding: 1.25rem;
  border-top: 1px solid var(--border);
  vertical-align: middle;
}
.product-thumbnail img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}
.remove-cart-item-btn {
  font-size: 1.5rem;
  color: #e53e3e;
  text-decoration: none;
  font-weight: 300;
}

/* Form Fields */
.form-input, input[type="text"], input[type="email"], input[type="tel"], input[type="number"], select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background-color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.2s ease;
}
.form-input:focus, input[type="text"]:focus, input[type="email"]:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 77, 69, 0.08);
}

/* ── Site Footer ── */
.site-footer {
  background-color: #13211d;
  color: #fff;
  padding: 5rem 0 0;
  border-top: 3px solid var(--accent);
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3.5rem;
  padding-bottom: 4rem;
}
.footer-brand {
  grid-column: span 2;
}
.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.footer-tagline {
  font-size: 0.95rem;
  color: #a0aba7;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}
.footer-badge {
  display: inline-block;
  font-size: 0.75rem;
  border: 1px solid rgba(160, 171, 167, 0.4);
  padding: 0.3rem 0.85rem;
  border-radius: 4px;
  margin-right: 0.5rem;
  color: #a0aba7;
  font-weight: 600;
}
.footer-col-title {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}
.footer-links-list {
  list-style: none;
}
.footer-links-list li {
  margin-bottom: 0.85rem;
}
.footer-link {
  color: #a0aba7;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 1.75rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: #a0aba7;
}

/* ── Responsive Overrides ── */
@media (max-width: 1024px) {
  .cart-layout-grid, .checkout-form-grid {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .nav-links {
    display: none;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ── WooCommerce Pagination overrides ── */
.woocommerce-pagination {
  text-align: center;
  margin-top: 3rem;
}
.woocommerce-pagination ul.page-numbers {
  display: inline-flex;
  list-style: none;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}
.woocommerce-pagination ul.page-numbers li {
  margin: 0;
  padding: 0;
}
.woocommerce-pagination ul.page-numbers li a,
.woocommerce-pagination ul.page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none !important;
  background-color: #fff;
  transition: all 0.2s ease;
}
.woocommerce-pagination ul.page-numbers li span.current,
.woocommerce-pagination ul.page-numbers li a:hover {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ── WooCommerce Ordering selector overrides ── */
.woocommerce-ordering select {
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.5rem 2rem 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2313211d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") no-repeat right 12px center/14px;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  min-width: 200px;
}
.woocommerce-ordering select:focus {
  border-color: var(--primary);
}
.woocommerce-result-count {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ── WooCommerce Customer Login & Registration Layout ── */
.woocommerce-account .woocommerce {
  max-width: 1000px;
  margin: 2rem auto 4rem;
}
.u-columns.col2-set {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 1.5rem;
}
.u-column1, .u-column2 {
  background: #fff;
  padding: 2.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.u-column1 h2, .u-column2 h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
}
.woocommerce-form-row {
  margin-bottom: 1.25rem !important;
}
.woocommerce-form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.woocommerce-form-login__rememberme {
  margin-top: 1rem;
}
.woocommerce-form-login__submit, .woocommerce-form-register__submit {
  width: 100%;
  margin-top: 1.25rem;
}

/* ── WooCommerce My Account Navigation Dashboard ── */
.woocommerce-account .woocommerce {
  max-width: 1200px;
  margin: 3rem auto 5rem;
}

.woocommerce-account .woocommerce::after {
  content: "";
  display: table;
  clear: both;
}

.woocommerce-MyAccount-navigation {
  float: left;
  width: 22%;
  box-sizing: border-box;
  background: #fff;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.35rem;
}

.woocommerce-MyAccount-navigation ul li {
  margin: 0;
}

.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 8px;
  background-color: transparent;
  color: var(--text-muted) !important;
  text-decoration: none !important;
  transition: all 0.2s ease;
  text-align: left;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
  background-color: rgba(15, 77, 69, 0.06);
  color: var(--primary) !important;
}

.woocommerce-MyAccount-content {
  float: right;
  width: 74%;
  box-sizing: border-box;
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* ── WooCommerce Checkout Page styling ── */
.checkout-page-wrapper {
  margin-bottom: 4rem;
}
.woocommerce-billing-fields__field-wrapper p.form-row {
  margin-bottom: 1.25rem;
}
.woocommerce-billing-fields__field-wrapper p.form-row label {
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
  display: block;
}
.checkout-summary-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}
table.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}
table.woocommerce-checkout-review-order-table th, 
table.woocommerce-checkout-review-order-table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
table.woocommerce-checkout-review-order-table td.product-name {
  color: var(--text-muted);
}
table.woocommerce-checkout-review-order-table td.product-total {
  font-weight: 700;
  text-align: right;
}
#payment {
  background: #fafaf8;
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid var(--border);
}
#payment ul.payment_methods {
  list-style: none;
  padding: 0;
  margin: 0;
}
#payment ul.payment_methods li {
  margin-bottom: 0.75rem;
}
#payment ul.payment_methods li label {
  font-weight: 700;
  font-size: 0.85rem;
  margin-left: 0.5rem;
  cursor: pointer;
}
#place_order {
  width: 100%;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .u-columns.col2-set {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .woocommerce-MyAccount-navigation ul {
    flex-direction: column;
    gap: 0.35rem;
  }
  .woocommerce-MyAccount-navigation ul li a {
    width: 100%;
    text-align: center;
  }
}

/* ── WooCommerce Single Product Detail Redesign ── */
.product-detail-page {
  padding: 3rem 0 5rem;
}
.wc-breadcrumb {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 600;
}
.wc-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none !important;
}
.wc-breadcrumb a:hover {
  color: var(--primary);
}
.bc-sep {
  margin: 0 0.5rem;
  color: var(--accent);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.product-detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product-detail-image-area {
  position: relative;
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.product-detail-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-detail-main-img:hover {
  transform: scale(1.03);
}

.product-detail-thumb-strip {
  display: flex;
  gap: 0.75rem;
}
.thumb-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  background-color: #fff;
  transition: all 0.2s ease;
}
.thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb-wrapper.active-thumb, .thumb-wrapper:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.product-detail-info {
  display: flex;
  flex-direction: column;
}

/* Styled WooCommerce Add to Cart form inside single product */
.product-detail-info form.cart {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.product-detail-info form.cart table.variations {
  width: 100%;
  border: none;
  background: none;
  box-shadow: none;
}
.product-detail-info form.cart table.variations td {
  border: none;
  padding: 0.5rem 0;
}
.product-detail-info form.cart table.variations td.label {
  width: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text);
  vertical-align: middle;
}
.product-detail-info form.cart table.variations select {
  font-family: inherit;
  font-size: 0.85rem;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  width: 100%;
  max-width: 300px;
}

/* Quantity inputs */
.woocommerce-variation-add-to-cart,
.product-detail-info form.cart .quantity {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.product-detail-info form.cart .quantity input.qty {
  width: 60px;
  height: 42px;
  padding: 0.5rem;
  text-align: center;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
}

/* Custom comments and reviews design */
.product-reviews-section ol.commentlist {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.product-reviews-section ol.commentlist li {
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.comment-text {
  margin: 0;
}
.comment-text .meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.comment-text .description {
  font-size: 0.9rem;
  color: var(--text);
}

@media (max-width: 768px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .woocommerce-account .woocommerce {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .woocommerce-MyAccount-navigation ul {
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
  }
  .woocommerce-MyAccount-navigation ul::-webkit-scrollbar {
    display: none;
  }
  .woocommerce-MyAccount-navigation ul li a {
    white-space: nowrap;
  }
  .woocommerce-MyAccount-content {
    padding: 1.5rem;
  }
}

/* ── Global WooCommerce Square Image overrides ── */
.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img,
.product-grid img,
.premium-card-image,
.woocommerce_thumbnail,
.attachment-woocommerce_thumbnail,
.woocommerce-product-gallery__image img {
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 8px !important;
}



