/*
Theme Name: SWIM Elite (Blocksy child)
Theme URI: https://wp-dev.swimelitecr.com
Description: Custom child theme for SWIM Elite swim retail. Overrides WC templates for athletic feel. AB#170.
Author: SWIM Elite
Version: 1.0.3
Template: blocksy
Text Domain: swim-elite
*/

/* === DESIGN TOKENS === */
:root {
  --se-navy:        #0F3451;
  --se-navy-dark:   #0A2740;
  --se-navy-deeper: #051726;
  --se-orange:      #E84C1E;
  --se-orange-hover:#C73E15;
  --se-gold:        #C8B273;
  --se-gray-50:     #FAFBFC;
  --se-gray-100:    #F3F5F7;
  --se-gray-200:    #E5E7EB;
  --se-gray-300:    #CBD2D9;
  --se-gray-500:    #6B7280;
  --se-gray-700:    #374151;

  --se-font-display: "Inter", system-ui, -apple-system, sans-serif;
  --se-font-body:    "Inter", system-ui, -apple-system, sans-serif;

  --theme-palette-color-1: #0F3451;
  --theme-palette-color-2: #0A2740;
  --theme-palette-color-3: #E84C1E;
}

/* === RESET / GLOBAL === */
body {
  font-family: var(--se-font-body);
  font-feature-settings: "ss01", "cv01";
  -webkit-font-smoothing: antialiased;
  color: var(--se-gray-700);
}

/* === UTILITY BAR === */
.se-utility-bar {
  background: var(--se-navy-deeper);
  color: rgba(255,255,255,0.92);
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
}
.se-utility-bar a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.4); }
.se-utility-bar a:hover { border-color: var(--se-orange); }
.se-utility-bar .sep { margin: 0 14px; opacity: 0.4; }
@media (max-width: 640px) {
  .se-utility-bar { font-size: 11px; padding: 8px 12px; }
  .se-utility-bar .sep { margin: 0 8px; }
}

/* === HERO === */
.wp-block-cover.alignfull,
.wp-block-cover {
  font-family: var(--se-font-display);
}
.home .wp-block-cover h1 {
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
  font-size: clamp(48px, 12vw, 140px) !important;
  line-height: 0.95 !important;
  text-transform: uppercase;
}
.home .wp-block-cover .wp-block-paragraph,
.home .wp-block-cover p {
  font-weight: 600;
}

/* Hero buttons - tall and confident */
.home .wp-block-cover .wp-block-button__link {
  padding: 22px 44px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  border-radius: 2px !important;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.home .wp-block-cover .wp-block-button__link:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* === HEADER === */
.wp-block-site-title a {
  color: var(--se-navy) !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em !important;
  font-size: 22px !important;
  text-transform: uppercase;
}

/* === BENTO CATEGORIES GRID === */
.se-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 8px;
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .se-cat-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 320px 320px;
    gap: 12px;
    padding: 0 24px;
  }
  /* Bento asymmetric: tile 0 spans 2 rows (left-tall), 1 normal, 2 normal, 3 normal-tall, 4-5 normal */
  .se-cat-grid .se-cat-tile:nth-child(1) {
    grid-row: 1 / span 2;
  }
}
.se-cat-tile {
  position: relative;
  display: block;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  background-color: var(--se-navy);
  overflow: hidden;
  border-radius: 4px;
  text-decoration: none;
  isolation: isolate;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 768px) {
  .se-cat-tile { aspect-ratio: auto; height: 100%; }
}
.se-cat-tile:hover { transform: translateY(-2px); }
.se-cat-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,52,81,0.05) 0%, rgba(5,23,38,0.85) 100%);
  z-index: 1;
  transition: opacity 300ms ease;
}
.se-cat-tile:hover .se-cat-tile-overlay {
  background: linear-gradient(180deg, rgba(15,52,81,0.2) 0%, rgba(5,23,38,0.95) 100%);
}
.se-cat-tile-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  color: #fff;
}
@media (min-width: 768px) {
  .se-cat-tile-content { padding: 32px; }
  .se-cat-tile:nth-child(1) .se-cat-tile-content { padding: 40px; }
}
.se-cat-tile-sub {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 8px;
  color: var(--se-gold);
}
.se-cat-tile-title {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.0;
  margin: 0 0 12px;
  color: #fff !important;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .se-cat-tile-title { font-size: 32px; }
  .se-cat-tile:nth-child(1) .se-cat-tile-title { font-size: 56px; }
}
.se-cat-tile-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.9;
  transition: gap 200ms ease;
}
.se-cat-tile:hover .se-cat-tile-cta { gap: 14px; opacity: 1; }
.se-cat-tile-cta::after { content: "→"; font-size: 16px; }

