/*
Theme Name: FlouRege Shop
Theme URI: https://magazin.flourege.ro
Description: Tema custom pentru magazinul FlouRege
Author: FlouRege
Version: 1.0
Text Domain: flourege-shop
Requires at least: 6.0
Requires PHP: 8.0
License: GPL v2 or later
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #d4af37;
  --gold-hover: #e8c84a;
  --bg: #0a0a0a;
  --card: #131313;
  --border: #1c1c1c;
  --text: #d0d0d0;
  --text-muted: #777;
  --white: #ffffff;
  --radius: 12px;
  --max-w: 1140px;
  --header-h: 60px;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-hover); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--white);
  font-weight: 600;
  line-height: 1.3;
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.site-header {
  background: #0f0f0f;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.site-logo img {
  height: 36px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all .2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.05);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-link {
  position: relative;
  color: var(--text-muted);
  font-size: 20px;
  transition: color .2s;
}

.cart-link:hover { color: var(--gold); }

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
}

/* ===== MAIN CONTENT ===== */
.site-main {
  min-height: calc(100vh - var(--header-h) - 60px);
  padding: 30px 0;
}
/* ===== PRODUCT GRID - MAI FRUMOS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.4,0,.2,1), border-color .35s, box-shadow .35s;
  position: relative;
}

.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
  box-shadow: 0 20px 50px rgba(212,175,55,.08);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,.25);
}

.product-card:hover::after {
  opacity: 1;
}

.product-card .product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: #0e0e0e;
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

.product-card .onsale {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: #000;
  font-size: 9px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.product-card .product-info {
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}

.product-card .product-title {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  line-height: 1.45;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card .product-title a { color: inherit; }
.product-card .product-title a:hover { color: var(--white); }

.product-card .product-price {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-display);
  padding: 4px 0;
}

.product-card .product-price del {
  color: #444;
  font-size: 14px;
  margin-right: 6px;
}

.product-card .product-price ins { text-decoration: none; }

.btn-cart {
  display: block;
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all .25s;
  margin-top: 4px;
}

.btn-cart:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

/* ===== MOBILE MENU - FULLSCREEN CU ANIMATII ===== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  position: relative;
  width: 32px;
  height: 32px;
  z-index: 10001;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  position: absolute;
  left: 5px;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}

.menu-toggle span { top: 15px; }
.menu-toggle span::before { content: ''; top: -7px; }
.menu-toggle span::after { content: ''; top: 7px; }

/* X animation when open */
.menu-toggle.is-active span { background: transparent; }
.menu-toggle.is-active span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.is-active span::after { top: 0; transform: rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s cubic-bezier(.4,0,.2,1), visibility .4s;
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-overlay .mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-nav-overlay .mobile-nav-links a {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  padding: 12px 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all .4s cubic-bezier(.4,0,.2,1);
  border-radius: 8px;
}

.mobile-nav-overlay.is-open .mobile-nav-links a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-overlay.is-open .mobile-nav-links a:nth-child(1) { transition-delay: .1s; }
.mobile-nav-overlay.is-open .mobile-nav-links a:nth-child(2) { transition-delay: .18s; }
.mobile-nav-overlay.is-open .mobile-nav-links a:nth-child(3) { transition-delay: .26s; }
.mobile-nav-overlay.is-open .mobile-nav-links a:nth-child(4) { transition-delay: .34s; }
.mobile-nav-overlay.is-open .mobile-nav-links a:nth-child(5) { transition-delay: .42s; }

.mobile-nav-overlay .mobile-nav-links a:hover {
  color: var(--gold);
  background: rgba(255,255,255,.03);
}

.mobile-nav-overlay .mobile-nav-cart {
  margin-top: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all .4s cubic-bezier(.4,0,.2,1) .5s;
}

.mobile-nav-overlay.is-open .mobile-nav-cart {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-overlay .mobile-nav-cart a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 28px;
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 30px;
  transition: all .2s;
}

.mobile-nav-overlay .mobile-nav-cart a:hover {
  background: var(--gold);
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .menu-toggle { display: block; }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card .product-info { padding: 12px; }
  .product-card .product-title { font-size: 11px; }
  .product-card .product-price { font-size: 16px; }
  .btn-cart { padding: 9px; font-size: 10px; }
  .product-card:hover { transform: none; }

  .site-main { padding: 16px 0; }
  .container { padding: 0 12px; }
}

@media (max-width: 400px) {
  .product-card .product-title { font-size: 10px; }
  .product-card .product-price { font-size: 14px; }
  .btn-cart { padding: 8px; font-size: 9px; }
}

/* ===== SINGLE PRODUCT - PREMIUM ===== */
.single-product-page { padding: 20px 0 60px; }

/* Hero: image + info */
.sp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.sp-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
}

.sp-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Category label */
.sp-category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}

.sp-category a { color: var(--gold); }

.sp-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 14px;
}

.sp-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.sp-rating .star-rating { font-size: 14px; }
.sp-rating .star-rating span::before { color: var(--gold); }
.sp-rating span:last-child { color: var(--text-muted); font-size: 13px; }

.sp-price {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}

.sp-price del { color: var(--text-muted); font-size: 18px; margin-right: 10px; }
.sp-price ins { text-decoration: none; }

.sp-short-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.sp-short-desc p { margin-bottom: 8px; }

/* Quantity selector custom */
.sp-cart-form { margin-bottom: 28px; }

.sp-cart-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.sp-qty {
  display: flex;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.qty-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  width: 44px;
  height: 50px;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font);
}

.qty-btn:hover { color: var(--white); background: rgba(255,255,255,.05); }

.qty-input {
  width: 44px;
  text-align: center;
  background: transparent !important;
  border: none !important;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font);
  -moz-appearance: textfield;
  padding: 0 !important;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.sp-add-to-cart {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s;
}

.sp-add-to-cart:hover {
  background: var(--gold-hover);
  box-shadow: 0 6px 24px rgba(212,175,55,.25);
}

.sp-add-to-cart svg { flex-shrink: 0; }

.sp-out-of-stock {
  padding: 14px 20px;
  background: rgba(180,50,50,.08);
  border: 1px solid rgba(180,50,50,.15);
  border-radius: 12px;
  color: #cc5555;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Meta */
.sp-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.sp-meta-item {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.sp-meta-label {
  color: var(--text-muted);
  min-width: 80px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1px;
  padding-top: 2px;
}

.sp-meta-item span:last-child { color: var(--text); }
.sp-meta-item a { color: var(--text); }
.sp-meta-item a:hover { color: var(--gold); }

/* ===== DETAILS / TABS ===== */
.sp-details {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.sp-details-nav {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
}

.sp-tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 24px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all .25s;
}

.sp-tab-btn:hover { color: var(--text); }
.sp-tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

.sp-tab-panel {
  display: none;
  animation: spFadeIn .35s ease;
}

.sp-tab-panel.active { display: block; }

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

.sp-description {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.9;
  max-width: 700px;
}

.sp-description p { margin-bottom: 14px; }
.sp-description ul, .sp-description ol { padding-left: 20px; margin-bottom: 14px; }
.sp-description li { margin-bottom: 4px; }
.sp-description strong { color: var(--text); }

/* Reviews */
.sp-tab-panel #comments { color: var(--text-muted); }
.sp-tab-panel .commentlist { list-style: none; padding: 0; }
.sp-tab-panel .commentlist li { padding: 16px 0; border-bottom: 1px solid var(--border); }
.sp-tab-panel .comment-text .description p { color: var(--text); font-size: 14px; }
.sp-tab-panel .woocommerce-review__author { color: var(--white); font-weight: 600; }

/* ===== RELATED ===== */
.sp-related {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.sp-related h2 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 24px;
  color: var(--white);
}

/* ===== MOBILE SINGLE PRODUCT ===== */
@media (max-width: 768px) {
  .sp-hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sp-title { font-size: 22px; }
  .sp-price { font-size: 28px; }

  .sp-cart-row {
    flex-direction: column;
  }

  .sp-qty { justify-content: center; }

  .sp-add-to-cart {
    width: 100%;
    padding: 16px;
    justify-content: center;
  }

  .sp-details-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sp-tab-btn {
    white-space: nowrap;
    padding: 10px 16px;
    font-size: 12px;
  }

  .sp-related .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ===== NOTIFICARI WOOCOMMERCE ===== */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
  border-left: 3px solid var(--gold) !important;
  border-top: none !important;
  color: var(--text) !important;
  padding: 16px 20px !important;
  border-radius: 12px !important;
  margin-bottom: 20px !important;
  font-size: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--gold) !important;
}

.woocommerce-error {
  border-left-color: #cc4444 !important;
}

.woocommerce-error::before {
  color: #cc4444 !important;
}

.woocommerce-message a.button,
.woocommerce-info a.button {
  background: transparent !important;
  color: var(--gold) !important;
  border: 1px solid rgba(212,175,55,.3) !important;
  border-radius: 8px !important;
  padding: 8px 18px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: .5px !important;
  transition: all .2s !important;
  order: 2 !important;
  float: none !important;
}

.woocommerce-message a.button:hover {
  background: var(--gold) !important;
  color: #000 !important;
}

.woocommerce-notices-wrapper {
  margin-bottom: 10px;
}

/* ===== TABS + DESCRIPTION CENTRATE ===== */
.sp-details {
  text-align: center;
}

.sp-details-nav {
  justify-content: center;
}

.sp-description {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.sp-tab-panel {
  display: none;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.sp-tab-panel.active {
  display: block;
}

/* Related centrat */
.sp-related {
  text-align: center;
}

.sp-related h2 {
  text-align: center;
}

.sp-related .products-grid {
  text-align: left;
}

/* ===== SINGLE PRODUCT - CENTRAT & FRUMOS ===== */

/* Info centrat */
.sp-info {
  text-align: center;
}

.sp-category {
  text-align: center;
}

.sp-title {
  text-align: center;
}

.sp-rating {
  justify-content: center;
}

.sp-price {
  text-align: center;
}

.sp-short-desc {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 28px;
}

/* Quantity centrat */
.sp-cart-form {
  display: flex;
  justify-content: center;
}

.sp-cart-row {
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 320px;
}

.sp-qty {
  align-self: center;
}

/* Buton add to cart - NOU */
.sp-add-to-cart {
  width: 100%;
  padding: 16px 32px;
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.sp-add-to-cart:hover {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 30px rgba(212,175,55,.2);
  transform: translateY(-2px);
}

.sp-add-to-cart svg {
  stroke: currentColor;
}

/* Meta centrat */
.sp-meta {
  align-items: center;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
}

.sp-meta-item {
  justify-content: center;
  flex-direction: column;
  gap: 2px;
}

/* Out of stock */
.sp-out-of-stock {
  text-align: center;
  max-width: 320px;
  margin: 0 auto 20px;
}

/* Tabs centrate */
.sp-details {
  text-align: center;
}

.sp-details-nav {
  justify-content: center;
  border-bottom: 1px solid var(--border);
}

.sp-tab-panel {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

/* Related centrat */
.sp-related {
  text-align: center;
}

.sp-related .products-grid {
  text-align: left;
}

/* Hero pe mobile - imagine sus, info centrat jos */
@media (max-width: 768px) {
  .sp-cart-row {
    max-width: 100%;
  }
  
  .sp-add-to-cart {
    width: 100%;
  }
}

/* ===== RECENZII FRUMOASE ===== */
#comments {
  text-align: left;
}

.woocommerce-Reviews-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 24px;
  text-align: center;
}

#comments ol.commentlist {
  list-style: none;
  padding: 0;
  margin: 0;
}

#comments ol.commentlist li {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 16px;
}

#comments .comment_container {
  display: flex;
  gap: 16px;
}

