/*
Theme Name: Atelier Maison 5472
Theme URI: https://5472am.com
Description: Minimal, clean WordPress theme for Atelier Maison 5472
Version: 1.0
Author: Lenny
Author URI: https://digital-reach.co.za
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: atelier-maison
Domain Path: /languages
*/

:root {
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Jost', sans-serif;
  --mono: 'Space Mono', monospace;
  --white: #ffffff;
  --off: #f8f6f3;
  --ink: #111111;
  --taupe: #9e8a77;
  --accent: #c9a27c;
  --deep: #5c4a38;
}

/* UNIFORM CUSTOM CURSOR - GLOBAL - ULTRA MAXIMUM PRIORITY */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background: #ffffff;
  color: #111111;
  font-family: var(--sans);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 400;
}

a {
  color: #111111;
  text-decoration: none;
}

a:hover {
  color: #9e8a77;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  loading: lazy;
  decoding: async;
}

/* Picture element responsive images */
picture {
  display: block;
}

picture img {
  width: 100%;
  height: auto;
}

/* Responsive images in containers */
.wp-block-image img,
.wp-image {
  max-width: 100%;
  height: auto;
}

/* Gallery and media library images */
.gallery img,
.wp-caption img,
figure img {
  width: 100%;
  height: auto;
  display: block;
}

p {
  margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */

.button, button, input[type="button"], input[type="submit"] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #111111;
  color: white;
  border: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.button:hover, button:hover {
  background: #9e8a77;
}

.button.secondary {
  background: #9e8a77;
}

.button.secondary:hover {
  background: #111111;
}

/* ═══════════════════════════════════════════════════
   WOOCOMMERCE BASICS
═══════════════════════════════════════════════════ */

.woocommerce {
  background: #ffffff;
}

.woocommerce-message, .woocommerce-error {
  padding: 1rem;
  margin: 1rem 0;
  background: #f8f6f3;
  border-left: 4px solid #c9a27c;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */

/* ═══════════════════════════════════════
   HOMEPAGE DESIGN — Thebe Magugu / ALD inspired
   Editorial, animations, product showcase
═══════════════════════════════════════ */

/* ANIMATION BASE STATES */
.r { opacity: 0; transform: translateY(44px); will-change: opacity, transform; }
.r-l { opacity: 0; transform: translateX(-50px); will-change: opacity, transform; }
.r-r { opacity: 0; transform: translateX(50px); will-change: opacity, transform; }
.r-s { opacity: 0; transform: scale(0.96); will-change: opacity, transform; }

/* BUTTONS */
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #111111;
  transition: opacity 0.25s;
  background: none;
  border: none;
}
.btn-line::after {
  content: '';
  display: block;
  width: 32px;
  height: 0.5px;
  background: #111111;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-line:hover::after { width: 56px; }
.btn-line:hover { opacity: 0.6; }

.btn-solid {
  display: inline-block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  background: #111111;
  color: white;
  border: 2px solid var(--accent);
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(201, 162, 124, 0.2);
  cursor: pointer;
}
.btn-solid:hover { 
  background: var(--accent);
  color: #111111;
  box-shadow: 0 4px 12px rgba(201, 162, 124, 0.3);
}

.btn-ghost {
  display: inline-block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  background: transparent;
  color: #111111;
  border: 0.5px solid #111111;
  transition: background 0.3s, color 0.3s;
}
.btn-ghost:hover { background: #111111; color: white; }

/* HERO SECTION */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: calc(100vh - 52px - 32px);
  min-height: 560px;
}
.hero__panel {
  position: relative;
  overflow: hidden;
}
.hero__panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
.hero__panel:hover .hero__panel-img { transform: scale(1.04); }

.hero__panel--left {
  border-right: 0.5px solid rgba(0, 0, 0, 0.08);
}
.hero__panel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 2rem 2.2rem;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.6) 60%, transparent 100%);
}
.hero__panel-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.1;
  color: #111111;
}

.hero__panel--right {
  display: grid;
  grid-template-rows: 1fr 1fr;
}
.hero__sub-panel {
  position: relative;
  overflow: hidden;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
}
.hero__sub-panel:last-child { border-bottom: none; }
.hero__sub-panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
.hero__sub-panel:hover .hero__sub-panel-img { transform: scale(1.05); }
.hero__sub-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 1.6rem;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.92) 0%, transparent 100%);
}
.hero__sub-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.3rem;
  color: #111111;
  line-height: 1.1;
}

