/*
Theme Name: Mebl Centar React Port
Theme URI: https://example.com/
Author: Codex
Author URI: https://openai.com/
Description: WordPress theme port of the React Mebl Centar catalog demo.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: mebl-centar
*/

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --background: #f7f5f1;
  --foreground: #2e2e2e;
  --card: #fbfaf7;
  --primary: #333333;
  --primary-foreground: #f7f5f1;
  --secondary: #e9e5dd;
  --muted: #eeeae2;
  --muted-foreground: #766f68;
  --border: #e4ddd2;
  --gold: #c8a04a;
  --gold-dark: #a77f2c;
  --cream: #f8f4eb;
  --charcoal: #2e2e2e;
  --shadow-soft: 0 4px 20px -4px rgb(0 0 0 / 8%);
  --shadow-medium: 0 8px 30px -8px rgb(0 0 0 / 12%);
  --shadow-elevated: 0 20px 50px -15px rgb(0 0 0 / 15%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
  top: 32px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.1;
  margin: 0;
}

p {
  line-height: 1.65;
}

.container-wide {
  width: min(100% - 64px, 1400px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgb(228 221 210 / 70%);
  background: rgb(247 245 241 / 92%);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  display: flex;
  height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted-foreground);
  font-size: .94rem;
  font-weight: 600;
}

.main-nav a:hover,
.main-nav .current-menu-item a,
.main-nav .active {
  color: var(--foreground);
}

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

.icon-button,
.menu-toggle {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
  font-size: 1.1rem;
}

.icon-button:hover,
.menu-toggle:hover {
  background: var(--secondary);
}

.cart-link {
  position: relative;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  display: none;
  min-width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.cart-count.has-items {
  display: grid;
}

.menu-toggle {
  display: none;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  padding: 8px 0 16px;
}

.mobile-nav a {
  display: block;
  border-radius: 6px;
  padding: 12px;
  color: var(--muted-foreground);
  font-weight: 600;
}

.mobile-nav a:hover {
  background: var(--secondary);
  color: var(--foreground);
}

.hero {
  position: relative;
  min-height: clamp(520px, 72vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(46 46 46 / 86%), rgb(46 46 46 / 48%), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 690px;
  padding: 80px 0;
  color: var(--cream);
  animation: slideUp .6s ease-out both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.35rem, 7vw, 4.6rem);
  font-weight: 700;
}

.hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgb(248 244 235 / 82%);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.return-empty {
  padding: 10px 20px !important;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: transparent;
  color: var(--muted-foreground);
  transition: .2s ease;
}

.return-empty:hover {
  background: var(--secondary);
  color: var(--foreground);
}

.button,
button.button,
input.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 18px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
}

.button.gold {
  background: var(--gold);
  color: #fff;
}

.button.gold:hover {
  background: var(--gold-dark);
}

.button.outline {
  border-color: var(--border);
  background: transparent;
  color: var(--foreground);
}

.button.light-outline {
  border-color: var(--cream);
  background: transparent;
  color: var(--cream);
}

.button.light-outline:hover {
  background: var(--cream);
  color: var(--charcoal);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.button:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
}

.section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.section.compact {
  padding: 38px 0;
}

.section.secondary {
  background: var(--secondary);
}

.section.primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.section-heading {
  margin-bottom: 36px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading p {
  max-width: 720px;
  margin: 12px auto 0;
  color: var(--muted-foreground);
}

.features-grid,
.category-grid,
.product-grid,
.values-grid,
.stats-grid {
  display: grid;
  gap: 22px;
}

.features-grid {
  grid-template-columns: repeat(4, 1fr);
}

.category-grid {
  grid-template-columns: repeat(2, 1fr);
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.values-grid {
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature {
  display: flex;
  gap: 14px;
  align-items: center;
}

.feature-icon,
.contact-icon,
.value-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 8px;
  background: rgb(200 160 74 / 12%);
  color: var(--gold);
  font-size: 1.35rem;
}

.feature h3 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
}

.feature p {
  margin: 4px 0 0;
  color: var(--muted-foreground);
  font-size: .9rem;
  line-height: 1.4;
}

.category-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform .5s ease;
}