/* Hide default WC categories block */
.wp-block-woocommerce-product-categories,
.wp-block-product-categories,
.wp-block-categories { display: none !important; }

/* === BRAND RAIL === */
.se-brand-rail {
  background: var(--se-gray-50);
  padding: 56px 16px;
  border-top: 1px solid var(--se-gray-200);
  border-bottom: 1px solid var(--se-gray-200);
  margin: 80px 0;
  text-align: center;
}
.se-brand-rail-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--se-gray-500);
  margin: 0 0 32px;
}
.se-brand-rail-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 56px;
  max-width: 1200px;
  margin: 0 auto;
}
.se-brand-name {
  font-family: var(--se-font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--se-navy);
  opacity: 0.4;
  transition: opacity 250ms ease;
  white-space: nowrap;
}
.se-brand-name:hover { opacity: 1; }
@media (max-width: 768px) {
  .se-brand-rail { padding: 32px 16px; margin: 48px 0; }
  .se-brand-rail-inner { gap: 16px 32px; }
  .se-brand-name { font-size: 14px; letter-spacing: 0.1em; }
}

/* === PRODUCT CARDS (refactored — overrides default WC) === */
ul.products li.product,
.wc-block-grid__product {
  position: relative;
  list-style: none;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
ul.products li.product:hover,
.wc-block-grid__product:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 52, 81, 0.10);
}

/* Image wrapper for hover swap */
.se-product-image-wrap {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--se-gray-100);
}
.se-product-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 350ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.se-product-image-secondary {
  opacity: 0;
}
.se-product-image-wrap:hover .se-product-image-primary { opacity: 0; }
.se-product-image-wrap:hover .se-product-image-secondary { opacity: 1; transform: scale(1.04); }

/* Product card body */
.se-product-body {
  padding: 16px 4px 8px;
}
.se-product-category {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--se-gray-500);
  margin-bottom: 6px;
}
.woocommerce-loop-product__title,
.se-product-title {
  font-family: var(--se-font-display);
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  color: var(--se-navy) !important;
  margin: 0 0 6px !important;
  padding: 0 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.se-product-price,
ul.products li.product .price {
  font-family: var(--se-font-display);
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--se-navy) !important;
  letter-spacing: -0.01em;
}
.se-product-price del,
ul.products li.product .price del {
  color: var(--se-gray-500) !important;
  font-weight: 400 !important;
  margin-right: 6px;
  font-size: 12px;
}
.se-product-price ins,
ul.products li.product .price ins {
  color: var(--se-orange) !important;
  text-decoration: none;
  font-weight: 700 !important;
}