#comments .comment_container img.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

#comments .comment-text {
  flex: 1;
}

#comments .star-rating {
  margin-bottom: 6px;
}

#comments .star-rating span::before {
  color: var(--gold);
}

#comments .woocommerce-review__author {
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
}

#comments .woocommerce-review__dash {
  display: none;
}

#comments .woocommerce-review__published-date {
  color: var(--text-muted);
  font-size: 12px;
  display: block;
  margin-top: 2px;
}

#comments .description p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 10px;
}

/* Review form */
#review_form_wrapper {
  margin-top: 30px;
}

#review_form_wrapper .comment-reply-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  text-align: center;
  margin-bottom: 20px;
}

#review_form_wrapper .comment-form {
  max-width: 500px;
  margin: 0 auto;
}

#review_form_wrapper .comment-form label {
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
}

#review_form_wrapper .comment-form-rating {
  text-align: center;
  margin-bottom: 16px;
}

#review_form_wrapper .comment-form-rating .stars a {
  color: var(--gold);
}

#review_form_wrapper .comment-form textarea,
#review_form_wrapper .comment-form input[type='text'],
#review_form_wrapper .comment-form input[type='email'] {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--white);
  padding: 12px 14px;
  width: 100%;
  font-family: var(--font);
}

#review_form_wrapper .comment-form textarea:focus,
#review_form_wrapper .comment-form input:focus {
  border-color: var(--gold);
  outline: none;
}

#review_form_wrapper .form-submit input[type='submit'] {
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
  display: block;
  margin: 0 auto;
}

#review_form_wrapper .form-submit input[type='submit']:hover {
  background: var(--gold-hover);
  box-shadow: 0 0 20px rgba(212,175,55,.2);
}

/* No reviews text */
.woocommerce-noreviews {
  color: var(--text-muted);
  text-align: center;
  font-size: 14px;
}

/* ===== LOGO MAI MARE + LUCIOS ===== */

/* Header logo */
.site-logo img {
  height: 48px !important;
  width: auto !important;
  filter: brightness(1.2) drop-shadow(0 0 8px rgba(212,175,55,.3));
  transition: all .3s ease;
}

.site-logo:hover img {
  filter: brightness(1.4) drop-shadow(0 0 14px rgba(212,175,55,.5));
  transform: scale(1.05);
}

/* Footer logo mai mare + lucios */
/* ===== FOOTER ===== */
.site-footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 40px 0 30px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo img {
  height: 32px;
  width: auto;
  opacity: .45;
  transition: opacity .3s;
}

.footer-logo:hover img { opacity: .75; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
}

.footer-links a {
  color: rgba(255,255,255,.4);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: color .2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.06);
  flex-wrap: wrap;
}

.footer-copy {
  color: rgba(255,255,255,.18);
  font-size: 11px;
}

.footer-credit {
  color: rgba(255,255,255,.13);
  font-size: 10px;
}

.footer-credit a {
  color: rgba(212,175,55,.35);
  transition: color .2s;
}

.footer-credit a:hover { color: var(--gold); }

.footer-anpc-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.footer-anpc-row a {
  display: block;
  opacity: .35;
  transition: opacity .2s;
}

.footer-anpc-row a:hover { opacity: .65; }

.footer-anpc-row img {
  height: 26px;
  width: auto;
}

@media (max-width: 768px) {
  .site-footer { padding: 30px 0 24px; }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-links a { font-size: 12px; }

  .footer-bar {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-anpc-row {
    margin-left: 0;
    margin-top: 6px;
  }

  .footer-anpc-row img { height: 22px; }
}

/* ===== HERO BANNER ===== */
.hero-banner {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
  margin-bottom: 30px;
}

.hero-banner .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-banner .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.3), rgba(0,0,0,.7));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-banner .hero-overlay h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}

.hero-banner .hero-overlay p {
  font-family: var(--font);
  font-size: 14px;
  color: rgba(255,255,255,.7);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-banner {
    height: 200px;
    margin-bottom: 16px;
  }

  .hero-banner .hero-overlay h2 {
    font-size: 28px;
    letter-spacing: 4px;
  }

  .hero-banner .hero-overlay p {
    font-size: 11px;
    letter-spacing: 2px;
  }
}

/* ===== NAV MENU - NO BULLETS ===== */
.main-nav ul,
.main-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav li a {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all .2s;
  text-decoration: none;
}

.main-nav li a:hover {
  color: var(--white);
  background: rgba(255,255,255,.05);
}

.mobile-nav-links ul,
.mobile-nav-links li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ===== CART TOAST NOTIFICATION ===== */
#cart-toast {
  position: fixed;
  bottom: 20px;
  right: -400px;
  z-index: 99998;
  background: #1a1a1a;
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 14px;
  padding: 16px 20px;
  max-width: 320px;
  box-shadow: 0 10px 40px rgba(0,0,0,.6);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: right .4s cubic-bezier(.4,0,.2,1);
}

#cart-toast.show {
  right: 20px;
}

#cart-toast .ct-check {
  background: #d4af37;
  color: #000;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

#cart-toast .ct-text strong {
  color: #fff;
  font-size: 13px;
  font-family: "DM Sans", sans-serif;
  display: block;
}

#cart-toast .ct-text p {
  color: rgba(255,255,255,.45);
  font-size: 11px;
  font-family: "DM Sans", sans-serif;
  margin: 2px 0 0;
}

#cart-toast .ct-btn {
  background: transparent;
  color: #d4af37;
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  white-space: nowrap;
  transition: all .2s;
}

#cart-toast .ct-btn:hover {
  background: #d4af37;
  color: #000;
}

@media (max-width: 768px) {
  #cart-toast {
    right: -100%;
    left: auto;
    bottom: 10px;
    max-width: calc(100% - 20px);
    margin: 0 10px;
  }
  #cart-toast.show {
    right: 10px;
  }
}

/* ===== HIDE DEFAULT WOOCOMMERCE ADD TO CART NOTICE ===== */
.woocommerce-message,
.woocommerce-info {
  display: none !important;
}

/* ===== CART PAGE CUSTOM ===== */
.woocommerce-cart .woocommerce {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
}

.woocommerce table.shop_table {
  background: #131313 !important;
  border: 1px solid #1c1c1c !important;
  border-radius: 14px !important;
  overflow: hidden;
  border-collapse: separate !important;
}

.woocommerce table.shop_table th {
  background: #1a1a1a !important;
  color: rgba(255,255,255,.5) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  padding: 14px 16px !important;
  border-bottom: 1px solid #1c1c1c !important;
  font-family: "DM Sans", sans-serif !important;
}