.category-card:hover img,
.product-card:hover img {
  transform: scale(1.05);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(46 46 46 / 82%), rgb(46 46 46 / 18%), transparent);
}

.category-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 26px;
  color: var(--cream);
}

.category-copy h3 {
  font-size: 1.8rem;
}

.category-copy p {
  margin: 8px 0 0;
  color: rgb(248 244 235 / 74%);
}

.product-card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  background: var(--card);
  padding: 12px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow .2s ease, transform .2s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px;
  background: var(--muted);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 9px;
  background: var(--gold);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
}

.product-image .badge {
  position: absolute;
  left: 10px;
  top: 10px;
}

.product-meta {
  margin-top: 13px;
  flex: 1;
}

.product-material {
  margin: 0 0 6px;
  color: var(--muted-foreground);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 2.2em;
  font-size: 1.12rem;
  font-weight: 700;
}

.product-card h3 a:hover {
  color: var(--gold);
}

.product-colors {
  margin: 8px 0;
  color: var(--muted-foreground);
  font-size: .78rem;
}

.price {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: baseline;
  margin-top: 8px;
  font-weight: 800;
}

.price small {
  color: var(--muted-foreground);
  font-size: .8rem;
  font-weight: 500;
}

.product-card .button {
  width: 100%;
  min-height: 40px;
  margin-top: 12px;
  font-size: .85rem;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: clamp(48px, 7vw, 88px) 24px;
  text-align: center;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: radial-gradient(currentColor 1px, transparent 1px);
  background-size: 18px 18px;
}

.cta-panel>* {
  position: relative;
}

.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-panel p {
  max-width: 720px;
  margin: 16px auto 0;
  color: rgb(247 245 241 / 78%);
}

.page-hero {
  background: var(--secondary);
  padding: clamp(56px, 8vw, 90px) 0;
}

.page-hero.center {
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.page-hero p {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--muted-foreground);
  font-size: 1.08rem;
}

.shop-layout {
  width: min(100% - 64px, 1400px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: start;
}

.shop-sidebar-card {
  border-radius: 10px;
  background: var(--card);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.shop-sidebar-card h3 {
  margin-bottom: 18px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.shop-category-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shop-category-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  padding: 12px 14px;
  background: var(--background);
  color: var(--foreground);
  transition: .2s ease;
}

.shop-category-list li a:hover {
  background: var(--gold);
  color: #fff;
}

.shop-category-list li span {
  opacity: .7;
  font-size: .85rem;
}

.shop-main-content {
  min-width: 0;
}

.shop-sidebar .woocommerce-product-search {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shop-sidebar .search-field {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  background: #fff;
  font: inherit;
}

.shop-sidebar button {
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
}

.shop-sidebar button:hover {
  background: var(--gold-dark);
}

.filters {
  position: sticky;
  top: 98px;
  border-radius: 8px;
  background: var(--card);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.filter-group+.filter-group {
  margin-top: 24px;
}

.filter-title {
  margin: 0 0 10px;
  font-family: Inter, system-ui, sans-serif;
  font-size: .9rem;
  font-weight: 800;
}

.input,
.textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  color: var(--foreground);
  font: inherit;
  padding: 12px 13px;
}

.textarea {
  min-height: 150px;
  resize: vertical;
}

.filter-options {
  display: grid;
  gap: 8px;
}

.filter-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-foreground);
  font-size: .92rem;
  cursor: pointer;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  padding: 7px 12px;
  color: var(--foreground);
  font-size: .84rem;
  cursor: pointer;
}

.chip.active,
.chip:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.results-count {
  margin: 0 0 20px;
  color: var(--muted-foreground);
  font-size: .92rem;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: start;
}

.detail-image {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--muted);
}