/* Quick-add button — appears on hover (desktop) / always (mobile) */
.se-quick-add {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 4;
  width: 40px;
  height: 40px;
  background: var(--se-navy);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.se-product-image-wrap:hover .se-quick-add,
ul.products li.product:hover .se-quick-add {
  opacity: 1;
  transform: translateY(0);
}
.se-quick-add:hover {
  background: var(--se-orange);
  transform: scale(1.08);
}
@media (max-width: 768px) {
  .se-quick-add { opacity: 1; transform: none; }
}

/* === PILLS / BADGES (outline style — like A3) === */
.se-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.se-badges-left, .se-badges-right { display: flex; gap: 6px; }
.se-badge {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  font-family: var(--se-font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(15, 52, 81, 0.15);
  color: var(--se-navy);
}
.se-badge--fina {
  background: rgba(15, 52, 81, 0.92);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
  letter-spacing: 0.18em;
}
.se-badge--new {
  background: rgba(232, 76, 30, 0.92);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.se-badge--sale {
  background: rgba(220, 38, 38, 0.92);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}

/* === ARCHIVE / CATEGORY PAGE === */
.se-category-hero {
  background: var(--se-navy);
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 16px;
  text-align: center;
  margin-bottom: 32px;
  isolation: isolate;
}
.se-category-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,23,38,0.4) 0%, rgba(15,52,81,0.85) 100%);
  z-index: -1;
}
.se-category-hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--se-gold);
  margin-bottom: 8px;
}
.se-category-hero h1 {
  font-family: var(--se-font-display);
  font-size: clamp(40px, 8vw, 80px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em !important;
  line-height: 1 !important;
  color: #fff !important;
  margin: 0 !important;
  text-transform: uppercase;
}
.se-category-hero-desc {
  max-width: 600px;
  margin: 16px auto 0;
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.5;
}

/* WooCommerce product grid — override default columns */
ul.products {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 12px !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}
@media (min-width: 768px) {
  ul.products { grid-template-columns: repeat(3, 1fr) !important; gap: 20px !important; }
}
@media (min-width: 1280px) {
  ul.products { grid-template-columns: repeat(4, 1fr) !important; gap: 24px !important; }
}
ul.products li.product { width: 100% !important; margin: 0 !important; padding: 0 !important; float: none !important; }

/* Hide default WC stuff we replaced */
ul.products li.product .button,
ul.products li.product .added_to_cart,
ul.products li.product .onsale {
  display: none !important;
}

/* === SINGLE PRODUCT === */
.single-product .product .price {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: var(--se-navy) !important;
  letter-spacing: -0.02em;
}
.single-product .product_title {
  font-size: clamp(28px, 4vw, 42px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.025em !important;
  color: var(--se-navy) !important;
  text-transform: none !important;
}
.single-product .single_add_to_cart_button {
  background: var(--se-navy) !important;
  color: #fff !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.18em !important;
  padding: 18px 36px !important;
  border-radius: 2px !important;
  transition: all 200ms ease !important;
  font-size: 13px !important;
}
.single-product .single_add_to_cart_button:hover {
  background: var(--se-orange) !important;
  transform: translateY(-1px);
}

/* === CUSTOM FOOTER === */
.se-footer {
  background: var(--se-navy-deeper);
  color: rgba(255,255,255,0.75);
  padding: 80px 16px 0;
  margin-top: 120px;
}
.se-footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
@media (min-width: 768px) {
  .se-footer-inner {
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 56px;
  }
}
.se-footer h3 {
  font-family: var(--se-font-display);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.se-footer h4 {
  font-family: var(--se-font-display);
  color: var(--se-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.se-footer p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.68);
  max-width: 360px;
}
.se-footer ul { list-style: none; margin: 0; padding: 0; }
.se-footer ul li { margin: 0 0 12px; font-size: 14px; }
.se-footer a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 150ms ease;
}
.se-footer a:hover { color: var(--se-orange); }
.se-footer-contact a { display: inline-block; }
.se-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

body .ct-footer:not(.se-footer) { display: none !important; }

/* === HIDE PAGE TITLE ON HOMEPAGE === */
.home .page-title,
.home .ct-page-title,
.home [data-id="hero"],
.home .entry-header,
.home .ct-breadcrumbs { display: none !important; }

/* === STICKY HEADER SHRINK === */
.ct-header,
header.site-header {
  transition: padding 250ms ease, box-shadow 250ms ease, background 250ms ease;
}
.ct-header.is-shrunk,
header.site-header.is-shrunk {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  box-shadow: 0 4px 16px rgba(15,52,81,0.08);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
}

/* === ATHLETES GRID === */
.se-athletes-grid {
  padding: 64px 16px;
  background: var(--se-gray-50);
}
.se-athletes-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .se-athletes-inner { grid-template-columns: repeat(3, 1fr); }
}
.se-athlete { margin: 0; }
.se-athlete-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--se-navy) 0%, var(--se-navy-dark) 100%);
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  margin-bottom: 16px;
}
.se-athlete figcaption strong {
  display: block;
  color: var(--se-navy);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.se-athlete figcaption span {
  display: block;
  color: var(--se-gray-500);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* =================================================================
   SWIM Elite Child Theme — Zero-Friction Patch CSS (2026-05-09)
   Buy Now Express button + Mobile sticky bar + Checkout trust row.
   Append to style.css (do not replace).
   ================================================================= */

/* ---------------- A. BUY NOW EXPRESS BUTTON ---------------------- */
.woocommerce div.product form.cart .se-buy-now {
  display: inline-block;
  margin-left: 8px;
  background: #0F3451 !important;
  color: #fff !important;
  border: 2px solid #0F3451 !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 14px !important;
  padding: 14px 22px !important;
  border-radius: 4px !important;
  transition: transform 120ms ease, background 120ms ease;
}
.woocommerce div.product form.cart .se-buy-now:hover {
  background: #18476d !important;
  border-color: #18476d !important;
  transform: translateY(-1px);
}

/* On mobile: stack buttons full-width for fat-finger thumb tap */
@media (max-width: 640px) {
  .woocommerce div.product form.cart {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .woocommerce div.product form.cart .single_add_to_cart_button,
  .woocommerce div.product form.cart .se-buy-now {
    width: 100%;
    margin-left: 0 !important;
    text-align: center;
  }
  .woocommerce div.product form.cart .quantity {
    margin-bottom: 8px;
  }
}

/* ---------------- B. STICKY MOBILE ACTION BAR -------------------- */
.se-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0F3451;
  display: none; /* hidden on desktop */
  justify-content: space-around;
  align-items: stretch;
  padding: 8px env(safe-area-inset-right) calc(8px + env(safe-area-inset-bottom)) env(safe-area-inset-left);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 900px) {
  .se-mobile-bar {
    display: flex;
  }
  /* Push body content above the sticky bar so footer is reachable */
  body { padding-bottom: 78px !important; }
}

.se-mb-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 4px;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  min-height: 44px; /* WCAG 2.5.5 target size */
}
.se-mb-item:hover, .se-mb-item:focus { color: #fff; opacity: 0.9; }
.se-mb-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.se-mb-label { line-height: 1; }

/* WhatsApp tinted green */
.se-mb-wa { color: #25D366; }
.se-mb-wa:hover, .se-mb-wa:focus { color: #25D366; opacity: 0.9; }

/* Cart badge counter */
.se-mb-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #E84C1E;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

/* ---------------- C. CHECKOUT TRUST ROW -------------------------- */
.se-trust-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 18px 0 22px;
  padding: 18px 14px;
  background: #f6f7fa;
  border: 1px solid #e1e4ec;
  border-radius: 10px;
}
@media (min-width: 640px) {
  .se-trust-row {
    grid-template-columns: repeat(4, 1fr);
  }
}
.se-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.se-trust-icon {
  flex: 0 0 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #d8dde6;
  color: #0F3451;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.se-trust-text {
  font-size: 12px;
  line-height: 1.35;
  color: #4a5667;
}
.se-trust-text strong {
  display: block;
  color: #0F3451;
  font-weight: 700;
  font-size: 13px;
}

/* === CONTRAST POLISH (2026-05-09) === */
/* Stronger fallback + overlay on category tiles to prevent low-contrast text on light images */
.se-cat-tile {
  background-color: var(--se-navy) !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.se-cat-tile-overlay {
  background: linear-gradient(180deg, rgba(15,52,81,0.20) 0%, rgba(5,23,38,0.92) 100%) !important;
}
.se-cat-tile-cta {
  background: rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
}

/* Hero image: anchor focal toward athlete for mobile */
@media (max-width: 640px) {
  .wp-block-cover__image-background {
    object-position: 60% 30% !important;
  }
}

/* ===================================================


/* ===================================================
   Variant selectors — SWIM Elite PDP
   WooCommerce variation dropdowns
   =================================================== */
.variations select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #0F3451;
  border-radius: 8px;
  font-size: 16px;
  color: #0F3451;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><polyline points='6 9 12 15 18 9' fill='none' stroke='%230F3451' stroke-width='2'/></svg>");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 18px;
  padding-right: 40px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.variations select:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
}
.variations_form .reset_variations {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  color: #0F3451;
  text-decoration: underline;
}
.variations td.label label {
  font-weight: 600;
  color: #0F3451;
  font-size: 15px;
}