/* STATEMENT */
.statement {
  padding: 3.5rem 2rem;
  border-top: 0.5px solid rgba(0, 0, 0, 0.08);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.statement__text {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  color: #111111;
  max-width: 800px;
}

/* PRODUCT STORIES */
.product-stories { border-bottom: 0.5px solid rgba(0, 0, 0, 0.08); }

.story-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  border-top: 0.5px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.story-item:nth-child(even) { direction: rtl; }
.story-item:nth-child(even) > * { direction: ltr; }

.story-item__img {
  position: relative;
  overflow: hidden;
}
.story-item__img-inner {
  width: 100%;
  height: 100%;
  min-height: 500px;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-item__img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.story-item:hover .story-item__img-inner { transform: scale(1.02); opacity: 0; }

.story-item__img-alt {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 500px;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.5s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.04);
}
.story-item:hover .story-item__img-alt { opacity: 1; transform: scale(1.0); }

.story-item__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem 3.5rem;
  border-left: 0.5px solid rgba(0, 0, 0, 0.08);
}
.story-item:nth-child(even) .story-item__content {
  border-left: none;
  border-right: 0.5px solid rgba(0, 0, 0, 0.08);
}

.story-item__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.05;
  color: #111111;
}
.story-item__desc {
  font-size: 13px;
  line-height: 2;
  color: #888077;
  margin-top: 1.4rem;
  max-width: 360px;
  font-weight: 300;
}
.story-item__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 0.5px solid rgba(0, 0, 0, 0.08);
  padding-top: 1.4rem;
  margin-top: 2rem;
}
.story-item__price {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: #111111;
}


/* ═══════════════════════════════════════════════════
   GLOBAL IMAGE STYLING - ALL PAGES
═══════════════════════════════════════════════════ */

/* All images by default */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Images inside containers should fill & cover */
a img, picture img, figure img {
  width: 100%;
  height: auto;
  display: block;
}

/* Product images on shop grid */
li.product .woocommerce-loop-product__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Single product gallery images */
.woocommerce-product-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Blog featured images */
.post-thumbnail img,
.entry-content img,
article img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 2px;
}

/* Homepage hero images */
.hero__panel-img,
.hero__sub-panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Founder page images */
.founder-image img,
.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════
   WOOCOMMERCE PRODUCT GRID
═══════════════════════════════════════════════════ */

/* WOOCOMMERCE PRODUCT GRID - Remove legacy float/width conflicts */
ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  padding: 0;
  list-style: none;
}

/* CRITICAL: Override WooCommerce default float/width styles */
li.product {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  overflow: hidden;
  width: auto !important;
  float: none !important;
  clear: none !important;
  margin-right: 0 !important;
}

/* Ensure WooCommerce column classes don't interfere */
ul.products.columns-1 li.product,
ul.products.columns-2 li.product,
ul.products.columns-3 li.product,
ul.products.columns-4 li.product,
ul.products.columns-5 li.product {
  width: auto !important;
  float: none !important;
  clear: none !important;
  margin-right: 0 !important;
}

li.product .woocommerce-loop-product__title,
li.product .price,
li.product .woocommerce-loop-category__title {
  margin: 1rem 0 0 0;
  padding: 0;
  display: block;
}

li.product .woocommerce-loop-product__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.5;
  color: #111111;
  margin-top: 1.5rem;
  margin-bottom: 0.7rem;
}

li.product .price {
  font-family: var(--sans);
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 0.7rem;
  margin-bottom: 1.2rem;
}

li.product .woocommerce-loop-product__link {
  display: block;
  overflow: hidden;
  flex-grow: 1;
  max-height: 450px;
  min-height: 450px;
  background: #f8f6f3;
}

li.product .woocommerce-loop-product__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

li.product .button {
  margin-top: 1rem;
  margin-bottom: 0;
  border: 2px solid var(--accent);
  box-shadow: 0 2px 6px rgba(201, 162, 124, 0.15);
  transition: all 0.3s;
}

li.product .button:hover {
  background: var(--accent);
  box-shadow: 0 4px 10px rgba(201, 162, 124, 0.25);
}