.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breadcrumb {
  border-bottom: 1px solid var(--border);
  background: var(--secondary);
  padding: 15px 0;
  color: var(--muted-foreground);
  font-size: .9rem;
}

.breadcrumb a:hover {
  color: var(--foreground);
}

.detail-info h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
}

.detail-description {
  color: var(--muted-foreground);
}

.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.swatch {
  width: 24px;
  height: 24px;
  border: 2px solid var(--border);
  border-radius: 999px;
  background: var(--muted);
  cursor: pointer;
}

.swatch.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgb(200 160 74 / 25%);
}

.quantity-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.quantity-row input {
  max-width: 96px;
  text-align: center;
}

.detail-box {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
}

.detail-box dl {
  display: grid;
  gap: 14px;
  margin: 16px 0 0;
}

.detail-box div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgb(228 221 210 / 70%);
  padding-bottom: 10px;
}

.detail-box div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.detail-box dt {
  color: var(--muted-foreground);
}

.detail-box dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.benefit {
  border-radius: 8px;
  background: var(--secondary);
  padding: 16px;
  font-size: .9rem;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: start;
}

.stat {
  text-align: center;
}

.stat strong {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
}

.stat span {
  display: block;
  margin-top: 8px;
  color: rgb(247 245 241 / 72%);
}

.value-card {
  border-radius: 8px;
  background: var(--card);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.value-icon {
  margin: 0 auto 16px;
  border-radius: 999px;
}

.value-card h3 {
  font-size: 1.35rem;
}

.value-card p {
  color: var(--muted-foreground);
  font-size: .92rem;
}

.contact-list {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item h3 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
}

.contact-item p {
  margin: 6px 0 0;
  color: var(--muted-foreground);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-field label {
  font-size: .92rem;
  font-weight: 700;
}

.map-embed {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  margin-top: 32px;
  background: var(--muted);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--primary);
  color: var(--primary-foreground);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 56px 0;
}

.site-footer p,
.site-footer a {
  color: rgb(247 245 241 / 70%);
}

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

.site-footer h3 {
  margin-bottom: 14px;
  font-size: 1.32rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgb(247 245 241 / 12%);
  padding: 22px 0;
  color: rgb(247 245 241 / 55%);
  font-size: .82rem;
}

.hidden {
  display: none !important;
}

/* =========================
   WooCommerce
========================= */

.woocommerce-result-count,
.woocommerce-ordering {
  margin: 0;
}

.woocommerce-ordering select {
  min-width: 220px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  padding: 10px 14px;
  color: var(--foreground);
  font: inherit;
}

/* .woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
} */

.woocommerce ul.products,
.woocommerce-page ul.products {
  width: 100%;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce ul.products li.product a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background: var(--card);
  padding: 14px;
  box-shadow: var(--shadow-soft);
  transition: .25s ease;
  overflow: hidden;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.woocommerce ul.products li.product a img {
  width: 100% !important;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px !important;
  transition: transform .4s ease;
}

.woocommerce ul.products li.product:hover a img {
  transform: scale(1.04);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--foreground);
  padding: 0;
  margin-bottom: 10px;
}

.woocommerce ul.products li.product .price {
  color: var(--gold-dark);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.woocommerce ul.products li.product .button {
  width: 100%;
  min-height: 44px;
  border-radius: 6px;
  background: var(--gold);
  color: #fff;
  text-align: center;
  font-weight: 700;
  margin-top: auto;
}

.woocommerce ul.products li.product .button:hover {
  background: var(--gold-dark);
}

.woocommerce span.onsale {
  top: 12px;
  left: 12px;
  min-height: auto;
  min-width: auto;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--gold);
  line-height: 1;
  font-size: .75rem;
}

.woocommerce nav.woocommerce-pagination {
  margin-top: 40px;
  text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
  border-right: 0;
  margin: 0 4px;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  border-radius: 6px;
  background: #fff;
  padding: 12px 16px;
  color: var(--foreground);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--gold);
  color: #fff;
}