.woocommerce table.shop_table td {
  background: #131313 !important;
  color: #d0d0d0 !important;
  padding: 16px !important;
  border-top: 1px solid #1c1c1c !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 14px !important;
  vertical-align: middle !important;
}

.woocommerce table.shop_table td.product-thumbnail img {
  border-radius: 10px !important;
  width: 70px !important;
  height: 70px !important;
  object-fit: cover !important;
}

.woocommerce table.shop_table td.product-name a {
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-decoration: none !important;
}

.woocommerce table.shop_table td.product-name a:hover {
  color: #d4af37 !important;
}

.woocommerce table.shop_table td.product-price,
.woocommerce table.shop_table td.product-subtotal {
  color: #d4af37 !important;
  font-weight: 700 !important;
  font-size: 15px !important;
}

.woocommerce table.shop_table td.product-remove a {
  color: #555 !important;
  font-size: 20px !important;
  text-decoration: none !important;
}

.woocommerce table.shop_table td.product-remove a:hover {
  color: #cc4444 !important;
}

.woocommerce table.shop_table input.qty {
  background: #0a0a0a !important;
  color: #fff !important;
  border: 1px solid #1c1c1c !important;
  border-radius: 8px !important;
  padding: 8px 12px !important;
  width: 60px !important;
  text-align: center !important;
  font-family: "DM Sans", sans-serif !important;
}

.woocommerce .cart_totals {
  background: #131313 !important;
  border: 1px solid #1c1c1c !important;
  border-radius: 14px !important;
  padding: 24px !important;
  margin-top: 20px !important;
}

.woocommerce .cart_totals h2 {
  color: #fff !important;
  font-size: 18px !important;
  font-family: "DM Sans", sans-serif !important;
  margin-bottom: 16px !important;
}

.woocommerce .cart_totals table {
  background: transparent !important;
  border: none !important;
}

.woocommerce .cart_totals table th {
  background: transparent !important;
  color: rgba(255,255,255,.5) !important;
  border: none !important;
  padding: 10px 0 !important;
}

.woocommerce .cart_totals table td {
  background: transparent !important;
  color: #d4af37 !important;
  font-weight: 700 !important;
  border: none !important;
  padding: 10px 0 !important;
  text-align: right !important;
}

.woocommerce .cart_totals .order-total td {
  font-size: 20px !important;
}

/* Buttons */
.woocommerce button[name="update_cart"],
.woocommerce .cart .button {
  background: transparent !important;
  color: #d4af37 !important;
  border: 1px solid rgba(212,175,55,.3) !important;
  border-radius: 8px !important;
  padding: 10px 24px !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: .5px !important;
  cursor: pointer !important;
  transition: all .2s !important;
}

.woocommerce button[name="update_cart"]:hover,
.woocommerce .cart .button:hover {
  background: #d4af37 !important;
  color: #000 !important;
}

.woocommerce .checkout-button,
.woocommerce a.checkout-button {
  display: block !important;
  background: #d4af37 !important;
  color: #000 !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 14px 28px !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .5px !important;
  text-align: center !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: all .2s !important;
  margin-top: 16px !important;
}

.woocommerce .checkout-button:hover,
.woocommerce a.checkout-button:hover {
  background: #e8c84a !important;
  box-shadow: 0 4px 16px rgba(212,175,55,.3) !important;
}

/* Empty cart */
.woocommerce .cart-empty {
  color: rgba(255,255,255,.4) !important;
  text-align: center !important;
  padding: 60px 20px !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 16px !important;
}

.woocommerce .return-to-shop a {
  background: #d4af37 !important;
  color: #000 !important;
  border-radius: 10px !important;
  padding: 12px 28px !important;
  font-family: "DM Sans", sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

/* Coupon */
.woocommerce .coupon input {
  background: #0a0a0a !important;
  color: #fff !important;
  border: 1px solid #1c1c1c !important;
  border-radius: 8px !important;
  padding: 10px 14px !important;
  font-family: "DM Sans", sans-serif !important;
}

@media (max-width: 768px) {
  .woocommerce table.shop_table td {
    padding: 10px 8px !important;
    font-size: 12px !important;
  }
  .woocommerce table.shop_table td.product-thumbnail img {
    width: 50px !important;
    height: 50px !important;
  }
}

/* ===== WC BLOCKS CART - DARK PREMIUM ===== */
.wc-block-cart {
  max-width: 960px !important;
  margin: 0 auto !important;
  padding: 20px !important;
  font-family: "DM Sans", sans-serif !important;
}

/* Product rows */
.wc-block-cart-items .wc-block-cart-items__row {
  background: #131313 !important;
  border: 1px solid #1c1c1c !important;
  border-radius: 14px !important;
  padding: 20px !important;
  margin-bottom: 12px !important;
}

.wc-block-cart-items .wc-block-cart-items__row + .wc-block-cart-items__row {
  border-top: none !important;
}

/* Product image */
.wc-block-cart-item__image img {
  border-radius: 10px !important;
}

/* Product name */
.wc-block-components-product-name {
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  text-decoration: none !important;
  font-family: "DM Sans", sans-serif !important;
}

.wc-block-components-product-name:hover {
  color: #d4af37 !important;
}

/* Prices */
.wc-block-cart .wc-block-components-product-price,
.wc-block-cart .wc-block-components-totals-item__value,
.wc-block-cart .wc-block-formatted-money-amount,
.wc-block-cart .wc-block-components-formatted-money-amount {
  color: #d4af37 !important;
  font-weight: 700 !important;
  font-family: "DM Sans", sans-serif !important;
}

/* Labels */
.wc-block-cart .wc-block-components-totals-item__label,
.wc-block-cart .wc-block-components-totals-item__description {
  color: rgba(255,255,255,.5) !important;
  font-family: "DM Sans", sans-serif !important;
}

/* Total */
.wc-block-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 16px !important;
}

.wc-block-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
.wc-block-cart .wc-block-components-totals-footer-item .wc-block-components-formatted-money-amount {
  color: #d4af37 !important;
  font-size: 20px !important;
  font-weight: 700 !important;
}

/* Sidebar totals */
.wc-block-cart .wp-block-woocommerce-cart-totals-block {
  background: #131313 !important;
  border: 1px solid #1c1c1c !important;
  border-radius: 14px !important;
  padding: 24px !important;
}

/* Quantity selector */
.wc-block-cart .wc-block-components-quantity-selector {
  background: #0a0a0a !important;
  border: 1px solid #1c1c1c !important;
  border-radius: 8px !important;
}

.wc-block-cart .wc-block-components-quantity-selector input {
  color: #fff !important;
  font-family: "DM Sans", sans-serif !important;
  background: transparent !important;
}

.wc-block-cart .wc-block-components-quantity-selector__button {
  color: rgba(255,255,255,.5) !important;
  background: transparent !important;
}

.wc-block-cart .wc-block-components-quantity-selector__button:hover {
  color: #d4af37 !important;
}

/* Remove link */
.wc-block-cart .wc-block-cart-item__remove-link {
  color: #555 !important;
  font-size: 12px !important;
  text-decoration: none !important;
  border: none !important;
  background: none !important;
}

.wc-block-cart .wc-block-cart-item__remove-link:hover {
  color: #cc4444 !important;
}

/* Checkout button */
.wc-block-cart .wc-block-cart__submit-button,
.wc-block-cart .wc-block-components-checkout-place-order-button,
.wc-block-cart a.wc-block-cart__submit-button,
.wc-block-cart .wp-block-woocommerce-proceed-to-checkout-block a,
.wc-block-cart .wc-block-components-button {
  background: #d4af37 !important;
  color: #000 !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 16px 28px !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .5px !important;
  text-align: center !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: all .2s !important;
  width: 100% !important;
  display: block !important;
}

.wc-block-cart .wc-block-cart__submit-button:hover,
.wc-block-cart .wc-block-components-button:hover,
.wc-block-cart .wp-block-woocommerce-proceed-to-checkout-block a:hover {
  background: #e8c84a !important;
  box-shadow: 0 4px 16px rgba(212,175,55,.3) !important;
}

/* Coupon accordion */
.wc-block-cart .wc-block-components-totals-coupon__button {
  background: transparent !important;
  color: #d4af37 !important;
  border: 1px solid rgba(212,175,55,.3) !important;
  border-radius: 8px !important;
  font-family: "DM Sans", sans-serif !important;
}

.wc-block-cart .wc-block-components-totals-coupon__input input {
  background: #0a0a0a !important;
  color: #fff !important;
  border: 1px solid #1c1c1c !important;
  border-radius: 8px !important;
  font-family: "DM Sans", sans-serif !important;
}

/* Headings */
.wc-block-cart h2,
.wc-block-cart .wc-block-components-panel__button {
  color: rgba(255,255,255,.5) !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  font-weight: 600 !important;
}

/* Borders/lines */
.wc-block-cart .wc-block-components-totals-wrapper:after,
.wc-block-cart .wc-block-components-totals-item {
  border-color: #1c1c1c !important;
}