/* Product image alt swap on hover */
li.product:hover .woocommerce-loop-product__link img:first-child {
  opacity: 0;
}

/* SHOP PAGE - ALD INSPIRED FULL-WIDTH LAYOUT */
.shop-page {
  min-height: calc(100vh - 400px);
}

.shop-header {
  padding: 4rem 2rem;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}

.shop-header__title {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}

.shop-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

/* HIDE ALL SIDEBARS - WordPress + WooCommerce (Multiple selectors for different themes) */
#sidebar,
.sidebar,
.woocommerce-sidebar,
.primary-sidebar,
aside.sidebar,
.widget-area {
  display: none !important;
}

/* Ensure content takes full width when sidebar is hidden */
#primary,
.primary,
.woocommerce .content-area,
.site-content,
.woocommerce-page .content-area {
  width: 100% !important;
  float: none !important;
  clear: both !important;
}

/* Hide WooCommerce default sidebar classes */
.woocommerce-sidebar,
.woocommerce-after-single-product-summary {
  display: none !important;
}

/* SHOP PAGE CONTROLS - SORT & FILTER */
.woocommerce-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  gap: 2rem;
}

.woocommerce-result-count {
  display: none;
}

.woocommerce-toolbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.woocommerce-toolbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hide default WooCommerce ordering wrapper */
.woocommerce-ordering {
  margin: 0;
  padding: 0;
  border: none;
}

/* Ensure sort dropdown is visible in toolbar */
.woocommerce-ordering select {
  margin: 0;
}

/* SORT DROPDOWN */
.woocommerce-ordering select,
.woocommerce-sorting select {
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  background: #ffffff;
  color: var(--ink);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.woocommerce-ordering select:hover,
.woocommerce-sorting select:hover {
  border-color: var(--accent);
}

/* REFINE BUTTON */
.woocommerce-filter-toggle,
.filter-toggle-btn {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.woocommerce-filter-toggle:hover,
.filter-toggle-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(201, 162, 124, 0.05);
}

/* FILTER PANEL - COLLAPSIBLE */
.woocommerce-filter-panel,
.filter-panel {
  position: fixed;
  top: 52px;
  right: -400px;
  width: 400px;
  height: calc(100vh - 52px);
  background: #ffffff;
  box-shadow: -2px 0 8px rgba(0,0,0,0.1);
  padding: 2rem;
  overflow-y: auto;
  transition: right 0.4s ease;
  z-index: 1000;
  border-left: 1px solid #e0e0e0;
}

.filter-panel.active {
  right: 0;
}

/* Filter Panel Overlay */
.filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
  z-index: 999;
  display: none;
  transition: opacity 0.3s;
}

.filter-overlay.active {
  display: block;
}

.filter-panel-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--ink);
}

.filter-panel-header {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 2rem;
  padding-top: 1rem;
}

/* FILTER GROUPS */
.woocommerce-widget-layered-nav,
.filter-group {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-group h3,
.woocommerce-widget-layered-nav h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.filter-group h3::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--taupe);
  transition: transform 0.3s;
}

.filter-group h3.collapsed::after {
  transform: rotate(45deg);
  content: '−';
}

.filter-options,
.filter-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.filter-options li,
.filter-group ul li {
  margin: 0;
}

.filter-options label,
.filter-group ul li label {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: color 0.3s;
}

.filter-options label:hover,
.filter-group ul li label:hover {
  color: var(--accent);
}

.filter-options input[type="checkbox"],
.filter-group ul li input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--accent);
}

/* FILTER OVERLAY */
.filter-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 999;
}

.filter-overlay.active {
  display: block;
}