.woocommerce-page {
  padding: 40px 0 80px;
}

.woocommerce-breadcrumb {
  margin-bottom: 24px;
  color: var(--muted-foreground);
  font-size: .92rem;
}

.woocommerce-breadcrumb a:hover {
  color: var(--foreground);
}

.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.shop-main-inner [data-shop-search-results] {
  transition: opacity .18s ease;
}

.mebl-shop-search-empty {
  grid-column: 1 / -1;
}


/* .shop-reset-filters {
  text-align: center;
  width: 80%;
  display: block;
  margin: 0 auto;
  padding: 10px 20px;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
} */

.shop-reset-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 10px 24px -12px rgb(167 127 44 / 55%);
  transition: all .25s ease;
}

.shop-reset-filters:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  box-shadow: 0 16px 30px -14px rgb(167 127 44 / 65%);
  color: #fff;
}

.shop-reset-filters:active {
  transform: translateY(0);
}

/* .shop-reset-filters:hover {
  background: transparent;
  color: var(--gold);
} */

.error-404-page {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.error-404-container {
  max-width: 700px;
  text-align: center;
}

.error-code {
  display: block;
  font-size: 120px;
  line-height: 1;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
}

.error-404-container h1 {
  font-size: 42px;
  margin-bottom: 18px;
}

.error-404-container p {
  font-size: 18px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 36px;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-btn {
  min-width: 220px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .2s ease;
}

.primary-btn {
  background: var(--gold);
  color: #fff;
}

.primary-btn:hover {
  opacity: .9;
}

.secondary-btn {
  border: 1px solid #d8d8d8;
  color: #222;
  background: #fff;
}

.secondary-btn:hover {
  background: #f5f5f5;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {

  .features-grid,
  .product-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-layout,
  .product-detail,
  .two-column {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid,
  .single-product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .shop-reset-filters {
    width: 50%;
  }
}

@media (max-width: 760px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .main-nav,
  .nav-actions .search-link,
  .nav-actions .account-link {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .hero {
    min-height: 520px;
  }

  .hero::after {
    background: rgb(46 46 46 / 68%);
  }

  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .features-grid,
  .category-grid,
  .product-grid,
  .stats-grid,
  .benefits,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 340px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .products-grid,
  .single-product-grid,
  .product-gallery-grid {
    grid-template-columns: 1fr;
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: 1fr !important;
  }

  .shop-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .single-product-summary {
    position: static;
  }

  .shop-reset-filters{
    width: 80%;
  }
}

body.woocommerce-page {
  padding: 0 !important;
  margin: 0 !important;
}

body.woocommerce-page #page,
body.woocommerce-page .site,
body.woocommerce-page .site-content,
body.woocommerce-page .content-area {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.woocommerce-page .site-main {
  margin-top: 0 !important;
  padding-top: 24px !important;
}

.woocommerce-products-header {
  margin-bottom: 32px;
}

.woocommerce-products-header__title.page-title {
  margin-bottom: 10px;
}

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

.woocommerce-breadcrumb {
  display: none;
}

/* =========================
   SINGLE PRODUCT
========================= */

.single-product-page {
  padding: 40px 0 80px;
}

.single-product-container {
  width: min(100% - 64px, 1380px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 56px;
  align-items: start;
}

.single-product-gallery {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.single-product-main-image {
  overflow: hidden;
  border-radius: 14px;
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.single-product-main-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.single-product-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.thumbnail {
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  transition: .2s ease;
}

.thumbnail img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.thumbnail.active {
  border-color: var(--gold);
}

.thumbnail:hover {
  transform: translateY(-2px);
}

.single-product-info {
  position: sticky;
  top: 100px;
  border-radius: 18px;
  background: var(--card);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.single-product-category {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.single-product-category a {
  color: inherit;
}

.single-product-title {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: .95;
}

.single-product-price {
  margin-bottom: 24px;
  font-size: 2rem;
  font-weight: 800;
}

.single-product-price .amount {
  color: var(--gold-dark);
}

.single-product-price small {
  margin-left: 6px;
  color: var(--muted-foreground);
  font-size: 1rem;
  font-weight: 500;
}

.single-product-description {
  margin-bottom: 28px;
  color: var(--muted-foreground);
  line-height: 1.8;
  font-size: 1rem;
}

.single-product-stock {
  margin-bottom: 24px;
  font-size: .95rem;
}

.single-product-stock .in-stock {
  color: #2e7d32;
  font-weight: 700;
}

.single-product-stock .out-of-stock {
  color: #c62828;
  font-weight: 700;
}

.single-product-cart {
  margin-top: 24px;
}

.single-product-cart form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.single-product-cart .quantity {
  margin: 0 !important;
}

.single-product-cart input.qty {
  width: 100px;
  min-height: 54px;
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
  background: #fff;
  font: inherit;
  font-weight: 600;
}

.single-product-cart .single_add_to_cart_button {
  min-height: 54px;
  border: 0 !important;
  border-radius: 10px !important;
  padding: 0 34px !important;
  background: var(--gold) !important;
  color: #fff !important;
  font-size: .95rem !important;
  font-weight: 700 !important;
  transition: .2s ease;
}

.single-product-cart .single_add_to_cart_button:hover {
  background: var(--gold-dark) !important;
}

.single-product-meta {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 14px;
  color: var(--muted-foreground);
  font-size: .92rem;
}

.single-product-meta strong {
  color: var(--foreground);
}

.related.products {
  width: min(100% - 64px, 1380px);
  margin: 90px auto 0;
}

.related.products > h2 {
  margin-bottom: 28px;
  font-size: 2.2rem;
}

.variation-group {
  margin-bottom: 24px;
}

.variation-group label {
  display: block;
  margin-bottom: 12px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--foreground);
}

.variation-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.variation-swatch {
  width: 72px;
  height: 72px;
  padding: 0;
  overflow: hidden;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: all .2s ease;
}

.variation-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.variation-swatch:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.variation-swatch.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgb(200 160 74 / 18%);
}

@media (max-width: 760px) {
  .variation-swatch {
    width: 58px;
    height: 58px;
  }
}

/* =========================
   RESPONSIVE
========================= */

/* =========================
   CART PAGE
========================= */

.cart-page {
  padding: 56px 0 90px;
  background: #f6f3ee;
}

.cart-header {
  margin-bottom: 42px;
  text-align: center;
}

.cart-header h1 {
  margin-bottom: 14px;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
}

.cart-header p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted-foreground);
  font-size: 1.02rem;
}

.custom-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e7dfd3;
  border-radius: 12px;
  align-items: start;
  min-width: 0;
}

.cart-item-image {
  width: 140px;
  height: 140px;
  overflow: hidden;
  border-radius: 8px;
  background: #f2eee8;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-card.detail-box div {
  display: block;
  justify-content: initial;
  gap: initial;
  border-bottom: 0;
  padding-bottom: 0;
}

.cart-item-content {
  display: flex;
  flex-direction: row;
  gap: 22px;
  min-width: 0;
}

.cart-item-content .amount {
  font-size: 1.2rem;
}

.cart-item-content .cart-item-top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

/* .cart-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #ece5db;
} */

.cart-item-title {
  font-family: Inter, system-ui, sans-serif;
  margin: 10px 0 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.cart-item-title a {
  color: #222;
}

.cart-item-title a:hover {
  color: var(--gold);
}

.cart-item-variation {
  color: var(--muted-foreground);
  font-size: .92rem;
}

.cart-item-variation dl {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}

.cart-item-variation dt {
  font-weight: 700;
  color: var(--foreground);
}

.cart-item-variation dd {
  margin: 0;
}

/* .cart-remove .remove {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(198 40 40 / 14%);
  background: #fff5f5;
  color: #c62828 !important;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  transition: all .2s ease;
}

.cart-remove .remove:hover {
  background: #c62828;
  color: #fff !important;
  box-shadow: 0 12px 24px -12px rgb(198 40 40 / 55%);
} */

/* Cart Remove Button */
.cart-remove .remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #a40000 !important;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  margin: 0;
  transition: .2s ease;
}

.cart-remove .remove:hover {
  background: #f5f5f5;
}

.cart-item-bottom {
  display: flex !important;
  align-items: center !important;
  gap: 80px !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}

.cart-meta-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  min-height: auto;
}

.cart-meta-label {
  font-size: .9rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
}

.cart-meta-value {
  display: flex;
  align-items: flex-end;
  min-height: auto;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--foreground);
}

.cart-quantity-wrap {
  display: flex;
  align-items: center;
}

.cart-item-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 2rem;
  font-weight: 800;
  color: var(--foreground);
}

.cart-item-price small {
  color: var(--muted-foreground);
  font-size: .95rem;
  font-weight: 500;
}

.cart-item .quantity {
  margin: 0 !important;
}

/* Cart Item Quantity Input */
.cart-item .qty {
  width: 70px;
  height: 48px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  background: #fff;
}

.cart-summary-box {
  position: sticky;
  top: 100px;
  border: 1px solid #e8e1d7;
  border-radius: 18px;
  background: #fff;
  padding: 30px;
  box-shadow: none;
}

.cart-summary-box h2 {
  margin-bottom: 28px;
  font-size: 2.2rem;
}

.cart-summary-box h3 {
  margin-bottom: 28px;
  font-size: 2.2rem;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #ece5db;
  font-size: 1rem;
}

.summary-row:last-child {
  border-bottom: 0;
}

.total-row {
  margin-top: 12px;
  font-size: 1.2rem;
  font-weight: 700;
}

.total-row strong {
  color: var(--foreground);
  font-size: 2rem;
  font-weight: 800;
}

.coupon-row {
  flex-direction: column;
  align-items: stretch;
  border-bottom: 0;
  padding-bottom: 0;
}

.coupon-row .input-text {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 16px;
  background: #fff;
  font: inherit;
}

.coupon-row .button {
  width: 100%;
  min-height: 50px;
}

.checkout-button {
  width: 100%;
  padding: 10px 20px;
  text-align: center;
  margin: 0;
}

/* .checkout-button {
  width: 100%;
  min-height: 60px;
  margin-top: 26px;
  border-radius: 14px !important;
  background: linear-gradient(135deg, #2f2d2d, #1f1d1d) !important;
  color: #fff !important;
  font-size: 1rem;
  font-weight: 700;
  border: 0 !important;
  transition: all .25s ease;
  box-shadow: 0 18px 34px -18px rgb(0 0 0 / 45%);
}

.checkout-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #1f1d1d, #111) !important;
  box-shadow: 0 24px 40px -20px rgb(0 0 0 / 55%);
} */

.return-to-shop .button,
.cart-return-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid #ddd4c8;
  border-radius: 14px;
  background: #fff;
  color: var(--foreground);
  font-weight: 700;
  transition: all .2s ease;
}

.return-to-shop .button:hover,
.cart-return-button:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  color: var(--gold-dark);
  box-shadow: var(--shadow-soft);
}

