/* Vickel — Modern rebuild v2 (orange restraint, mobile-first, premium feel) */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f4f1ec;
  color: #1a1a1a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Bayon', 'Impact', sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
  margin: 0;
  color: #1a1a1a;
}
h1 { font-size: clamp(48px, 9vw, 120px); }
h2 { font-size: clamp(36px, 5vw, 64px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
p, li { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 3px solid #c8551c; outline-offset: 3px; }

/* Top bar */
.topbar {
  background: #1a1a1a;
  color: #d4d4d4;
  font-size: 12px;
  padding: 9px 24px;
  display: flex;
  justify-content: center;
  gap: 24px;
  letter-spacing: 0.06em;
}
.topbar a { color: #f4f1ec; font-weight: 600; transition: color .15s; }
.topbar a:hover { color: #c8551c; }

/* Nav */
.nav {
  background: rgba(244, 241, 236, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav__brand {
  font-family: 'Bayon', sans-serif;
  font-size: 32px;
  letter-spacing: 0.18em;
  color: #1a1a1a;
  display: inline-flex;
  align-items: center;
}
.nav__brand img { height: 36px; width: auto; filter: invert(1); }
.footer__brand img { height: 48px; width: auto; margin-bottom: 16px; }
.nav__menu {
  display: flex;
  gap: 32px;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.nav__menu a { position: relative; padding: 4px 0; transition: color .15s; }
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: #c8551c;
  transform: scaleX(0);
  transition: transform .25s;
}
.nav__menu a:hover { color: #1a1a1a; }
.nav__menu a:hover::after { transform: scaleX(1); }
.nav__menu a.active::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 18px; }
.nav__cart {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 8px;
}
.nav__cart svg { width: 22px; height: 22px; }

.nav__hamburger {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  margin: 5px 0;
  transition: transform .2s, opacity .2s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f4f1ec;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/hero-bg.jpg') center/cover no-repeat;
  filter: brightness(0.5) saturate(0.9);
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
  max-width: 1200px;
}
.hero__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: #c8551c;
}
.hero__title { color: #f4f1ec; }
.hero__sub {
  font-size: clamp(17px, 1.6vw, 21px);
  margin: 32px auto 48px;
  max-width: 660px;
  font-weight: 400;
  color: rgba(244, 241, 236, 0.9);
  line-height: 1.6;
}
.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons (orange used sparingly = primary CTA only) */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 36px;
  background: #1a1a1a;
  color: #f4f1ec;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid #1a1a1a;
  cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s;
}
.btn:hover { background: transparent; color: #f4f1ec; border-color: #f4f1ec; }
.btn--primary {
  background: #c8551c;
  border-color: #c8551c;
  color: #ffffff;
}
.btn--primary:hover { background: #a8451a; border-color: #a8451a; color: #ffffff; }
.btn--outline {
  background: transparent;
  border-color: #f4f1ec;
  color: #f4f1ec;
}
.btn--outline:hover { background: #f4f1ec; color: #1a1a1a; }
.btn--ghost {
  background: transparent;
  color: #1a1a1a;
  border-color: rgba(0,0,0,0.2);
}
.btn--ghost:hover { background: #1a1a1a; color: #f4f1ec; border-color: #1a1a1a; }

/* Section base (scoped to .vk-section so it doesn't bleed to Woo internals) */
.vk-section { padding: 100px 24px; }
.container { max-width: 1280px; margin: 0 auto; }
.section__head {
  text-align: center;
  margin-bottom: 64px;
}
.section__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #5a6b4a;
  margin-bottom: 20px;
}

/* Featured products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(0,0,0,0.08); }
.product-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8e3d6;
  position: relative;
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.product-card:hover .product-card__img img { transform: scale(1.04); }
.product-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: #c8551c;
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 6px 12px;
  text-transform: uppercase;
}
.product-card__body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-card__category {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5a6b4a;
}
.product-card__title {
  font-family: 'Bayon', sans-serif;
  font-size: 30px;
  letter-spacing: 0.02em;
}
.product-card__desc {
  font-size: 13px;
  color: #555;
  line-height: 1.55;
  flex: 1;
}
.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 11px;
  color: #4a4a4a;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.product-card__meta span svg { width: 12px; height: 12px; opacity: 0.5; vertical-align: -2px; margin-right: 4px; }
.product-card__footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.product-card__price {
  font-weight: 700;
  font-size: 18px;
  color: #1a1a1a;
}
.product-card__price .sale-old {
  color: #999;
  text-decoration: line-through;
  font-size: 14px;
  font-weight: 400;
  margin-right: 8px;
}
.product-card__cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a8420a;
}
.footer__brand img { width: 140px; height: auto; display: block; }

/* Elevate two-column */
.elevate { background: #ffffff; }
.elevate__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.elevate__copy h2 { margin-bottom: 24px; }
.elevate__copy p {
  font-size: 17px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 24px;
}
.elevate__img { position: relative; }
.elevate__img img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
@media (max-width: 900px) {
  .elevate__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Reviews */
.reviews { background: #1a1a1a; color: #f4f1ec; }
.reviews .section__head h2 { color: #f4f1ec; }
.reviews .section__eyebrow { color: #c8551c; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: #2a2a2a;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.05);
}
.review-card img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  background: #1a1a1a;
}

/* FAQ */
.faq { background: #f4f1ec; }
.faq__grid { max-width: 820px; margin: 0 auto; }
details.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 24px 0;
}
details.faq-item summary {
  font-family: 'Bayon', sans-serif;
  font-size: 22px;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  color: #1a1a1a;
}
details.faq-item summary::after {
  content: "+";
  font-size: 28px;
  color: #c8551c;
  transition: transform .2s;
}
details.faq-item[open] summary::after { transform: rotate(45deg); }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item p {
  margin-top: 16px;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* Contact strip */
.contact {
  background: #1a1a1a;
  color: #f4f1ec;
  text-align: center;
}
.contact .section__eyebrow { color: #c8551c; }
.contact h2 { color: #f4f1ec; margin-bottom: 16px; }
.contact p { font-size: 18px; margin-bottom: 32px; color: rgba(244, 241, 236, 0.7); }
.contact__info {
  display: flex; gap: 48px; justify-content: center; flex-wrap: wrap;
  font-size: 17px; font-weight: 500;
}
.contact__info a {
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 6px;
  transition: border-color .15s, color .15s;
}
.contact__info a:hover { border-color: #c8551c; color: #c8551c; }
.contact__address { color: rgba(244,241,236,0.6); font-size: 14px; margin-top: 32px; letter-spacing: 0.06em; }

/* Footer */
footer {
  background: #0d0d0d;
  color: #777;
  padding: 64px 24px 32px;
}
.footer__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand h3 {
  color: #f4f1ec;
  font-size: 36px;
  margin-bottom: 16px;
  letter-spacing: 0.15em;
}
.footer__brand p { font-size: 14px; line-height: 1.7; max-width: 340px; }
.footer__col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #c8551c;
  margin-bottom: 18px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 10px; font-size: 14px; }
.footer__col a { transition: color .15s; }
.footer__col a:hover { color: #f4f1ec; }
.footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  text-align: center;
  color: #555;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }

/* Shop page */
.shop-hero {
  padding: 100px 24px 60px;
  background: #ffffff;
  text-align: center;
}
.shop-hero h1 { margin-bottom: 16px; }
.shop-hero p { font-size: 18px; color: #555; max-width: 600px; margin: 0 auto; }
.shop-grid {
  padding: 40px 24px 120px;
  background: #ffffff;
}
.shop-grid .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

/* Product detail */
.product-detail {
  padding: 60px 24px 80px;
  background: #ffffff;
}
.product-detail__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  max-width: 1280px;
  margin: 0 auto;
}
.product-detail__gallery img:first-child {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  margin-bottom: 12px;
}
.product-detail__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.product-detail__thumbs img {
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity .15s;
}
.product-detail__thumbs img:hover { opacity: 1; }
.product-detail__info { padding-top: 8px; }
.product-detail__category {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5a6b4a;
  margin-bottom: 12px;
}
.product-detail__info h1 {
  font-size: clamp(40px, 5vw, 64px);
  margin-bottom: 16px;
  line-height: 1;
}
.product-detail__price {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 12px 0 28px;
}
.product-detail__sale { display: flex; gap: 12px; align-items: baseline; }
.product-detail__sale .old { font-size: 18px; color: #999; text-decoration: line-through; font-weight: 400; }
.product-detail__sale .new { color: #c8551c; }
.product-detail__desc { font-size: 16px; line-height: 1.7; color: #444; margin-bottom: 28px; }
.product-options { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.product-options label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
  color: #1a1a1a;
}
.product-options select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #ffffff;
  font-family: inherit;
  font-size: 15px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%231a1a1a' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.qty-row { display: flex; gap: 12px; margin-bottom: 24px; }
.qty-row input {
  width: 80px;
  padding: 14px 12px;
  border: 1px solid rgba(0,0,0,0.12);
  font-size: 15px;
  font-family: inherit;
}
.qty-row .btn { flex: 1; justify-content: center; }
.product-specs {
  background: #f4f1ec;
  padding: 28px;
  margin-top: 32px;
}
.product-specs h4 {
  font-family: 'Bayon', sans-serif;
  font-size: 24px;
  margin-bottom: 18px;
}
.product-specs ul { list-style: none; padding: 0; margin: 0; }
.product-specs li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 14px;
  display: flex;
  gap: 16px;
}
.product-specs li:last-child { border-bottom: none; }
.product-specs li strong {
  display: inline-block;
  min-width: 200px;
  color: #1a1a1a;
  font-weight: 700;
}

/* Sticky mobile add-to-cart */
.sticky-cart {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 12px 16px;
  z-index: 100;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.06);
  align-items: center;
  gap: 12px;
}
.sticky-cart__price { font-weight: 700; font-size: 16px; }
.sticky-cart .btn { flex: 1; justify-content: center; padding: 14px 20px; font-size: 12px; }

/* Mobile */
@media (max-width: 900px) {
  .nav__menu { display: none; }
  .nav__hamburger { display: block; }
  .vk-section { padding: 72px 20px; }
  .hero { min-height: 68vh; }
  .hero__content { padding: 80px 20px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .product-detail__grid { grid-template-columns: 1fr; }
  .product-detail__info h1 { font-size: 40px; }
  .sticky-cart { display: flex; }
  .product-detail { padding-bottom: 120px; }
  .contact__info { gap: 24px; flex-direction: column; }
}

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: #1a1a1a;
  z-index: 200;
  padding: 24px;
  flex-direction: column;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer__close {
  align-self: flex-end;
  background: none;
  border: 0;
  color: #f4f1ec;
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
}
.mobile-drawer__menu {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-drawer__menu a {
  color: #f4f1ec;
  font-family: 'Bayon', sans-serif;
  font-size: 48px;
  letter-spacing: 0.05em;
}

/* Trust strip */
.trust-strip {
  background: #1a1a1a;
  color: #d4d4d4;
  padding: 28px 24px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.trust-strip__item { display: flex; align-items: center; gap: 10px; }
.trust-strip__item svg { width: 18px; height: 18px; stroke: #c8551c; }
@media (max-width: 700px) {
  .trust-strip { gap: 24px; padding: 20px; font-size: 11px; }
}

/* Spec chips */
.spec-chips {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin: 16px 0 24px;
}
.spec-chip {
  background: #f4f1ec;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a1a;
}
.spec-chip strong { color: #c8551c; margin-right: 6px; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 80ms); }

/* Verified owner badge */
.review-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c8551c;
  margin-top: 12px;
}
.review-card__verified::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #5a6b4a;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(90,107,74,0.25);
}
.review-card__location {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(244, 241, 236, 0.5);
  margin-top: 4px;
}
.review-card__stars { color: #f0a020; font-size: 16px; letter-spacing: 2px; margin: 14px 0 10px; }
.review-card__quote { font-size: 14px; line-height: 1.55; color: rgba(244,241,236,0.85); margin: 0 0 14px; font-style: italic; }
.review-card__author { font-family: 'Bayon','Impact',sans-serif; font-size: 22px; letter-spacing: 0.02em; color: #f4f1ec; line-height: 1; margin-bottom: 4px; }

/* If no JS, reveal everything */
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* === Storefront override: full-width content (HOME + opt-in fullwidth template only) === */
body.home .site-main,
body.home .content-area,
body.home .col-full,
body.home #primary,
body.home #main,
body.page-template-template-fullwidth .site-main,
body.page-template-template-fullwidth .content-area,
body.page-template-template-fullwidth .col-full,
body.page-template-template-fullwidth #primary,
body.page-template-template-fullwidth #main {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}
body.home .site-content,
body.page-template-template-fullwidth .site-content { padding: 0 !important; }
body.home .entry-content,
body.home .site-main article,
body.home .site-main .entry-content,
body.page-template-template-fullwidth .entry-content,
body.page-template-template-fullwidth .site-main article,
body.page-template-template-fullwidth .site-main .entry-content {
  max-width: 100% !important;
  margin: 0 !important;
}
body.home .hentry,
body.page-template-template-fullwidth .hentry { margin: 0 !important; padding: 0 !important; }
body.home main#content,
body.page-template-template-fullwidth main#content { margin: 0 !important; padding: 0 !important; }
body.home main { margin-bottom: 0 !important; }

/* Sidebar always off (we hide it everywhere via storefront_sidebar filter too) */
body.right-sidebar #secondary { display: none !important; }

/* Hide Storefront handheld footer bar */
.storefront-handheld-footer-bar { display: none !important; }

/* Page title hide on home (extra safety) */
body.home .entry-title { display: none; }
body.home .page-header { display: none; }

/* === Container for Woo + non-home pages === */
body:not(.home):not(.page-template-template-fullwidth) main#content,
body:not(.home):not(.page-template-template-fullwidth) .col-full {
  max-width: 1280px !important;
  padding: 32px !important;
  margin: 0 auto !important;
  display: flow-root !important;
}
body:not(.home):not(.page-template-template-fullwidth) #primary,
body:not(.home):not(.page-template-template-fullwidth) .content-area {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}
@media (max-width: 768px) {
  body:not(.home):not(.page-template-template-fullwidth) main#content,
  body:not(.home):not(.page-template-template-fullwidth) .col-full {
    padding: 20px 16px !important;
  }
}

/* Woo product layout: keep Storefront 2-column floats inside container */
.woocommerce div.product,
.woocommerce-page div.product { display: flow-root; }
.woocommerce div.product div.images,
.woocommerce-page div.product div.images { width: 48% !important; float: left !important; margin: 0 !important; }
.woocommerce div.product div.summary,
.woocommerce-page div.product div.summary { width: 48% !important; float: right !important; margin: 0 !important; clear: none !important; }
.woocommerce div.product div.images img,
.woocommerce-page div.product div.images img,
.woocommerce div.product .woocommerce-product-gallery__image img { width: 100% !important; height: auto !important; display: block; }
.woocommerce div.product .woocommerce-tabs,
.woocommerce-page div.product .woocommerce-tabs { clear: both; padding-top: 48px; display: block !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs,
.woocommerce-page div.product .woocommerce-tabs ul.tabs {
  width: 100% !important; float: none !important; padding: 0 0 0 0 !important; margin: 0 0 24px 0 !important;
  list-style: none !important; border-bottom: 1px solid #d4cfc4 !important; display: flex !important; gap: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after { display: none !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li {
  background: transparent !important; border: 0 !important; border-radius: 0 !important;
  margin: 0 !important; padding: 0 !important; box-shadow: none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li a {
  padding: 14px 24px !important; display: block; font-weight: 600; color: #5a5550 !important;
  border-bottom: 2px solid transparent; margin-bottom: -1px; text-decoration: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li.active a { color: #1a1a1a !important; border-bottom-color: #c8551c !important; }
.woocommerce div.product .woocommerce-tabs .panel,
.woocommerce-page div.product .woocommerce-tabs .panel {
  width: 100% !important; float: none !important; padding: 0 !important; margin: 0 !important;
  max-width: none !important;
}
.woocommerce div.product .woocommerce-tabs .panel > h2:first-child,
.woocommerce-page div.product .woocommerce-tabs .panel > h2:first-child { display: none; }

/* Variation rows clean */
.woocommerce div.product form.cart .variations { border: 0 !important; margin: 0 0 16px !important; }
.woocommerce div.product form.cart .variations th.label,
.woocommerce div.product form.cart .variations td.label { padding: 8px 0 !important; }
.woocommerce div.product form.cart .variations label {
  font-weight: 600; font-size: 14px; color: #1a1a1a; text-transform: lowercase;
}
.woocommerce div.product form.cart .variations select {
  width: 100%; padding: 10px 14px; border: 1px solid #d4cfc4; background: #fff;
  font-family: inherit; font-size: 15px; color: #1a1a1a;
  appearance: none; -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #5a5550 50%), linear-gradient(135deg, #5a5550 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
}
.woocommerce div.product form.cart .variations select:focus { border-color: #c8551c; outline: 2px solid rgba(200,85,28,0.15); }
.woocommerce div.product form.cart .reset_variations { font-size: 12px; color: #c8551c; margin-left: 8px; }
.woocommerce div.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: #c8551c !important; font-size: 28px !important; font-weight: 700; margin: 8px 0 16px !important; }
.woocommerce div.product .price del { color: #5a5550 !important; opacity: 0.6; font-weight: 400; margin-right: 8px; }
.woocommerce div.product .product_title { font-family: 'Bayon','Impact',sans-serif; font-size: clamp(36px,5vw,56px) !important; line-height: 0.95; margin: 0 0 8px !important; }
.woocommerce div.product div.summary > .woocommerce-product-details__short-description p { color: #4a4540; margin-bottom: 16px; }

/* Add to cart button orange */
.woocommerce div.product form.cart button.single_add_to_cart_button { background: #c8551c !important; color: #fff !important; border: 0 !important; padding: 14px 28px !important; font-weight: 700 !important; border-radius: 2px !important; text-transform: uppercase; letter-spacing: 0.05em; }
.woocommerce div.product form.cart button.single_add_to_cart_button:hover { background: #a8451a !important; }
.woocommerce div.product form.cart .quantity input.qty { padding: 12px; border: 1px solid #d4cfc4; width: 64px; text-align: center; }

/* SKU + Category styling */
.woocommerce div.product .product_meta { border-top: 1px solid #d4cfc4; padding-top: 16px; margin-top: 20px; font-size: 13px; color: #5a5550; }
.woocommerce div.product .product_meta > span { display: inline-block; margin-right: 16px; }
.woocommerce div.product .product_meta a { color: #c8551c; }

/* Sale badge */
.woocommerce span.onsale { background: #c8551c !important; color: #fff !important; border-radius: 2px !important; padding: 4px 10px !important; font-weight: 700 !important; text-transform: uppercase; letter-spacing: 0.05em; font-size: 11px; min-height: 0 !important; min-width: 0 !important; line-height: 1.4 !important; }

/* Prev / grid / next product nav */
.vickel-prevnext { display: flex; align-items: center; justify-content: space-between; padding: 16px 0 24px; border-bottom: 1px solid #ece6d8; margin-bottom: 32px; }
.vickel-prevnext a { color: #1a1a1a; padding: 8px 12px; border-radius: 2px; font-size: 14px; text-decoration: none; transition: color .15s; }
.vickel-prevnext a:hover { color: #c8551c; }
.vickel-prevnext .vp-grid { color: #5a5550; }
.vickel-prevnext .vp-disabled { opacity: 0.25; pointer-events: none; }
@media (max-width: 768px) {
  .woocommerce div.product div.images,
  .woocommerce-page div.product div.images,
  .woocommerce div.product div.summary,
  .woocommerce-page div.product div.summary { width: 100% !important; float: none !important; }
}

/* Footer must clear product floats */
footer, .site-footer { clear: both; }
.site-footer { margin: 0 !important; }
.site-content-inner { padding: 0 !important; }
footer { margin-top: 0 !important; }