/* Precomanda text */
.wc-block-cart .wc-block-components-product-metadata {
  color: rgba(255,255,255,.35) !important;
  font-size: 12px !important;
}

/* Shipping text */
.wc-block-cart .wc-block-components-shipping-rates-control,
.wc-block-cart .wc-block-components-radio-control__label,
.wc-block-cart .wc-block-components-radio-control__description {
  color: rgba(255,255,255,.5) !important;
  font-family: "DM Sans", sans-serif !important;
}

.wc-block-cart .wc-block-components-radio-control__secondary-label {
  color: #d4af37 !important;
}

/* ===== CART SINGLE COLUMN LAYOUT ===== */
.wc-block-cart .wp-block-woocommerce-cart-line-items-block,
.wc-block-cart .wp-block-woocommerce-cart-totals-block {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  width: 100% !important;
}

.wc-block-cart .wp-block-woocommerce-cart-items-block,
.wc-block-cart .wp-block-woocommerce-cart-totals-block {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  width: 100% !important;
}

.wc-block-cart .wc-block-cart__main,
.wc-block-cart .wc-block-cart__sidebar {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  width: 100% !important;
}

.wc-block-cart .is-large {
  display: flex !important;
  flex-direction: column !important;
}

.wc-block-cart {
  max-width: 700px !important;
}

/* ===== FORCE SINGLE COLUMN CART ===== */
.wc-block-cart .is-large,
.wc-block-cart .is-medium,
.wp-block-woocommerce-cart .is-large,
.wp-block-woocommerce-cart .is-medium {
  flex-wrap: wrap !important;
  flex-direction: column !important;
}

.wc-block-cart .is-large .wc-block-cart__main,
.wc-block-cart .is-large .wc-block-cart__sidebar,
.wc-block-cart .is-medium .wc-block-cart__main,
.wc-block-cart .is-medium .wc-block-cart__sidebar,
.wp-block-woocommerce-cart .wc-block-cart__main,
.wp-block-woocommerce-cart .wc-block-cart__sidebar {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.wc-block-cart .wc-block-cart__sidebar {
  margin-top: 20px !important;
}

.wc-block-cart .wp-block-woocommerce-cart-totals-block {
  max-width: 100% !important;
}

/* Bigger product image */
.wc-block-cart .wc-block-cart-item__image {
  min-width: 100px !important;
  width: 100px !important;
}

.wc-block-cart .wc-block-cart-item__image img {
  width: 100px !important;
  height: 100px !important;
  object-fit: cover !important;
  border-radius: 12px !important;
}

/* Product card row */
.wc-block-cart-items__row {
  padding: 20px !important;
  border-bottom: 1px solid #1c1c1c !important;
}

/* Hide PRODUS / TOTAL headers */
.wc-block-cart .wc-block-cart-items th {
  display: none !important;
}

/* ===== CLASSIC CART - SINGLE COLUMN CLEAN ===== */
.woocommerce-cart .woocommerce {
  max-width: 600px !important;
  margin: 0 auto !important;
  padding: 30px 20px !important;
}

.woocommerce-cart .shop_table {
  width: 100% !important;
  border: none !important;
  background: transparent !important;
  border-collapse: collapse !important;
}

.woocommerce-cart .shop_table thead {
  display: none !important;
}

.woocommerce-cart .shop_table .cart_item {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  background: #131313 !important;
  border: 1px solid #1c1c1c !important;
  border-radius: 14px !important;
  padding: 16px !important;
  margin-bottom: 12px !important;
}

.woocommerce-cart .shop_table .cart_item td {
  border: none !important;
  padding: 0 !important;
  background: transparent !important;
}

.woocommerce-cart .shop_table .cart_item td.product-thumbnail {
  flex-shrink: 0 !important;
}

.woocommerce-cart .shop_table .cart_item td.product-thumbnail img {
  width: 80px !important;
  height: 80px !important;
  object-fit: cover !important;
  border-radius: 10px !important;
}

.woocommerce-cart .shop_table .cart_item td.product-name {
  flex: 1 !important;
}

.woocommerce-cart .shop_table .cart_item td.product-name a {
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  font-family: "DM Sans", sans-serif !important;
}

.woocommerce-cart .shop_table .cart_item td.product-price {
  display: none !important;
}

.woocommerce-cart .shop_table .cart_item td.product-quantity .qty {
  background: #0a0a0a !important;
  color: #fff !important;
  border: 1px solid #1c1c1c !important;
  border-radius: 8px !important;
  padding: 6px 10px !important;
  width: 50px !important;
  text-align: center !important;
  font-family: "DM Sans", sans-serif !important;
}

.woocommerce-cart .shop_table .cart_item td.product-subtotal {
  color: #d4af37 !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  font-family: "DM Sans", sans-serif !important;
  white-space: nowrap !important;
}

.woocommerce-cart .shop_table .cart_item td.product-remove {
  order: -1 !important;
}

.woocommerce-cart .shop_table .cart_item td.product-remove a {
  color: #333 !important;
  font-size: 18px !important;
  text-decoration: none !important;
}

.woocommerce-cart .shop_table .cart_item td.product-remove a:hover {
  color: #cc4444 !important;
}

/* Actions row (update + coupon) */
.woocommerce-cart .shop_table .actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  padding: 16px 0 !important;
  border: none !important;
  background: transparent !important;
}

.woocommerce-cart .shop_table .actions .coupon {
  display: none !important;
}

.woocommerce-cart .shop_table .actions button {
  display: none !important;
}

/* Cart totals - below products */
.woocommerce-cart .cart_totals {
  width: 100% !important;
  float: none !important;
  background: #131313 !important;
  border: 1px solid #1c1c1c !important;
  border-radius: 14px !important;
  padding: 24px !important;
  margin-top: 4px !important;
}

.woocommerce-cart .cart_totals h2 {
  display: none !important;
}

.woocommerce-cart .cart_totals table {
  border: none !important;
  background: transparent !important;
}

.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
  border: none !important;
  background: transparent !important;
  padding: 8px 0 !important;
  font-family: "DM Sans", sans-serif !important;
}

.woocommerce-cart .cart_totals table th {
  color: rgba(255,255,255,.45) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}

.woocommerce-cart .cart_totals table td {
  color: #d4af37 !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-align: right !important;
}

.woocommerce-cart .cart_totals .order-total th {
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding-top: 16px !important;
}

.woocommerce-cart .cart_totals .order-total td {
  font-size: 22px !important;
  padding-top: 16px !important;
}

.woocommerce-cart .cart_totals .wc-proceed-to-checkout a {
  display: block !important;
  background: #d4af37 !important;
  color: #000 !important;
  border-radius: 10px !important;
  padding: 16px !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .5px !important;
  text-align: center !important;
  text-decoration: none !important;
  margin-top: 16px !important;
  transition: all .2s !important;
}

.woocommerce-cart .cart_totals .wc-proceed-to-checkout a:hover {
  background: #e8c84a !important;
  box-shadow: 0 4px 16px rgba(212,175,55,.3) !important;
}

/* Shipping */
.woocommerce-cart .cart_totals .shipping td {
  font-size: 13px !important;
}

.woocommerce-cart .woocommerce-shipping-methods {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce-cart .woocommerce-shipping-methods label {
  color: rgba(255,255,255,.5) !important;
  font-size: 13px !important;
}

/* ===== CUSTOM QUANTITY SELECTOR ===== */
.woocommerce .quantity {
  display: flex !important;
  align-items: center !important;
  background: #0a0a0a !important;
  border: 1px solid #1c1c1c !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  width: fit-content !important;
}

.woocommerce .quantity input.qty {
  background: transparent !important;
  color: #fff !important;
  border: none !important;
  width: 40px !important;
  text-align: center !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  padding: 8px 0 !important;
  -moz-appearance: textfield !important;
  appearance: textfield !important;
}

.woocommerce .quantity input.qty::-webkit-outer-spin-button,
.woocommerce .quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  display: none !important;
}

.woocommerce .quantity .qty-btn {
  background: transparent !important;
  border: none !important;
  color: rgba(255,255,255,.4) !important;
  font-size: 18px !important;
  width: 36px !important;
  height: 40px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all .2s !important;
  font-family: "DM Sans", sans-serif !important;
}

.woocommerce .quantity .qty-btn:hover {
  color: #d4af37 !important;
  background: rgba(212,175,55,.08) !important;
}

/* ===== CHECKOUT PAGE PREMIUM ===== */
.woocommerce-checkout .woocommerce {
  max-width: 800px !important;
  margin: 0 auto !important;
  padding: 30px 20px !important;
}

/* Single column */
.woocommerce-checkout .col2-set {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
  width: 100% !important;
  float: none !important;
  padding: 0 !important;
}

/* Section titles */
.woocommerce-checkout h3,
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3 {
  color: #fff !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  padding-bottom: 12px !important;
  margin-bottom: 20px !important;
  border-bottom: 1px solid #1c1c1c !important;
}

/* Form fields */
.woocommerce-checkout .form-row {
  margin-bottom: 14px !important;
}

.woocommerce-checkout .form-row label {
  color: rgba(255,255,255,.5) !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: .5px !important;
  margin-bottom: 6px !important;
}