.custom-cart-form .button[name="update_cart"] {
  margin-top: 26px;
  min-height: 50px;
  border-radius: 10px;
  background: var(--primary);
}

.empty-cart-box {
  border-radius: 20px;
  background: var(--card);
  padding: 60px 30px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.empty-cart-box h2 {
  margin-bottom: 12px;
  font-size: 2.4rem;
}

.empty-cart-box p {
  margin-bottom: 28px;
  color: var(--muted-foreground);
}

/* =========================
   CHECKOUT PAGE
========================= */

.checkout-page {
  padding: 56px 0 90px;
  background: #f6f3ee;
}

.custom-checkout-form {
  margin: 0;
}

.custom-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 34px;
  align-items: start;
}

.checkout-form-side {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.checkout-card,
.checkout-summary-box,
.woocommerce-form-coupon {
  border: 1px solid #e8e1d7;
  border-radius: 18px;
  background: #fff;
  padding: 30px;
  box-shadow: none;
}

.checkout-summary-box {
  position: sticky;
  top: 100px;
}

.checkout-card h3,
.checkout-summary-box h3,
.checkout-summary-box #order_review_heading {
  margin-bottom: 24px;
  font-size: 2rem;
}

.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper,
.woocommerce-additional-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.custom-checkout-form .form-row {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.custom-checkout-form .form-row-wide,
.custom-checkout-form #billing_address_1_field,
.custom-checkout-form #billing_address_2_field,
.custom-checkout-form #billing_email_field,
.custom-checkout-form #billing_phone_field,
.custom-checkout-form #order_comments_field {
  grid-column: 1 / -1;
}