@media (max-width: 768px) {
  ul.products {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
  }
  
  li.product .woocommerce-loop-product__title {
    font-size: 1.2rem;
    margin-top: 1rem;
  }
  
  li.product .price {
    font-size: 0.9rem;
  }
  
  li.product .woocommerce-loop-product__link {
    max-height: 400px;
  }
  
  li.product .button {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  ul.products {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0.8rem;
  }
  
  li.product {
    margin-bottom: 0.5rem;
  }
  
  li.product .woocommerce-loop-product__title {
    font-size: 1rem;
    line-height: 1.3;
    margin-top: 0.8rem;
    margin-bottom: 0.4rem;
  }
  
  li.product .price {
    font-size: 0.85rem;
    margin-top: 0.3rem;
  }
  
  li.product .woocommerce-loop-product__link {
    max-height: 300px;
  }
  
  li.product .button {
    padding: 0.7rem 0.9rem;
    font-size: 0.8rem;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    height: auto;
  }
  .hero__panel--left { border-right: none; border-bottom: 0.5px solid rgba(0, 0, 0, 0.08); }
  
  .story-item {
    grid-template-columns: 1fr;
  }
  .story-item:nth-child(even) { direction: ltr; }
  .story-item__content { border-left: 0.5px solid rgba(0, 0, 0, 0.08); border-right: none; }
}

/* ═══════════════════════════════════════════════════
   WOOCOMMERCE - CART, CHECKOUT, RESPONSIVE
═══════════════════════════════════════════════════ */

.woocommerce-message, .woocommerce-error, .woocommerce-info {
  padding: 1.2rem;
  margin: 1.5rem 0;
  background: #f8f6f3;
  border-left: 4px solid #c9a27c;
  border-radius: 2px;
  font-family: var(--sans);
  color: #111111;
}

.woocommerce-error { border-left-color: #d32f2f; background: #fff5f5; }

/* Cart Page */
.woocommerce-cart { background: #ffffff; padding: 2rem; }

.shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-family: var(--sans);
}

.shop_table thead th {
  background: #f8f6f3;
  padding: 1.2rem;
  text-align: left;
  font-weight: 600;
  color: #111111;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.shop_table tbody td {
  padding: 1.5rem 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: #111111;
  font-size: 0.95rem;
}

.shop_table tbody tr:hover { background: #f8f6f3; }

.shop_table img { max-width: 100px; height: auto; object-fit: cover; border-radius: 2px; }

.shop_table .product-name { font-family: var(--serif); font-size: 1.1rem; color: #111111; font-weight: 400; }

.shop_table .product-price { font-family: var(--sans); font-size: 0.95rem; color: #888077; font-weight: 500; }

.woocommerce .quantity input.qty {
  width: 60px;
  padding: 0.6rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  font-family: var(--sans);
  text-align: center;
  font-size: 0.95rem;
}

.woocommerce .quantity input.qty:focus { outline: none; border-color: #c9a27c; box-shadow: 0 0 0 3px rgba(201, 162, 124, 0.1); }

.shop_table .product-remove a { color: #d32f2f; font-size: 1.2rem; text-decoration: none; transition: opacity 0.3s; }

.shop_table .product-remove a:hover { opacity: 0.7; }

/* Cart Totals */
.cart-collaterals { margin-top: 2rem; }

.cart_totals {
  background: #f8f6f3;
  padding: 2rem;
  border-radius: 2px;
  max-width: 500px;
  margin-left: auto;
}

.cart_totals h2 { font-family: var(--serif); font-size: 1.6rem; color: #111111; margin-bottom: 1.5rem; font-weight: 400; }

.cart_totals table { width: 100%; margin-bottom: 1.5rem; }

.cart_totals tr { display: flex; justify-content: space-between; padding: 0.8rem 0; border-bottom: 1px solid rgba(0, 0, 0, 0.08); }

.cart_totals tr:last-child { border-bottom: none; padding-top: 1rem; padding-bottom: 1rem; font-size: 1.1rem; font-weight: 600; color: #111111; }

.cart_totals th, .cart_totals td { font-family: var(--sans); font-size: 0.95rem; color: #111111; padding: 0; text-align: right; border: none; }

.cart_totals th { text-align: left; font-weight: 500; color: #888077; }

/* Buttons */
.woocommerce input[type="button"], .woocommerce input[type="submit"], .woocommerce button, .woocommerce .button {
  background: #111111;
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  font-family: var(--serif);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
  letter-spacing: 0.01em;
}

.woocommerce input[type="button"]:hover, .woocommerce input[type="submit"]:hover, .woocommerce button:hover, .woocommerce .button:hover {
  background: #c9a27c;
  transform: translateY(-2px);
}

.woocommerce .woocommerce-proceed-to-checkout a {
  display: block;
  background: #111111 !important;
  color: #ffffff !important;
  padding: 1.2rem 2rem !important;
  text-align: center;
  font-family: var(--serif) !important;
  font-size: 1.1rem !important;
  text-decoration: none !important;
  border-radius: 2px !important;
  transition: all 0.3s ease !important;
  letter-spacing: 0.01em !important;
}

.woocommerce .woocommerce-proceed-to-checkout a:hover {
  background: #c9a27c !important;
  transform: translateY(-2px) !important;
}

/* Checkout Page */
.woocommerce-checkout { background: #ffffff; padding: 2rem; }

.woocommerce-checkout h1, .woocommerce-checkout h2, .woocommerce-checkout h3 {
  font-family: var(--serif);
  color: #111111;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.woocommerce-checkout h1 { font-size: 2rem; }

.woocommerce-checkout h2 { font-size: 1.5rem; border-bottom: 1px solid rgba(0, 0, 0, 0.08); padding-bottom: 1rem; }

.woocommerce-checkout form { max-width: 1200px; }

.woocommerce-checkout .form-row { margin-bottom: 1.5rem; }

.woocommerce-checkout label { display: block; font-family: var(--sans); font-size: 0.95rem; font-weight: 500; color: #111111; margin-bottom: 0.5rem; }

.woocommerce-checkout input[type="text"], .woocommerce-checkout input[type="email"], .woocommerce-checkout input[type="tel"], .woocommerce-checkout input[type="password"], .woocommerce-checkout textarea, .woocommerce-checkout select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: #111111;
  background: #ffffff;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.woocommerce-checkout input[type="text"]:focus, .woocommerce-checkout input[type="email"]:focus, .woocommerce-checkout input[type="tel"]:focus, .woocommerce-checkout textarea:focus, .woocommerce-checkout select:focus {
  outline: none;
  border-color: #c9a27c;
  box-shadow: 0 0 0 3px rgba(201, 162, 124, 0.1);
  background: #ffffff;
}

.woocommerce-checkout input::placeholder { color: #bbb8b2; }

.woocommerce-checkout .woocommerce-form__label-checkbox { display: flex; align-items: center; font-family: var(--sans); font-size: 0.9rem; color: #888077; }

/* Order Summary */
.woocommerce-checkout-review-order { background: #f8f6f3; padding: 2rem; border-radius: 2px; }

.woocommerce-checkout-review-order h3 { font-family: var(--serif); font-size: 1.4rem; color: #111111; margin-bottom: 1.5rem; font-weight: 400; }

.woocommerce-checkout-review-order table { width: 100%; margin-bottom: 1.5rem; }

.woocommerce-checkout-review-order thead th {
  background: transparent;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: #111111;
  text-align: left;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.woocommerce-checkout-review-order tbody td { padding: 0.8rem 0; border-bottom: 1px solid rgba(0, 0, 0, 0.08); font-family: var(--sans); font-size: 0.95rem; color: #111111; }

.woocommerce-checkout-review-order tfoot th, .woocommerce-checkout-review-order tfoot td {
  padding: 1rem 0;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: #111111;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}

/* Payment Methods */
.woocommerce-checkout ul.payment_methods { list-style: none; padding: 0; margin-bottom: 1.5rem; }

.woocommerce-checkout ul.payment_methods li {
  padding: 1rem;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
  background: #ffffff;
}

.woocommerce-checkout ul.payment_methods li:hover { border-color: #c9a27c; background: #f8f6f3; }

.woocommerce-checkout ul.payment_methods li label { margin-bottom: 0; cursor: pointer; font-family: var(--sans); font-size: 0.95rem; font-weight: 500; }

/* Place Order Button */
.woocommerce-checkout #place_order {
  background: #111111 !important;
  color: #ffffff !important;
  width: 100%;
  padding: 1.2rem 2rem !important;
  font-family: var(--serif) !important;
  font-size: 1.1rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
  text-transform: uppercase !important;
  border-radius: 2px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.woocommerce-checkout #place_order:hover {
  background: #c9a27c !important;
  transform: translateY(-2px) !important;
}

/* Thank You / Order */
.woocommerce-order { background: #ffffff; padding: 2rem; }

.woocommerce-order h1 { font-family: var(--serif); font-size: 2rem; color: #111111; font-weight: 400; letter-spacing: 0.01em; margin-bottom: 1.5rem; }

.woocommerce-order .woocommerce-thankyou-order-received { font-family: var(--sans); font-size: 1.1rem; color: #111111; margin-bottom: 2rem; padding: 1.5rem; background: #f8f6f3; border-left: 4px solid #c9a27c; border-radius: 2px; }

/* Tablet Responsive (768px) */
@media (max-width: 768px) {
  .woocommerce-cart, .woocommerce-checkout { padding: 1.5rem 1rem; }
  .shop_table { font-size: 0.9rem; }
  .shop_table thead th, .shop_table tbody td { padding: 0.8rem 0.5rem; }
  .shop_table img { max-width: 80px; }
  .woocommerce .quantity input.qty { width: 50px; font-size: 0.85rem; }
  .cart_totals { max-width: 100%; margin-left: 0; margin-top: 2rem; }
  .woocommerce-checkout h1 { font-size: 1.5rem; }
  .woocommerce-checkout h2 { font-size: 1.2rem; }
  .woocommerce-checkout label { font-size: 0.9rem; }
  .woocommerce-checkout input, .woocommerce-checkout textarea, .woocommerce-checkout select { font-size: 16px; }
  .woocommerce input[type="button"], .woocommerce input[type="submit"], .woocommerce button { padding: 0.9rem 1.5rem; font-size: 0.95rem; }
}

/* Mobile Responsive (480px) */
@media (max-width: 480px) {
  .woocommerce-cart, .woocommerce-checkout { padding: 1rem 0.8rem; }
  
  .shop_table, .shop_table thead, .shop_table tbody, .shop_table th, .shop_table td, .shop_table tr { display: block; width: 100%; }
  .shop_table thead { display: none; }
  .shop_table tbody tr { margin-bottom: 1.5rem; border: 1px solid rgba(0, 0, 0, 0.1); padding: 1rem; border-radius: 2px; background: #f8f6f3; }
  .shop_table td { padding: 0.5rem 0; border: none; display: flex; justify-content: space-between; }
  .shop_table img { max-width: 60px; }
  .woocommerce .quantity input.qty { width: 45px; font-size: 0.8rem; }
  
  .woocommerce-checkout h1 { font-size: 1.3rem; margin-bottom: 1.5rem; }
  .woocommerce-checkout h2 { font-size: 1.1rem; padding-bottom: 0.8rem; }
  .woocommerce-checkout h3 { font-size: 1rem; }
  
  .woocommerce-checkout .form-row.form-row-first, .woocommerce-checkout .form-row.form-row-last { width: 100% !important; clear: both !important; margin-right: 0 !important; }
  .woocommerce-checkout input, .woocommerce-checkout textarea, .woocommerce-checkout select { font-size: 16px; padding: 0.8rem; }
  
  .woocommerce input[type="button"], .woocommerce input[type="submit"], .woocommerce button { width: 100%; padding: 0.8rem 1rem; font-size: 0.95rem; }
  .woocommerce .woocommerce-proceed-to-checkout a { padding: 1rem !important; font-size: 1rem !important; }
  .woocommerce-checkout #place_order { width: 100% !important; padding: 1rem !important; font-size: 1rem !important; }
  
  .woocommerce-checkout-review-order { padding: 1.5rem; margin-top: 1.5rem; }
  .woocommerce-checkout-review-order h3 { font-size: 1.2rem; }
  
  .cart_totals { padding: 1.5rem; }
  .cart_totals h2 { font-size: 1.2rem; margin-bottom: 1rem; }
  
  .woocommerce-order { padding: 1.5rem 1rem; }
  .woocommerce-order h1 { font-size: 1.5rem; }
}

/* ═══════════════════════════════════════════════════
   CONTACT PAGE STYLING
═══════════════════════════════════════════════════ */

.contact-page {
  min-height: calc(100vh - 400px);
}

/* CONTACT HEADER */
.contact-header {
  padding: 4rem 2rem;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}

.contact-header__title {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.contact-header__subtitle {
  font-size: 1rem;
  color: var(--taupe);
  letter-spacing: 0.05em;
}

/* CONTACT CONTENT */
.contact-content {
  padding: 5rem 2rem;
  background: #ffffff;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* CONTACT FORM SECTION */
.contact-form-section {
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.contact-form-section h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--ink);
}

.contact-form-intro {
  font-size: 1rem;
  color: var(--taupe);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* CONTACT FORM FIELDS */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}

.form-control {
  padding: 0.85rem 1rem;
  border: 1px solid var(--accent);
  background: #ffffff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.95rem;
  border-radius: 2px;
  transition: all 0.3s;
  box-shadow: 0 2px 6px rgba(201, 162, 124, 0.12);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 162, 124, 0.15), 0 2px 8px rgba(201, 162, 124, 0.2);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
  font-family: var(--sans);
}

.contact-form button[type="submit"] {
  margin-top: 1.5rem;
}

/* CONTACT INFO SECTION */
.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-top: 0.5rem;
}

.contact-info-section h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0;
  color: var(--ink);
}

.contact-info-block {
  padding-bottom: 2.5rem;
  border-bottom: none;
}

.contact-info-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-info-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.7rem;
  font-weight: 500;
}

.contact-info-text {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.contact-info-text a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.3s;
  border-bottom: 1px solid rgba(0,0,0,0.2);
}

.contact-info-text a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.contact-info-desc {
  font-size: 0.9rem;
  color: var(--taupe);
  margin-top: 0.5rem;
  line-height: 1.6;
}

/* CONTACT FAQ LIST */
.contact-faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-faq-list li {
  margin: 0;
}

.contact-faq-list a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s;
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(0,0,0,0.2);
}

.contact-faq-list a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
  padding-left: 0.3rem;
}

/* CONTACT MAP */
.contact-map {
  width: 100%;
  margin-top: 4rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.contact-map iframe {
  display: block;
  width: 100%;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE - CONTACT PAGE
═══════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .contact-header {
    padding: 2.5rem 1rem;
  }

  .contact-header__title {
    font-size: 2rem;
  }

  .contact-header__subtitle {
    font-size: 0.95rem;
  }

  .contact-content {
    padding: 2rem 1rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-section {
    padding: 1.5rem;
  }

  .contact-form-section h2 {
    font-size: 1.6rem;
  }

  .contact-info-section {
    gap: 2.5rem;
  }

  .contact-info-section h2 {
    font-size: 1.6rem;
  }

  .form-control {
    padding: 0.85rem 0.9rem;
    font-size: 15px;
    min-height: 44px;
  }

  .form-textarea {
    min-height: 120px;
  }

  .contact-form button[type="submit"] {
    min-height: 44px;
    padding: 0.85rem 1.5rem;
  }

  .contact-map iframe {
    height: 300px;
  }
}

/* MOBILE - FILTER PANEL */
@media (max-width: 768px) {
  .shop-header {
    padding: 2.5rem 1.5rem;
  }

  .shop-header__title {
    font-size: 2rem;
  }

  .shop-content {
    padding: 1.5rem;
  }

  .woocommerce-toolbar {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1rem 0;
    margin-bottom: 2rem;
    gap: 1rem;
  }

  .woocommerce-toolbar-left {
    flex: 1 1 auto;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .woocommerce-toolbar-right {
    flex: 1 1 auto;
    justify-content: center;
    width: 100%;
  }

  .filter-panel {
    width: 85%;
    right: -85%;
  }

  .woocommerce-ordering select {
    font-size: 0.9rem;
    padding: 0.75rem 0.8rem;
    min-height: 40px;
  }

  .filter-toggle-btn {
    padding: 0.75rem 1rem;
    font-size: 9px;
    min-height: 40px;
    flex: 1;
    min-width: 100px;
  }
}

@media (max-width: 480px) {
  .woocommerce-toolbar {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    gap: 0.8rem;
  }

  .woocommerce-toolbar-left,
  .woocommerce-toolbar-right {
    flex: 1 1 auto;
    justify-content: center;
    width: 100%;
  }

  .woocommerce-ordering select {
    font-size: 14px;
    padding: 0.75rem 0.8rem;
    min-height: 44px;
    width: 100%;
  }

  .filter-toggle-btn {
    font-size: 9px;
    padding: 0.75rem 1rem;
    min-height: 44px;
    width: 100%;
  }

  .filter-panel {
    padding: 1.5rem;
    width: 100%;
  }

  .filter-panel-header {
    margin-bottom: 1.5rem;
  }

  .filter-group {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .contact-header {
    padding: 2rem 1rem;
  }

  .contact-header__title {
    font-size: 1.6rem;
  }

  .contact-header__subtitle {
    font-size: 0.9rem;
  }

  .contact-content {
    padding: 1.5rem 1rem;
  }

  .contact-wrapper {
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .contact-form-section {
    padding: 1.5rem 1rem;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
  }

  .contact-form-section h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .contact-form-intro {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .contact-form {
    gap: 1rem;
  }

  .form-group {
    gap: 0.4rem;
  }

  .form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink);
  }

  .form-control {
    padding: 0.9rem 0.8rem;
    font-size: 16px;
    min-height: 44px;
    border: 2px solid var(--accent);
    box-sizing: border-box;
  }

  .form-textarea {
    min-height: 120px;
    padding: 0.9rem 0.8rem;
    font-size: 16px;
  }

  .contact-form button[type="submit"] {
    padding: 0.9rem 1.5rem;
    font-size: 9px;
    min-height: 44px;
    margin-top: 1rem;
  }

  .contact-info-section {
    gap: 2rem;
    padding-top: 0;
  }

  .contact-info-section h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .contact-info-block {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .contact-info-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .contact-info-label {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .contact-info-text {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
  }

  .contact-info-text a {
    word-break: break-word;
  }

  .contact-info-desc {
    font-size: 0.85rem;
  }

  .contact-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-faq-list li {
    margin-bottom: 0;
  }

  .contact-faq-list a {
    font-size: 0.9rem;
  }

  .contact-map iframe {
    height: 250px;
  }
}

/* CONTACT FORM MESSAGE */
.form-message {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.95rem;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-message--success {
  background: #f0f9f0;
  border: 1px solid #c1e6c1;
  color: #2d5a2d;
}

.form-message--error {
  background: #fef0f0;
  border: 1px solid #e6c1c1;
  color: #5a2d2d;
}

/* ═══════════════════════════════════════════════════
   NEWSLETTER SUBSCRIPTION
═══════════════════════════════════════════════════ */

.footer-newsletter {
  padding: 4rem 2rem;
  background: var(--off);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.footer-newsletter h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.footer-newsletter > div > p:first-of-type {
  font-size: 0.95rem;
  color: var(--taupe);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--accent);
  position: relative;
}

.newsletter-input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid var(--accent);
  background: #ffffff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.95rem;
  border-radius: 2px;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(201, 162, 124, 0.15);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 162, 124, 0.1);
}

.newsletter-input::placeholder {
  color: rgba(17, 17, 17, 0.4);
}

.newsletter-btn {
  padding: 0.8rem 2rem;
  background: var(--ink);
  color: #ffffff;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--accent);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(201, 162, 124, 0.2);
}

.newsletter-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.newsletter-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* NEWSLETTER MESSAGES */
.newsletter-message {
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.95rem;
  animation: slideDown 0.3s ease;
  text-align: center;
}

.newsletter-message--success {
  background: #f0f9f0;
  border: 1px solid #c1e6c1;
  color: #2d5a2d;
}

.newsletter-message--error {
  background: #fef0f0;
  border: 1px solid #e6c1c1;
  color: #5a2d2d;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-newsletter {
    padding: 2.5rem 1.5rem;
  }

  .footer-newsletter h3 {
    font-size: 1.4rem;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 0.75rem;
  }

  .newsletter-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-newsletter {
    padding: 2rem 1rem;
  }

  .footer-newsletter h3 {
    font-size: 1.2rem;
  }

  .footer-newsletter > div > p:first-of-type {
    font-size: 0.9rem;
  }

  .newsletter-input {
    padding: 0.7rem 0.8rem;
    font-size: 16px;
  }

  .newsletter-btn {
    padding: 0.7rem 1.5rem;
    font-size: 10px;
  }
}

/* ═══════════════════════════════════════════════════
   WOOCOMMERCE CURRENCY SYMBOL FIX
   Fix currency symbol positioning (R before amount)
   ═══════════════════════════════════════════════════ */

.woocommerce-Price-amount bdi {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 2px;
}

.woocommerce-Price-currencySymbol {
  order: -1;
}

/* Ensure proper spacing and alignment */
.woocs_price_code {
  display: inline;
}

.woocommerce-Price-amount {
  font-family: 'Jost', sans-serif;
}