.woocommerce-checkout .form-row label .required {
  color: #d4af37 !important;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .select2-container--default .select2-selection--single {
  background: #131313 !important;
  color: #fff !important;
  border: 1px solid #1c1c1c !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 14px !important;
  transition: border-color .2s !important;
  width: 100% !important;
  height: auto !important;
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row textarea:focus {
  border-color: rgba(212,175,55,.4) !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(212,175,55,.08) !important;
}

/* Select2 dropdown */
.select2-container--default .select2-selection--single {
  background: #131313 !important;
  border: 1px solid #1c1c1c !important;
  border-radius: 10px !important;
  height: 46px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff !important;
  line-height: 46px !important;
  padding-left: 16px !important;
  font-family: "DM Sans", sans-serif !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 46px !important;
}

.select2-dropdown {
  background: #131313 !important;
  border: 1px solid #1c1c1c !important;
  border-radius: 10px !important;
}

.select2-results__option {
  color: #d0d0d0 !important;
  font-family: "DM Sans", sans-serif !important;
  padding: 10px 16px !important;
}

.select2-results__option--highlighted {
  background: rgba(212,175,55,.15) !important;
  color: #fff !important;
}

.select2-search--dropdown .select2-search__field {
  background: #0a0a0a !important;
  color: #fff !important;
  border: 1px solid #1c1c1c !important;
  border-radius: 8px !important;
  padding: 8px 12px !important;
}

/* Order review table */
.woocommerce-checkout #order_review_heading {
  color: #fff !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  padding-bottom: 12px !important;
  margin-top: 30px !important;
  margin-bottom: 20px !important;
  border-bottom: 1px solid #1c1c1c !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table {
  background: #131313 !important;
  border: 1px solid #1c1c1c !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  border-collapse: separate !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td {
  background: transparent !important;
  border-bottom: 1px solid #1c1c1c !important;
  padding: 14px 16px !important;
  font-family: "DM Sans", sans-serif !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table thead th {
  color: rgba(255,255,255,.4) !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  font-weight: 600 !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name {
  color: #d0d0d0 !important;
  font-size: 13px !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .product-total,
.woocommerce-checkout .woocommerce-checkout-review-order-table .cart-subtotal td,
.woocommerce-checkout .woocommerce-checkout-review-order-table .shipping td {
  color: #d4af37 !important;
  font-weight: 600 !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .cart-subtotal th,
.woocommerce-checkout .woocommerce-checkout-review-order-table .shipping th,
.woocommerce-checkout .woocommerce-checkout-review-order-table .tax-rate th {
  color: rgba(255,255,255,.45) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total th {
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total td {
  color: #d4af37 !important;
  font-size: 22px !important;
  font-weight: 700 !important;
}

/* Payment methods */
.woocommerce-checkout .wc_payment_methods {
  list-style: none !important;
  padding: 0 !important;
  margin: 20px 0 !important;
}

.woocommerce-checkout .wc_payment_method {
  background: #131313 !important;
  border: 1px solid #1c1c1c !important;
  border-radius: 12px !important;
  padding: 16px !important;
  margin-bottom: 10px !important;
  transition: border-color .2s !important;
}

.woocommerce-checkout .wc_payment_method:hover,
.woocommerce-checkout .wc_payment_method.active {
  border-color: rgba(212,175,55,.3) !important;
}

.woocommerce-checkout .wc_payment_method label {
  color: #fff !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
}

.woocommerce-checkout .payment_box {
  background: rgba(212,175,55,.05) !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  margin-top: 10px !important;
  color: rgba(255,255,255,.5) !important;
  font-size: 13px !important;
}

.woocommerce-checkout .payment_box::before {
  display: none !important;
}

/* Place order button */
.woocommerce-checkout #place_order {
  display: block !important;
  width: 100% !important;
  background: #d4af37 !important;
  color: #000 !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 18px !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  cursor: pointer !important;
  transition: all .2s !important;
  margin-top: 20px !important;
}

.woocommerce-checkout #place_order:hover {
  background: #e8c84a !important;
  box-shadow: 0 6px 24px rgba(212,175,55,.3) !important;
}

/* Privacy text */
.woocommerce-checkout .woocommerce-privacy-policy-text {
  color: rgba(255,255,255,.3) !important;
  font-size: 11px !important;
  font-family: "DM Sans", sans-serif !important;
}

.woocommerce-checkout .woocommerce-privacy-policy-text a {
  color: #d4af37 !important;
}

/* Terms checkbox */
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
  color: rgba(255,255,255,.4) !important;
  font-size: 13px !important;
  font-family: "DM Sans", sans-serif !important;
}

/* Shipping methods in checkout */
.woocommerce-checkout .shipping ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.woocommerce-checkout .shipping label {
  color: rgba(255,255,255,.5) !important;
  font-size: 13px !important;
}

/* Responsive */
@media (max-width: 768px) {
  .woocommerce-checkout .woocommerce {
    padding: 16px 12px !important;
  }

  .woocommerce-checkout .form-row input.input-text,
  .woocommerce-checkout .form-row textarea {
    padding: 10px 14px !important;
    font-size: 16px !important;
  }
}

/* ===== CHECKOUT FIELDS POLISH ===== */
.woocommerce-checkout .form-row input.input-text::placeholder,
.woocommerce-checkout .form-row textarea::placeholder {
  color: rgba(255,255,255,.2) !important;
}

/* Inline fields side by side */
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
}

.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
  flex: 1 1 calc(50% - 6px) !important;
  width: auto !important;
  float: none !important;
  padding: 0 !important;
}

.woocommerce-checkout .form-row-wide {
  flex: 1 1 100% !important;
  width: 100% !important;
  float: none !important;
  padding: 0 !important;
}

/* Ship to different address checkbox */
.woocommerce-checkout .woocommerce-shipping-fields #ship-to-different-address {
  background: #131313 !important;
  border: 1px solid #1c1c1c !important;
  border-radius: 10px !important;
  padding: 14px 16px !important;
  margin-top: 24px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.woocommerce-checkout .woocommerce-shipping-fields #ship-to-different-address label {
  color: rgba(255,255,255,.6) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  cursor: pointer !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

/* Custom checkbox */
.woocommerce-checkout input[type="checkbox"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 20px !important;
  height: 20px !important;
  background: #0a0a0a !important;
  border: 1px solid #1c1c1c !important;
  border-radius: 5px !important;
  cursor: pointer !important;
  transition: all .2s !important;
  flex-shrink: 0 !important;
}

.woocommerce-checkout input[type="checkbox"]:checked {
  background: #d4af37 !important;
  border-color: #d4af37 !important;
}

.woocommerce-checkout input[type="checkbox"]:checked::after {
  content: "✓" !important;
  color: #000 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
}

/* Notes field */
.woocommerce-checkout .woocommerce-additional-fields textarea {
  min-height: 80px !important;
  resize: vertical !important;
}

/* Error validation */
.woocommerce-checkout .woocommerce-invalid input.input-text {
  border-color: #cc4444 !important;
}

/* ===== ORDER RECEIVED / THANK YOU PAGE ===== */
.woocommerce-order-received .woocommerce {
  max-width: 700px !important;
  margin: 0 auto !important;
  padding: 40px 20px !important;
  text-align: center !important;
}

.woocommerce-order-received .woocommerce-thankyou-order-received {
  background: #131313 !important;
  border: 1px solid rgba(212,175,55,.2) !important;
  border-radius: 16px !important;
  padding: 30px !important;
  margin-bottom: 30px !important;
  color: #fff !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
}

.woocommerce-order-received .woocommerce-thankyou-order-received::before {
  content: "✓" !important;
  display: block !important;
  width: 50px !important;
  height: 50px !important;
  background: #d4af37 !important;
  color: #000 !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  border-radius: 50% !important;
  line-height: 50px !important;
  margin: 0 auto 16px !important;
}

/* Order details list */
.woocommerce-order-received .woocommerce-order-overview {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 30px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 12px !important;
}

.woocommerce-order-received .woocommerce-order-overview li {
  background: #131313 !important;
  border: 1px solid #1c1c1c !important;
  border-radius: 12px !important;
  padding: 16px 20px !important;
  flex: 1 1 140px !important;
  max-width: 200px !important;
  text-align: center !important;
  font-family: "DM Sans", sans-serif !important;
  color: rgba(255,255,255,.45) !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: .5px !important;
}

.woocommerce-order-received .woocommerce-order-overview li strong {
  display: block !important;
  color: #fff !important;
  font-size: 15px !important;
  margin-top: 4px !important;
}

/* Order details table */
.woocommerce-order-received .woocommerce-order-details {
  text-align: left !important;
}

.woocommerce-order-received .woocommerce-order-details h2,
.woocommerce-order-received .woocommerce-customer-details h2,
.woocommerce-order-received .woocommerce-column__title {
  color: #fff !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  padding-bottom: 10px !important;
  margin-bottom: 16px !important;
  border-bottom: 1px solid #1c1c1c !important;
}

.woocommerce-order-received .woocommerce-table--order-details {
  background: #131313 !important;
  border: 1px solid #1c1c1c !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  border-collapse: separate !important;
  width: 100% !important;
}

.woocommerce-order-received .woocommerce-table--order-details th,
.woocommerce-order-received .woocommerce-table--order-details td {
  background: transparent !important;
  border-bottom: 1px solid #1c1c1c !important;
  padding: 14px 16px !important;
  font-family: "DM Sans", sans-serif !important;
  color: #d0d0d0 !important;
  font-size: 13px !important;
}

.woocommerce-order-received .woocommerce-table--order-details thead th {
  color: rgba(255,255,255,.4) !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.woocommerce-order-received .woocommerce-table--order-details tfoot th {
  color: rgba(255,255,255,.5) !important;
}

.woocommerce-order-received .woocommerce-table--order-details tfoot td {
  color: #d4af37 !important;
  font-weight: 700 !important;
}

.woocommerce-order-received .woocommerce-table--order-details .order_item .product-name a {
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 500 !important;
}

/* Total row */
.woocommerce-order-received .order-total th {
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 14px !important;
}

.woocommerce-order-received .order-total td {
  color: #d4af37 !important;
  font-size: 18px !important;
  font-weight: 700 !important;
}

/* Customer details */
.woocommerce-order-received .woocommerce-customer-details {
  text-align: left !important;
  margin-top: 30px !important;
}

.woocommerce-order-received .woocommerce-columns--addresses {
  display: flex !important;
  gap: 16px !important;
}

.woocommerce-order-received .woocommerce-column--billing-address,
.woocommerce-order-received .woocommerce-column--shipping-address {
  flex: 1 !important;
  background: #131313 !important;
  border: 1px solid #1c1c1c !important;
  border-radius: 14px !important;
  padding: 20px !important;
}

.woocommerce-order-received .woocommerce-column--billing-address address,
.woocommerce-order-received .woocommerce-column--shipping-address address {
  color: rgba(255,255,255,.5) !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 13px !important;
  line-height: 1.7 !important;
  font-style: normal !important;
}

/* Back to shop link */
.woocommerce-order-received .woocommerce a.button,
.woocommerce-order-received .woocommerce a.woocommerce-button {
  background: transparent !important;
  color: #d4af37 !important;
  border: 1px solid rgba(212,175,55,.3) !important;
  border-radius: 10px !important;
  padding: 12px 24px !important;
  font-family: "DM Sans", sans-serif !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  letter-spacing: .5px !important;
  text-decoration: none !important;
  transition: all .2s !important;
}

.woocommerce-order-received .woocommerce a.button:hover {
  background: #d4af37 !important;
  color: #000 !important;
}

@media (max-width: 768px) {
  .woocommerce-order-received .woocommerce-order-overview {
    flex-direction: column !important;
  }

  .woocommerce-order-received .woocommerce-order-overview li {
    max-width: 100% !important;
  }

  .woocommerce-order-received .woocommerce-columns--addresses {
    flex-direction: column !important;
  }
}

/* ===== PRODUCT GALLERY - SLIDER WITH DOTS ===== */
.woocommerce-product-gallery {
  position: relative !important;
  overflow: hidden !important;
}

.woocommerce-product-gallery .flex-viewport {
  border-radius: 14px !important;
  overflow: hidden !important;
}

/* Hide thumbnails below, show dots instead */
.woocommerce-product-gallery .flex-control-thumbs {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 14px 0 !important;
  list-style: none !important;
  margin: 0 !important;
}

.woocommerce-product-gallery .flex-control-thumbs li {
  width: 12px !important;
  height: 12px !important;
  flex: none !important;
  overflow: hidden !important;
  border-radius: 50% !important;
  border: 2px solid #333 !important;
  transition: all .2s !important;
  cursor: pointer !important;
}

.woocommerce-product-gallery .flex-control-thumbs li img {
  opacity: 0 !important;
  width: 100% !important;
  height: 100% !important;
  cursor: pointer !important;
}

.woocommerce-product-gallery .flex-control-thumbs li:hover {
  border-color: rgba(212,175,55,.5) !important;
}

.woocommerce-product-gallery .flex-control-thumbs li .flex-active,
.woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
  opacity: 0 !important;
}

.woocommerce-product-gallery .flex-control-thumbs li:has(img.flex-active) {
  background: #d4af37 !important;
  border-color: #d4af37 !important;
}

/* Fallback for browsers without :has */
.woocommerce-product-gallery .flex-control-thumbs li.flex-active-slide {
  background: #d4af37 !important;
  border-color: #d4af37 !important;
}

/* Nav arrows */
.woocommerce-product-gallery .flex-direction-nav {
  display: none !important;
}

/* Single image - no dots needed */
.woocommerce-product-gallery--columns-1 .flex-control-thumbs {
  display: none !important;
}

/* Hide "Vezi cosul" link after add to cart */
.added_to_cart.wc-forward {
  display: none !important;
}

/* ===== SP GALLERY SLIDER ===== */
.sp-carousel {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 14px !important;
}

.sp-carousel .sp-slide { position: absolute !important; top: 0 !important; left: 0 !important; opacity: 0 !important; transition: opacity .6s ease !important;
  display: none !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 14px !important;
}

.sp-carousel .sp-slide.active { position: relative !important; opacity: 1 !important;
  display: block !important;
}

.sp-dots {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 14px 0 !important;
}

.sp-dot {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  border: 2px solid #333 !important;
  background: transparent !important;
  cursor: pointer !important;
  transition: all .2s !important;
  padding: 0 !important;
}

.sp-dot.active {
  background: #d4af37 !important;
  border-color: #d4af37 !important;
}

.sp-dot:hover {
  border-color: rgba(212,175,55,.5) !important;
}

/* ===== SP GALLERY - FADE + BIGGER ===== */
.sp-gallery {
  max-width: 100% !important;
}

.sp-carousel {
  position: relative !important;
  min-height: 400px !important;
}

.sp-carousel .sp-slide {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  opacity: 0 !important;
  transition: opacity .8s ease !important;
  display: block !important;
  border-radius: 14px !important;
}

.sp-carousel .sp-slide.active {
  position: relative !important;
  opacity: 1 !important;
}

.sp-dots .sp-dot {
  width: 12px !important;
  height: 12px !important;
}

@media (max-width: 768px) {
  .sp-carousel {
    min-height: 250px !important;
  }
}

/* ===== GALLERY BIGGER ===== */
.sp-hero {
  gap: 30px !important;
}

.sp-gallery {
  min-width: 55% !important;
}

.sp-carousel {
  min-height: 500px !important;
}

.sp-carousel .sp-slide {
  max-height: 550px !important;
  object-fit: contain !important;
}

@media (max-width: 768px) {
  .sp-carousel {
    min-height: 300px !important;
  }
}

/* ===== MOBILE MENU FULLSCREEN PREMIUM ===== */
.mobile-nav-overlay {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(6,6,6,.97) !important;
  backdrop-filter: blur(30px) !important;
  -webkit-backdrop-filter: blur(30px) !important;
  z-index: 10000 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity .4s cubic-bezier(.4,0,.2,1), visibility .4s !important;
}

.mobile-nav-overlay.is-open {
  opacity: 1 !important;
  visibility: visible !important;
}

.mobile-nav-overlay .mobile-nav-close {
  position: absolute !important;
  top: 20px !important;
  right: 24px !important;
  background: none !important;
  border: none !important;
  color: rgba(255,255,255,.3) !important;
  font-size: 32px !important;
  cursor: pointer !important;
  transition: color .2s !important;
  font-weight: 300 !important;
}

.mobile-nav-overlay .mobile-nav-close:hover {
  color: #d4af37 !important;
}

.mobile-nav-overlay .mobile-nav-links {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0 !important;
}

.mobile-nav-overlay .mobile-nav-links a {
  color: #fff !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 32px !important;
  font-weight: 700 !important;
  padding: 16px 24px !important;
  text-decoration: none !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  opacity: 0 !important;
  transform: translateY(20px) !important;
  transition: all .4s cubic-bezier(.4,0,.2,1) !important;
}

.mobile-nav-overlay.is-open .mobile-nav-links a {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.mobile-nav-overlay.is-open .mobile-nav-links a:nth-child(1) { transition-delay: .1s !important; }
.mobile-nav-overlay.is-open .mobile-nav-links a:nth-child(2) { transition-delay: .2s !important; }
.mobile-nav-overlay.is-open .mobile-nav-links a:nth-child(3) { transition-delay: .3s !important; }
.mobile-nav-overlay.is-open .mobile-nav-links a:nth-child(4) { transition-delay: .4s !important; }
.mobile-nav-overlay.is-open .mobile-nav-links a:nth-child(5) { transition-delay: .5s !important; }

.mobile-nav-overlay .mobile-nav-links a:hover {
  color: #d4af37 !important;
}

.mobile-nav-overlay .mobile-nav-cart {
  margin-top: 40px !important;
  opacity: 0 !important;
  transform: translateY(20px) !important;
  transition: all .4s cubic-bezier(.4,0,.2,1) .5s !important;
}

.mobile-nav-overlay.is-open .mobile-nav-cart {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.mobile-nav-overlay .mobile-nav-cart a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: #d4af37 !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  padding: 14px 32px !important;
  border: 1px solid rgba(212,175,55,.3) !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  transition: all .2s !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
}

.mobile-nav-overlay .mobile-nav-cart a:hover {
  background: #d4af37 !important;
  color: #000 !important;
}

.mobile-nav-overlay .mobile-nav-cart a svg {
  stroke: currentColor !important;
}

/* ===== MOBILE MENU - SMALLER ===== */
.mobile-nav-overlay .mobile-nav-links a {
  font-size: 22px !important;
  padding: 12px 20px !important;
  letter-spacing: 1.5px !important;
}

.mobile-nav-overlay .mobile-nav-cart a {
  font-size: 12px !important;
  padding: 10px 24px !important;
}

.mobile-nav-overlay .mobile-nav-close {
  font-size: 26px !important;
}

/* ===== CART MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .woocommerce-cart .woocommerce {
    padding: 16px 12px !important;
  }

  .woocommerce-cart .shop_table .cart_item {
    flex-wrap: wrap !important;
    gap: 12px !important;
    padding: 14px !important;
  }

  .woocommerce-cart .shop_table .cart_item td.product-thumbnail img {
    width: 65px !important;
    height: 65px !important;
  }

  .woocommerce-cart .shop_table .cart_item td.product-name a {
    font-size: 13px !important;
  }

  .woocommerce-cart .shop_table .cart_item td.product-subtotal {
    font-size: 14px !important;
  }

  .woocommerce-cart .shop_table .cart_item td.product-quantity {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .woocommerce-cart .cart_totals {
    padding: 16px !important;
  }

  .woocommerce-cart .cart_totals .order-total td {
    font-size: 18px !important;
  }

  /* WC Blocks cart mobile */
  .wc-block-cart {
    padding: 10px !important;
  }

  .wc-block-cart-items .wc-block-cart-items__row {
    padding: 14px !important;
  }

  .wc-block-cart .wc-block-cart-item__image {
    min-width: 70px !important;
    width: 70px !important;
  }

  .wc-block-cart .wc-block-cart-item__image img {
    width: 70px !important;
    height: 70px !important;
  }

  .wc-block-components-product-name {
    font-size: 13px !important;
  }

  .wc-block-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
  .wc-block-cart .wc-block-components-totals-footer-item .wc-block-components-formatted-money-amount {
    font-size: 18px !important;
  }

  .wc-block-cart .wp-block-woocommerce-cart-totals-block {
    padding: 16px !important;
  }
}

/* ===== CART TABLE FULL RESPONSIVE ===== */
@media (max-width: 500px) {
  .woocommerce-cart .shop_table,
  .woocommerce-cart .shop_table thead,
  .woocommerce-cart .shop_table tbody,
  .woocommerce-cart .shop_table tr,
  .woocommerce-cart .shop_table td {
    display: block !important;
    width: 100% !important;
  }

  .woocommerce-cart .shop_table thead {
    display: none !important;
  }

  .woocommerce-cart .shop_table .cart_item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 20px 16px !important;
    gap: 10px !important;
  }

  .woocommerce-cart .shop_table .cart_item td.product-thumbnail img {
    width: 100px !important;
    height: 100px !important;
    margin: 0 auto !important;
  }

  .woocommerce-cart .shop_table .cart_item td.product-name {
    width: 100% !important;
  }

  .woocommerce-cart .shop_table .cart_item td.product-name a {
    font-size: 14px !important;
  }

  .woocommerce-cart .shop_table .cart_item td.product-subtotal {
    font-size: 18px !important;
    padding-top: 4px !important;
  }

  .woocommerce-cart .shop_table .cart_item td.product-remove {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
  }

  .woocommerce-cart .shop_table .cart_item {
    position: relative !important;
  }
}