.custom-checkout-form label {
  margin-bottom: 8px;
  color: var(--foreground);
  font-size: .9rem;
  font-weight: 700;
}

.custom-checkout-form input.input-text,
.custom-checkout-form textarea,
.custom-checkout-form select,
.custom-checkout-form .select2-container--default .select2-selection--single,
.woocommerce-form-coupon .input-text {
  width: 100%;
  min-height: 52px;
  border: 1px solid #ddd6ca;
  border-radius: 10px;
  background: #fff;
  padding: 0 16px;
  color: var(--foreground);
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.custom-checkout-form textarea {
  min-height: 130px;
  padding-top: 14px;
  resize: vertical;
}

.custom-checkout-form input.input-text:focus,
.custom-checkout-form textarea:focus,
.custom-checkout-form select:focus,
.woocommerce-form-coupon .input-text:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgb(200 160 74 / 16%);
}

.custom-checkout-form .select2-container--default .select2-selection--single {
  display: flex;
  align-items: center;
}

.custom-checkout-form .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
  color: var(--foreground);
}

.custom-checkout-form .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 50px;
  right: 10px;
}

.woocommerce-shipping-fields,
.woocommerce-additional-fields {
  margin-top: 10px;
}

.woocommerce-form-coupon {
  width: min(100% - 64px, 1380px);
  margin: 0 auto 24px !important;
}

.woocommerce-form-coupon p {
  margin-bottom: 14px;
  color: var(--muted-foreground);
}

.woocommerce-form-coupon .form-row {
  margin: 0 10px 0 0 !important;
  padding: 0 !important;
}

.woocommerce-form-coupon .button,
.custom-checkout-form #place_order {
  min-height: 54px;
  border: 0 !important;
  border-radius: 10px !important;
  background: var(--gold) !important;
  color: #fff !important;
  padding: 0 28px !important;
  font-weight: 800 !important;
  transition: background .2s ease, transform .2s ease;
}

.woocommerce-form-coupon .button:hover,
.custom-checkout-form #place_order:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px);
}

.checkout-summary-box .shop_table {
  display: block;
  width: 100%;
  border: 0 !important;
  margin: 0 0 24px !important;
}

.checkout-summary-box .shop_table thead {
  display: none;
}

.checkout-summary-box .shop_table tbody,
.checkout-summary-box .shop_table tfoot,
.checkout-summary-box .shop_table tr {
  display: block;
}

.checkout-summary-box .shop_table th,
.checkout-summary-box .shop_table td {
  border: 0 !important;
  padding: 0 !important;
}

.checkout-summary-box .cart_item {
  display: flex !important;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid #ece5db;
}

.checkout-summary-box .cart_item .product-name {
  color: var(--foreground);
  font-weight: 700;
}