/* ===== CART MOBILE CLEAN ===== */
@media (max-width: 768px) {
  /* Hide labels like Produs, Cantitate, Subtotal */
  .woocommerce-cart .shop_table td::before {
    display: none !important;
  }

  .woocommerce-cart .shop_table .cart_item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 24px 16px !important;
    gap: 8px !important;
    position: relative !important;
    background: #131313 !important;
    border: 1px solid #1c1c1c !important;
    border-radius: 14px !important;
    margin-bottom: 12px !important;
  }

  .woocommerce-cart .shop_table .cart_item td {
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    width: auto !important;
  }

  .woocommerce-cart .shop_table .cart_item td.product-thumbnail {
    order: 1 !important;
  }

  .woocommerce-cart .shop_table .cart_item td.product-thumbnail img {
    width: 120px !important;
    height: 120px !important;
    border-radius: 12px !important;
    object-fit: cover !important;
  }

  .woocommerce-cart .shop_table .cart_item td.product-name {
    order: 2 !important;
  }

  .woocommerce-cart .shop_table .cart_item td.product-name a {
    font-size: 15px !important;
    color: #fff !important;
  }

  .woocommerce-cart .shop_table .cart_item td.product-price {
    display: none !important;
  }

  .woocommerce-cart .shop_table .cart_item td.product-quantity {
    order: 3 !important;
  }

  .woocommerce-cart .shop_table .cart_item td.product-subtotal {
    order: 4 !important;
    font-size: 20px !important;
    color: #d4af37 !important;
    font-weight: 700 !important;
    padding-top: 4px !important;
  }

  .woocommerce-cart .shop_table .cart_item td.product-remove {
    order: 0 !important;
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
  }

  .woocommerce-cart .shop_table .cart_item td.product-remove a {
    color: #444 !important;
    font-size: 16px !important;
  }

  /* Totals clean */
  .woocommerce-cart .cart_totals {
    padding: 20px 16px !important;
    border-radius: 14px !important;
  }

  .woocommerce-cart .cart_totals table th {
    font-size: 12px !important;
  }

  .woocommerce-cart .cart_totals .order-total td {
    font-size: 20px !important;
  }

  .woocommerce-cart .cart_totals .wc-proceed-to-checkout a {
    padding: 16px !important;
    font-size: 14px !important;
    border-radius: 12px !important;
  }

  /* Hide actions row (update cart, coupon) */
  .woocommerce-cart .shop_table .actions {
    display: none !important;
  }
}