.checkout-summary-box .product-quantity,
.checkout-summary-box .variation {
  color: var(--muted-foreground);
  font-size: .9rem;
  font-weight: 500;
}

.checkout-summary-box .cart-subtotal,
.checkout-summary-box .order-total,
.checkout-summary-box .woocommerce-shipping-totals,
.checkout-total-row {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid #ece5db;
}

.checkout-shipping-methods {
  display: block;
  width: 100%;
  border: 0;
}

.checkout-shipping-methods tbody,
.checkout-shipping-methods tr {
  display: block;
  width: 100%;
}

.checkout-shipping-methods th,
.checkout-shipping-methods td {
  display: block;
  border: 0 !important;
  padding: 0 !important;
}

.checkout-shipping-methods .woocommerce-shipping-totals {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.checkout-shipping-methods ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkout-shipping-methods li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-summary-box .order-total {
  margin-top: 8px;
  border-bottom: 0;
}

.checkout-summary-box .order-total th,
.checkout-summary-box .order-total td {
  font-size: 1.2rem;
  font-weight: 800;
}

.checkout-summary-box .order-total .amount {
  font-size: 1.8rem;
  color: var(--foreground);
}

.checkout-summary-box #payment {
  border-radius: 16px;
  background: linear-gradient(180deg, #fdfbf8 0%, #f7f3ed 100%) !important;
  padding: 22px;
}

.checkout-summary-box #payment ul.payment_methods {
  border-bottom: 1px solid #e8e1d7 !important;
  padding: 0 0 18px !important;
}

.checkout-summary-box #payment div.payment_box {
  border-radius: 12px;
  background: #fff !important;
  color: var(--muted-foreground) !important;
}

.checkout-summary-box .place-order {
  margin: 22px 0 0 !important;
  padding: 0 !important;
}

.custom-checkout-form #place_order {
  width: 100%;
  margin-top: 18px;
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  border: 0 !important;
  border-radius: 12px;
  padding: 18px 22px !important;
  margin-bottom: 24px !important;
  box-shadow: var(--shadow-soft);
}

.woocommerce-message {
  background: rgb(46 125 50 / 10%) !important;
  color: #2e7d32 !important;
}

.woocommerce-error {
  background: rgb(198 40 40 / 10%) !important;
  color: #c62828 !important;
}

.woocommerce-info {
  background: rgb(2 136 209 / 10%) !important;
  color: #0288d1 !important;
}

@media (max-width: 1024px) {

  .custom-cart-layout {
    grid-template-columns: 1fr;
  }

  .custom-checkout-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary-box {
    position: static;
  }

  .checkout-summary-box {
    position: static;
  }
}

@media (max-width: 760px) {

  .cart-item {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .cart-item-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .cart-item-image {
    width: 100%;
    max-width: 220px;
    height: 220px;
  }

  .cart-summary-box {
    padding: 24px;
  }

  .checkout-page {
    padding: 36px 0 70px;
  }

  .custom-checkout-layout {
    gap: 22px;
  }

  .checkout-card,
  .checkout-summary-box,
  .woocommerce-form-coupon {
    padding: 22px;
  }

  .woocommerce-billing-fields__field-wrapper,
  .woocommerce-shipping-fields__field-wrapper,
  .woocommerce-additional-fields__field-wrapper {
    grid-template-columns: 1fr;
  }

  .woocommerce-form-coupon {
    width: min(100% - 32px, 1380px);
  }

  .woocommerce-form-coupon .form-row {
    width: 100% !important;
    margin: 0 0 12px !important;
  }

  .checkout-summary-box .cart_item,
  .checkout-summary-box .cart-subtotal,
  .checkout-summary-box .order-total,
  .checkout-summary-box .woocommerce-shipping-totals {
    align-items: flex-start;
  }
}