/* ===== CART TOTALS MOBILE - SHOW ALL TEXT ===== */
@media (max-width: 768px) {
  .woocommerce-cart .cart_totals table th,
  .woocommerce-cart .cart_totals table td {
    display: table-cell !important;
    color: rgba(255,255,255,.45) !important;
    font-size: 13px !important;
    padding: 10px 0 !important;
  }

  .woocommerce-cart .cart_totals table td {
    color: #d4af37 !important;
    font-weight: 700 !important;
    text-align: right !important;
  }

  .woocommerce-cart .cart_totals .order-total th {
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
  }

  .woocommerce-cart .cart_totals .order-total td {
    color: #d4af37 !important;
    font-size: 20px !important;
  }

  .woocommerce-cart .cart_totals .shipping td {
    font-size: 12px !important;
  }

  .woocommerce-cart .cart_totals h2 {
    display: block !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
  }
}

/* ===== FOOTER MOBILE FIX ===== */
@media (max-width: 768px) {
  .site-footer {
    padding: 30px 0 80px !important;
    overflow: visible !important;
  }

  .site-footer .container {
    overflow: visible !important;
  }

  .site-footer .footer-inner {
    overflow: visible !important;
    gap: 16px !important;
  }

  .site-footer .footer-links {
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .site-footer .footer-bar {
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    padding-bottom: 20px !important;
  }

  .site-footer .footer-bar .footer-anpc-row {
    flex-direction: row !important;
    gap: 12px !important;
  }

  .site-footer .footer-bar .footer-anpc-row img {
    height: 24px !important;
    width: auto !important;
    max-width: 100px !important;
  }
}

/* ===== FOOTER MOBILE COMPLETE FIX ===== */
@media (max-width: 768px) {
  .site-footer,
  .site-footer .container,
  .site-footer .footer-inner,
  .site-footer .footer-bar {
    overflow: visible !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
  }

  .site-footer .footer-links,
  .site-footer .footer-links a,
  .site-footer .footer-bar .footer-copy,
  .site-footer .footer-bar .footer-credit,
  .site-footer .footer-bar .footer-anpc-row,
  .site-footer .footer-bar .footer-anpc-row a,
  .site-footer .footer-bar .footer-anpc-row img {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
  }

  .site-footer .footer-links {
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 0 !important;
  }

  .site-footer .footer-links a {
    display: block !important;
    color: rgba(255,255,255,.4) !important;
    font-size: 12px !important;
  }

  .site-footer .footer-bar .footer-copy,
  .site-footer .footer-bar .footer-credit {
    display: block !important;
    text-align: center !important;
  }

  .site-footer .footer-bar .footer-anpc-row {
    flex-direction: row !important;
    justify-content: center !important;
    gap: 12px !important;
  }

  .site-footer .footer-bar .footer-anpc-row img {
    height: 22px !important;
    width: auto !important;
  }
}

/* ===== CART TOTALS MOBILE ALIGNED ===== */
@media (max-width: 768px) {
  .woocommerce-cart .cart_totals {
    background: #131313 !important;
    border: 1px solid #1c1c1c !important;
    border-radius: 14px !important;
    padding: 20px !important;
    margin-top: 12px !important;
  }

  .woocommerce-cart .cart_totals h2 {
    text-align: center !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: rgba(255,255,255,.4) !important;
    margin-bottom: 16px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid #1c1c1c !important;
  }

  .woocommerce-cart .cart_totals table {
    width: 100% !important;
  }

  .woocommerce-cart .cart_totals table tr {
    display: flex !important;
    justify-content: space-between !important;
    align-items: baseline !important;
    padding: 8px 0 !important;
  }

  .woocommerce-cart .cart_totals table th {
    text-align: left !important;
    font-size: 13px !important;
    color: rgba(255,255,255,.4) !important;
    font-weight: 500 !important;
    padding: 0 !important;
  }

  .woocommerce-cart .cart_totals table td {
    text-align: right !important;
    color: #d4af37 !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    padding: 0 !important;
  }

  .woocommerce-cart .cart_totals .order-total {
    margin-top: 8px !important;
    padding-top: 12px !important;
    border-top: 1px solid #1c1c1c !important;
  }

  .woocommerce-cart .cart_totals .order-total th {
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
  }

  .woocommerce-cart .cart_totals .order-total td {
    font-size: 22px !important;
    font-weight: 700 !important;
  }

  .woocommerce-cart .cart_totals .wc-proceed-to-checkout {
    margin-top: 16px !important;
  }

  .woocommerce-cart .cart_totals .wc-proceed-to-checkout a {
    border-radius: 12px !important;
    padding: 16px !important;
    font-size: 14px !important;
    text-align: center !important;
  }

  /* Shipping clean */
  .woocommerce-cart .cart_totals .shipping td {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 2px !important;
    font-size: 12px !important;
  }
}

/* ===== FOOTER MOBILE FORCE VISIBLE ===== */
@media (max-width: 768px) {
  footer.site-footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
    padding: 30px 12px 40px !important;
    background: #080808 !important;
    border-top: 1px solid rgba(255,255,255,.06) !important;
  }

  footer.site-footer * {
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
    max-height: none !important;
    height: auto !important;
  }

  footer.site-footer .footer-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
  }

  footer.site-footer .footer-logo img {
    height: 28px !important;
    opacity: .5 !important;
  }

  footer.site-footer .footer-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
  }

  footer.site-footer .footer-links a {
    display: block !important;
    color: rgba(255,255,255,.4) !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: .8px !important;
  }

  footer.site-footer .footer-bar {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    padding-top: 14px !important;
    border-top: 1px solid rgba(255,255,255,.06) !important;
    width: 100% !important;
  }

  footer.site-footer .footer-copy {
    display: block !important;
    color: rgba(255,255,255,.18) !important;
    font-size: 10px !important;
    text-align: center !important;
  }

  footer.site-footer .footer-credit {
    display: block !important;
    color: rgba(255,255,255,.13) !important;
    font-size: 9px !important;
    text-align: center !important;
  }

  footer.site-footer .footer-credit a {
    color: rgba(212,175,55,.35) !important;
  }

  footer.site-footer .footer-anpc-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-top: 4px !important;
  }

  footer.site-footer .footer-anpc-row a {
    display: block !important;
  }

  footer.site-footer .footer-anpc-row img {
    height: 22px !important;
    width: auto !important;
  }
}

/* ===== FIX PAGE SCROLL ON MOBILE ===== */
html, body {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  height: auto !important;
  min-height: 100vh !important;
  max-height: none !important;
}

body {
  position: relative !important;
}

.site-main {
  overflow: visible !important;
  min-height: auto !important;
}

/* ===== SALE BADGE CLEAN ===== */
.onsale,
.woocommerce span.onsale,
.product-card .onsale {
  background: #d4af37 !important;
  color: #000 !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  font-family: "DM Sans", sans-serif !important;
  padding: 4px 10px !important;
  border-radius: 20px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  position: absolute !important;
  top: 10px !important;
  left: 10px !important;
  z-index: 2 !important;
  min-width: auto !important;
  min-height: auto !important;
  line-height: normal !important;
  display: inline-block !important;
}

/* ===== WOOCOMMERCE NOTICES CUSTOM ===== */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  background: #1a1a1a !important;
  border: 1px solid rgba(212,175,55,.15) !important;
  border-radius: 14px !important;
  padding: 16px 20px !important;
  color: rgba(255,255,255,.7) !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
  margin-bottom: 16px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  border-left: none !important;
  box-shadow: 0 6px 20px rgba(0,0,0,.3) !important;
}

.woocommerce-error::before,
.woocommerce-message::before,
.woocommerce-info::before {
  color: #d4af37 !important;
  font-size: 18px !important;
}

.woocommerce-error {
  border-color: rgba(204,68,68,.2) !important;
}

.woocommerce-error::before {
  color: #cc4444 !important;
}

.woocommerce-error li,
.woocommerce-message li,
.woocommerce-info li {
  list-style: none !important;
}

.woocommerce-error a,
.woocommerce-message a,
.woocommerce-info a {
  color: #d4af37 !important;
  font-weight: 600 !important;
}

@media (max-width: 768px) {
  .woocommerce-error,
  .woocommerce-message,
  .woocommerce-info {
    font-size: 12px !important;
    padding: 14px 16px !important;
    border-radius: 12px !important;
  }
}

/* ===== ALL NOTICES FORCE STYLE ===== */
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.wc-block-components-notice-banner,
.wc-block-components-notice-banner.is-error,
.wc-block-components-notice-banner.is-info,
.wc-block-components-notice-banner.is-success,
div.woocommerce-error,
div.woocommerce-message,
div.woocommerce-info,
ul.woocommerce-error,
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.wc-floating-notice .woocommerce-error,
.wc-floating-notice .woocommerce-message {
  background: #1a1a1a !important;
  border: 1px solid rgba(212,175,55,.2) !important;
  border-left: 3px solid #d4af37 !important;
  border-radius: 12px !important;
  padding: 16px 20px !important;
  color: rgba(255,255,255,.7) !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
  margin: 16px auto !important;
  max-width: 700px !important;
  box-shadow: 0 6px 20px rgba(0,0,0,.4) !important;
}

div.woocommerce-error,
ul.woocommerce-error,
.wc-block-components-notice-banner.is-error {
  border-left-color: #cc4444 !important;
}

.woocommerce-error::before,
.woocommerce-message::before,
.woocommerce-info::before {
  color: #d4af37 !important;
}

.woocommerce-error::before {
  color: #cc4444 !important;
}

/* Notice inside single product */
.single-product .woocommerce-notices-wrapper {
  max-width: 700px !important;
  margin: 10px auto 0 !important;
  padding: 0 20px !important;
}

/* ===== NOTICE ABSOLUTE OVERRIDE ===== */
[role="alert"],
.woocommerce-error,
.woocommerce-message,
.woocommerce-info,
.woocommerce-notices-wrapper > *,
.container .woocommerce-error,
.container .woocommerce-message,
.site-main .woocommerce-error,
.site-main .woocommerce-message {
  background: #1a1a1a !important;
  border: 1px solid rgba(212,175,55,.2) !important;
  border-left: 3px solid #d4af37 !important;
  border-radius: 12px !important;
  padding: 16px 20px 16px 20px !important;
  color: rgba(255,255,255,.65) !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 13px !important;
  max-width: 600px !important;
  margin: 16px auto !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.5) !important;
  list-style: none !important;
}

[role="alert"].is-error,
.woocommerce-error {
  border-left-color: #cc4444 !important;
}

[role="alert"] .wc-block-components-notice-banner__content,
.woocommerce-error li {
  color: rgba(255,255,255,.65) !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 13px !important;
  list-style: none !important;
}

[role="alert"] svg,
.woocommerce-error::before {
  color: #cc4444 !important;
  fill: #cc4444 !important;
}

/* ===== NOTICE ICON FIX ===== */
.woocommerce-error::before,
.woocommerce-message::before,
.woocommerce-info::before,
[role="alert"]::before {
  content: "⚠️" !important;
  font-size: 16px !important;
  margin-right: 8px !important;
  float: left !important;
  display: inline !important;
}

.woocommerce-error::before,
[role="alert"].is-error::before {
  content: "⚠️" !important;
}

.woocommerce-message::before {
  content: "✓" !important;
}

/* Hide old WC icon */
.woocommerce-error li::before,
.woocommerce-message li::before {
  display: none !important;
}

/* Center the notice nicely */
.woocommerce-error,
[role="alert"] {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
}

/* ===== NOTICE CLEAN - NO ICON ===== */
.woocommerce-error::before,
.woocommerce-message::before,
.woocommerce-info::before,
[role="alert"]::before {
  display: none !important;
  content: none !important;
}

.woocommerce-error,
.woocommerce-message,
.woocommerce-info,
[role="alert"] {
  text-align: center !important;
  display: block !important;
  padding: 18px 24px !important;
}

.woocommerce-error li,
[role="alert"] li {
  list-style: none !important;
}
