/* ==========================================================================
   VAINAS LEATHER - Global Styles
   Font: TeX Gyre Heros Cn (condensed) - self-hosted, GFL licensed
   ========================================================================== */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "TeX Gyre Heros Cn";
  src: url("../fonts/texgyreheroscn-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TeX Gyre Heros Cn";
  src: url("../fonts/texgyreheroscn-italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "TeX Gyre Heros Cn";
  src: url("../fonts/texgyreheroscn-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TeX Gyre Heros Cn";
  src: url("../fonts/texgyreheroscn-bolditalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
  --font-base: "TeX Gyre Heros Cn", "Arial Narrow", Arial, Helvetica, sans-serif;

  --color-black: #0d0d0d;
  --color-white: #ffffff;
  --color-ink: #1a1a1a;
  --color-muted: #6b6b6b;
  --color-line: #e6e6e6;

  --footer-bg: #111111;
  --footer-heading: #ffffff;
  --footer-link: #a5a5a5;
  --footer-link-hover: #ffffff;
  --footer-divider: #2a2a2a;

  --container: 1240px;
  --radius-pill: 999px;
  --radius-sm: 10px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-ink);
  background: var(--color-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-line);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: 76px;
}

/* Left navigation */
.main-nav {
  justify-self: start;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-ink);
  letter-spacing: 0.2px;
  transition: color 0.15s ease;
}
.main-nav a:hover {
  color: var(--color-muted);
}
.main-nav .chevron {
  width: 11px;
  height: 11px;
  opacity: 0.7;
}

/* Center logo */
.brand {
  justify-self: center;
}
.brand img {
  height: 24px;
  width: auto;
}

/* Right utilities */
.header-tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-select {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-pill);
  background: var(--color-white);
  font-size: 14px;
  color: var(--color-ink);
}
.lang-select .chevron {
  width: 11px;
  height: 11px;
  opacity: 0.7;
}

/* Search */
.header-search {
  display: flex;
  align-items: center;
  height: 38px;
  padding: 0 6px 0 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-pill);
  background: var(--color-white);
  gap: 8px;
}
.header-search input {
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  width: 150px;
  color: var(--color-ink);
}
.header-search input::placeholder {
  color: #9a9a9a;
}
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: var(--color-black);
  color: var(--color-white);
  padding: 0;
}
.icon-btn svg {
  width: 14px;
  height: 14px;
}

/* Cart */
.cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  padding: 0;
  border-radius: 50%;
  transition: opacity 0.15s ease;
}
.cart-btn:hover {
  opacity: 0.85;
}
.cart-btn svg {
  width: 38px;
  height: 38px;
}

.header-divider {
  width: 1px;
  height: 26px;
  background: var(--color-line);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 22px;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--color-black);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: opacity 0.15s ease;
}
.btn-primary:hover {
  opacity: 0.85;
}

/* Mobile menu toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  width: 40px;
  height: 38px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   HERO  (5 x 3 image mosaic + overlay banners)
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-white);
  padding: 22px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  /* slight clockwise tilt (left-top high -> right-bottom low); scaled up so rotated edges still cover the width */
  transform: rotate(3deg) scale(1.08);
  transform-origin: center center;
}
.hero-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

/* Shared banner box */
.hero-banner {
  position: absolute;
  left: 50%;
  background: var(--color-white);
  text-align: center;
  transform: translate(-50%, -50%);
}

/* "VAINAS LEATHER" banner -> sits over the first row */
.hero-banner--brand {
  top: 16.66%;
  border: 7px solid #121212;
  padding: 16px 60px;
}
.hero-banner--brand span {
  color: #fe6d2c;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* "END OF THE SEASON SALE" banner -> vertically centered (over the middle row) */
.hero-banner--sale {
  top: 50%;
  border: 3px solid #121212;
  padding: 30px 70px;
}
.sale-title {
  margin: 0 0 14px;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #121212;
  white-space: nowrap;
}
.sale-discount {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fe6d2c;
}
.sale-figure {
  font-size: 88px;
  font-weight: 700;
  line-height: 1;
}
.sale-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.05;
}
.sale-side--left {
  text-align: right;
}
.sale-side--right {
  text-align: left;
  align-self: flex-start;
}

/* ==========================================================================
   COLLECTIONS  (2 x 2 cards, name overlaid bottom-right)
   ========================================================================== */
.collections {
  margin-top: 40px;
  margin-bottom: 40px;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.collection-card {
  position: relative;
  display: block;
  overflow: hidden;
}
.collection-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.collection-card:hover img {
  transform: scale(1.03);
}
.collection-name {
  position: absolute;
  right: 26px;
  bottom: 22px;
  color: var(--color-white);
  font-size: 60px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   SPECIAL PRODUCTS
   ========================================================================== */
.special-products {
  padding: 80px 0;
  overflow-x: hidden;
}
.sp-inner {
  width: min(1280px, calc(100% - 40px));
  max-width: 1280px;
  margin-inline: auto;
  box-sizing: border-box;
}
.sp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}
.sp-title {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #121212;
}
.view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  color: #121212;
  white-space: nowrap;
}
.view-all svg {
  width: 24px;
  height: 24px;
}

/* .vainas-wc-shortcode-grid is a pass-through wrapper — grid lives on ul.products inside it */
.vainas-wc-shortcode-grid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.products-grid,
.special-products .products-grid:not(.vainas-wc-shortcode-grid),
.special-products ul.products,
.special-products .products-grid ul.products,
.explore-collection ul.products,
.explore-collection .products-grid,
.vainas-wc-shortcode-grid ul.products,
.woocommerce .products-grid,
.woocommerce-page .woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* WooCommerce column width overrides */
.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
  content: none;
}

.woocommerce ul.products li.product,
.special-products ul.products li.product,
.explore-collection ul.products li.product,
.woocommerce .products-grid > li.product,
.special-products .products-grid > .product-card,
.explore-collection .products-grid > .product-card,
.products-grid > .product-card,
.products-grid > article.product-card {
  margin: 0 !important;
  padding: 0;
  width: 100% !important;
  max-width: 100%;
  float: none !important;
  clear: none !important;
}

.product-card {
  display: flex;
  flex-direction: column;
}
.product-media {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
}
.product-media img {
  width: 100%;
  aspect-ratio: 308 / 340;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.product-card:hover .product-media img {
  transform: scale(1.03);
}
.quick-add {
  position: absolute;
  top: 20px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.19);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #121212;
  /* hidden until the card is hovered/focused */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.product-card:hover .quick-add,
.product-card:focus-within .quick-add {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.quick-add svg {
  width: 24px;
  height: 24px;
}

.product-info {
  margin-top: 12px;
}
.product-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.product-row--bottom {
  margin-top: 15px;
  align-items: baseline;
}
.product-title {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  color: #121212;
}
.product-rating {
  flex-shrink: 0;
  font-size: 14px;
  letter-spacing: 2px;
  color: #121212;
  line-height: 1.2;
}
.product-sizes {
  font-size: 14px;
  color: #5a5a5a;
}
.product-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex-shrink: 0;
}
.price-now {
  font-size: 24px;
  font-weight: 700;
  color: #fe6d2c;
}
.price-old {
  font-size: 20px;
  font-weight: 700;
  color: #5a5a5a;
  text-decoration: line-through;
}

/* ==========================================================================
   THE DEFINITION
   ========================================================================== */
.definition {
  padding: 80px 0;
}
.def-inner {
  width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  gap: 243px;
}
.def-left {
  flex: 0 0 535px;
  max-width: 535px;
}
.def-title {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.12;
  color: #121212;
}
.def-text {
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.4;
  color: #121212;
}
.def-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 32px;
  border: 1px solid #121212;
  border-radius: 999px;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  color: #121212;
  transition: background 0.2s ease, color 0.2s ease;
}
.def-btn:hover {
  background: #121212;
  color: var(--color-white);
}
.def-bottom-img {
  margin-top: 87px;
  width: 420px;
  height: 302px;
  object-fit: cover;
  border-radius: 24px;
}
.def-right {
  flex: 0 0 502px;
}
.def-right img {
  width: 502px;
  height: 680px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

/* ==========================================================================
   VISIT OUR STORE  (full-width row, columns sized by image aspect ratio)
   ========================================================================== */
.visit {
  padding-bottom: 40px;
}
.visit-row {
  display: flex;
  height: clamp(280px, 28vw, 420px);
}
.visit-col {
  position: relative;
  overflow: hidden;
  min-width: 0;
}
/* widths driven by flex-grow (basis 0): dark box + image aspect ratios */
.visit-col--text {
  flex: 0.7 1 0;
  background: #1b1b1b;
  display: flex;
  align-items: center;
  padding: 28px 30px;
}
.visit-col--text p {
  margin: 0;
  color: var(--color-white);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.visit-col--img {
  display: block;
  background-size: cover;
  background-position: center;
}
.visit-col--img::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);
}
.visit-jackets {
  flex: 1.438 1 0;
  background-image: url("../images/leather-jackets.png");
}
.visit-textiles {
  flex: 0.72 1 0;
  background-image: url("../images/leather-textiles.png");
}
.visit-clearance {
  flex: 0.72 1 0;
  background-image: url("../images/clearance.png");
}
.visit-label {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 1;
  color: var(--color-white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
  padding: 80px 0;
}
.testi-inner {
  width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.testi-intro {
  flex: 0 0 421px;
  max-width: 421px;
}
.testi-heading {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #121212;
}
.testi-sub {
  margin: 24px 0 0;
  font-size: 20px;
  line-height: 1.4;
  color: #121212;
}

.testi-slider {
  flex: 0 0 586px;
  max-width: 586px;
  position: relative;
}
.quote-icon {
  display: block;
  margin-bottom: 16px;
}
.testi-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #121212;
}
.testi-text {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.4;
  color: #121212;
}
.testi-foot {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e7e1de;
  color: #121212;
  font-size: 16px;
  font-weight: 700;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.testi-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: #121212;
}
.testi-stars {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #121212;
}
.testi-role {
  display: block;
  font-size: 12px;
  color: #5a5a5a;
}

.testi-nav {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.testi-arrow {
  width: 49px;
  height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(18, 18, 18, 0.08);
  background: transparent;
  color: #121212;
  padding: 0;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.testi-arrow--next {
  background: rgba(18, 18, 18, 0.08);
}
.testi-arrow:hover {
  background: #121212;
  border-color: #121212;
  color: var(--color-white);
}
.testi-arrow:active {
  transform: scale(0.96);
}

/* ==========================================================================
   VIDEO SECTION
   ========================================================================== */
.video-section {
  position: relative;
  width: 100%;
  height: 680px;
  background: url("../images/video-section.png") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
}
.video-play {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.video-play svg {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}
.video-play:hover {
  transform: scale(1.08);
}

/* ==========================================================================
   ABOUT US HERO
   ========================================================================== */
/* Overlay header: transparent, sits on top of the hero image */
.site-header--overlay,
body.vainas-overlay-header .site-header,
body:has(.about-hero) .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
  border-bottom: none;
}

body.admin-bar .site-header--overlay,
body.admin-bar.vainas-overlay-header .site-header,
body.admin-bar:has(.about-hero) .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header--overlay,
  body.admin-bar.vainas-overlay-header .site-header,
  body.admin-bar:has(.about-hero) .site-header {
    top: 46px;
  }
}

/* About page — hero flush to top (no gap from main/article wrappers) */
body.vainas-about-page #main-content,
body:has(.about-hero) #main-content,
.vainas-about-main {
  margin: 0;
  padding: 0;
}

body.vainas-about-page #main-content > .entry-header,
body:has(.about-hero) #main-content > .entry-header,
body.vainas-about-page .entry-header,
body:has(.about-hero) .entry-header {
  display: none;
}

body.vainas-about-page .entry-content,
body:has(.about-hero) .entry-content,
.vainas-about-main .entry-content {
  margin: 0;
  padding: 0;
}

body.vainas-about-page .about-hero,
body:has(.about-hero) .about-hero {
  margin-top: 0;
}

body.vainas-about-page .entry-content > :first-child,
body:has(.about-hero) .entry-content > :first-child,
.vainas-about-main > :first-child {
  margin-top: 0;
}

.about-hero {
  position: relative;
  width: 100%;
  min-height: 766px;
  background: url("../images/About-us-hero.png") center / cover no-repeat;
  color: var(--color-white);
}
.about-hero-inner {
  width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
  min-height: 766px;
  display: flex;
  flex-direction: column;
  /* 76px header + 72px gap before the heading */
  padding-top: 148px;
  padding-bottom: 56px;
}
.about-hero-title {
  margin: 0;
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-white);
}
.about-hero-foot {
  width: 578px;
  max-width: 100%;
  margin-top: 307px;
}
.about-hero-text {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-white);
}
.about-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  height: 56px;
  padding: 4px 4px 4px 28px;
  border-radius: 999px;
  background: var(--color-white);
  color: #121212;
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.15s ease;
}
.about-hero-btn:hover {
  opacity: 0.92;
}
.about-hero-btn:hover .about-hero-btn-icon svg {
  transform: rotate(45deg);
}
.about-hero-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}
.about-hero-btn-icon svg {
  width: 48px;
  height: 48px;
  transition: transform 0.2s ease;
}

/* ==========================================================================
   ABOUT FEATURE  (two full-width image panels)
   ========================================================================== */
.about-feature {
  padding: 30px 0 20px;
}
.about-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.about-feature-card {
  position: relative;
  aspect-ratio: 708 / 980;
  overflow: hidden;
}
.about-feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-feature-text {
  position: absolute;
  left: 0;
  right: 0;
  padding: 40px;
}
.about-feature-text--bottom {
  bottom: 0;
}
.about-feature-text--top {
  top: 0;
}
.about-feature-title {
  margin: 0 0 14px;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
}
.about-feature-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  max-width: 460px;
}
.about-feature-card--light .about-feature-text,
.about-feature-card--dark .about-feature-text {
  color: var(--color-white);
}

/* ==========================================================================
   ABOUT VIDEO
   ========================================================================== */
.about-video {
  width: 100%;
  padding: 20px 24px;
}
.about-video-media {
  position: relative;
  width: 100%;
  height: 640px;
  background: url("../images/about-video.png") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 24px;
}
.about-video-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   POLICY PAGE (Shipping & Return)
   ========================================================================== */
.policy {
  padding: 80px 0 100px;
}
.policy-inner {
  width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
}
.policy-title {
  margin: 0 0 48px;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: #121212;
}
.policy-body {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.policy-content {
  flex: 1 1 auto;
  max-width: 820px;
}
.policy-heading {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 700;
  color: #121212;
}
.policy-heading + p {
  margin-top: 0;
}
.policy-content .policy-note {
  font-weight: 700;
  color: #121212;
}
.policy-content p {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #444444;
}
.policy-content .policy-heading:not(:first-child) {
  margin-top: 44px;
}

.policy-toc {
  flex: 0 0 240px;
  position: sticky;
  top: 100px;
}
.policy-toc-title {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 700;
  color: #121212;
}
.policy-toc ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.policy-toc a {
  font-size: 14px;
  color: #5a5a5a;
  transition: color 0.15s ease;
}
.policy-toc a:hover {
  color: #121212;
}
.policy-toc a.is-active {
  color: #121212;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Payment Security page */
.payment .payment-block + .payment-block {
  margin-top: 48px;
}
.payment .policy-heading {
  margin: 0 0 18px;
  font-size: 32px;
  font-weight: 700;
  color: #121212;
}
.payment .payment-block p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #121212;
}
.payment .payment-block p + p {
  margin-top: 18px;
}
.payment .payment-bank-lines {
  line-height: 1.9;
}
.payment .payment-cards {
  margin: 24px 0 0;
  width: fit-content;
}
.payment .payment-cards img {
  display: block;
  max-width: 100%;
  height: auto;
}
.payment .payment-cards figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #1a3b8b;
}

/* ==========================================================================
   FAQ PAGE
   ========================================================================== */
.faq {
  padding: 80px 0;
}
.faq-inner {
  width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
}
.faq-title {
  margin: 0 0 48px;
  text-align: center;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: #121212;
}
.faq-item {
  border-bottom: 1px solid #121212;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.faq-item:last-child {
  margin-bottom: 0;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  text-align: left;
  font-family: inherit;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  color: #121212;
  cursor: pointer;
}
.faq-toggle {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background: #121212;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.faq-toggle::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.faq-toggle::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.faq-item.is-open .faq-toggle::after {
  opacity: 0;
  transform: translateX(-50%) scaleY(0);
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.25s ease;
}
.faq-item.is-open .faq-a {
  grid-template-rows: 1fr;
}
.faq-a > p {
  min-height: 0;
  margin: 0;
  padding-top: 16px;
  max-width: 1000px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #121212;
}

/* Still Need Help */
.need-help {
  padding: 80px 0 120px;
}
.need-help-inner {
  width: 457px;
  max-width: calc(100% - 40px);
  margin-inline: auto;
  text-align: center;
}
.need-help-title {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: #121212;
}
.need-help-text {
  margin: 16px 0 0;
  font-size: 22px;
  line-height: 1.4;
  color: #121212;
}
.need-help-btn {
  display: inline-block;
  margin-top: 42px;
  padding: 18px 112px;
  border-radius: 999px;
  background: #121212;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  transition: opacity 0.15s ease;
}
.need-help-btn:hover {
  opacity: 0.88;
}

/* ==========================================================================
   CONTACT US PAGE
   ========================================================================== */
.contact {
  padding: 80px 0;
}
.contact-inner {
  width: min(1280px, calc(100% - 40px));
  max-width: 1280px;
  margin-inline: auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  box-sizing: border-box;
}
.contact-info,
.contact-form-col {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
}
.contact-title {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: #121212;
}
.contact-lead {
  margin: 16px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #121212;
}

/* Info list */
.contact-list {
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #f3f3f3;
  color: #121212;
}
.contact-icon svg {
  width: 18px;
  height: 18px;
}
.contact-text {
  font-size: 16px;
  line-height: 1.45;
  color: #121212;
  align-self: center;
}

/* Map */
.contact-map {
  margin-top: 32px;
  height: 268px;
  border-radius: 12px;
  overflow: hidden;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Form */
.contact-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: flex;
  gap: 16px;
}
.form-row input {
  flex: 1 1 0;
  min-width: 0;
}
.form-row--single {
  display: block;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: #121212;
  background: var(--color-white);
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  padding: 0 20px;
  height: 52px;
  outline: none;
  transition: border-color 0.15s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9a9a9a;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #121212;
}
.contact-form textarea {
  height: auto;
  min-height: 140px;
  border-radius: 18px;
  padding: 16px 20px;
  resize: vertical;
}
.select-wrap {
  position: relative;
}
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.select-wrap .chevron {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  opacity: 0.7;
  pointer-events: none;
}
.contact-submit {
  align-self: flex-start;
  margin-top: 56px; /* 16px gap + 56px = 72px from last field */
  height: 52px;
  min-width: 170px;
  padding: 0 36px;
  border: none;
  border-radius: 999px;
  background: #121212;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.contact-submit:hover {
  opacity: 0.88;
}

/* Contact Form 7 — match themed contact form layout */
.contact-form-col .wpcf7 {
  margin-top: 32px;
}

.contact-form-col .wpcf7 form.contact-form {
  margin-top: 0;
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
}

.contact-form .form-row .wpcf7-form-control-wrap {
  flex: 1 1 0;
}

.contact-form .wpcf7-not-valid-tip {
  font-size: 13px;
  margin-top: 6px;
  color: #e53935;
}

.contact-form .wpcf7-spinner {
  display: none;
}

.contact-form-col .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 16px;
  border-radius: 12px;
  border-width: 1px;
}

.contact-form input.wpcf7-submit.contact-submit {
  width: auto;
}

/* CF7 select chevron (no SVG needed in CF7 admin — avoids ModSecurity 403 on save) */
.contact-form .select-wrap select,
.contact-form .wpcf7-form-control-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23121212' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='2,4 6,8 10,4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px 12px;
}

/* CF7 shortcodes-only fallback: 2-column grid when theme wrapper did not run */
.contact-form-col .wpcf7-form.contact-form:not(:has(.form-row)) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form-col .wpcf7-form.contact-form:not(:has(.form-row)) > p,
.contact-form-col .wpcf7-form.contact-form:not(:has(.form-row)) > span {
  margin: 0;
}

.contact-form-col .wpcf7-form.contact-form:not(:has(.form-row)) > p:nth-child(n+5),
.contact-form-col .wpcf7-form.contact-form:not(:has(.form-row)) > span:nth-child(n+5) {
  grid-column: 1 / -1;
}

/* Contact page — theme wrapper resets (guards against wpautop-broken editor content) */
body.vainas-contact-page #main-content,
body.vainas-contact-page .vainas-contact-main {
  margin: 0;
  padding: 0;
}

body.vainas-contact-page .contact {
  padding: 56px 0 80px;
}

.vainas-contact-main > p,
.contact-inner > p,
.contact-form-col > p:not(.contact-lead),
.contact-form .form-row br {
  display: none;
}

/* Contact — mobile / tablet */
@media (max-width: 991px) {
  body.vainas-contact-page #main-content,
  body:has(.contact) #main-content,
  .vainas-contact-main {
    margin: 0;
    padding: 0;
  }

  body.vainas-contact-page .entry-header,
  body:has(.contact) .entry-header {
    display: none;
  }

  body.vainas-contact-page .entry-content,
  body:has(.contact) .entry-content,
  .vainas-contact-main .entry-content {
    margin: 0;
    padding: 0;
  }

  body.vainas-contact-page .entry-content > :first-child,
  body:has(.contact) .entry-content > :first-child,
  .vainas-contact-main > :first-child {
    margin-top: 0;
  }

  .contact {
    padding: 24px 0 56px;
  }

  .contact-inner {
    width: 100%;
    max-width: none;
    padding-left: 16px;
    padding-right: 16px;
    margin-inline: 0;
    gap: 32px;
  }

  .contact-info,
  .contact-form-col {
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
  }

  .contact-form {
    margin-top: 24px;
    gap: 16px;
  }

  /* Stack paired fields vertically with even spacing on mobile */
  .contact-form .form-row:not(.form-row--single) {
    flex-direction: column;
    gap: 16px;
  }

  .contact-form .form-row input {
    flex: none;
    width: 100%;
    height: 52px;
    min-height: 52px;
  }

  .contact-form .form-row .wpcf7-form-control-wrap {
    flex: none;
    width: 100%;
  }

  .contact-form .form-row--single {
    display: block;
    width: 100%;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .contact-form .select-wrap {
    width: 100%;
  }

  .contact-submit {
    margin-top: 24px;
    width: 100%;
    align-self: stretch;
  }

  .contact-form input.wpcf7-submit.contact-submit {
    width: 100%;
  }

  .contact-form-col .wpcf7-form.contact-form:not(:has(.form-row)) {
    grid-template-columns: 1fr;
  }

  .contact-map {
    margin-top: 24px;
  }
}

/* ==========================================================================
   EXPLORE COLLECTION PAGE
   ========================================================================== */
.explore-collection {
  padding: 80px 0 100px;
  overflow-x: hidden;
}
.explore-inner {
  width: min(1280px, calc(100% - 40px));
  max-width: 1280px;
  margin-inline: auto;
  box-sizing: border-box;
}
.explore-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.explore-title {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.12;
  color: #121212;
}
.explore-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #121212;
  white-space: nowrap;
}
.explore-all-link .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fe6d2c;
  flex-shrink: 0;
}

.collection-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 28px;
}
.collection-tab {
  font-size: 16px;
  font-weight: 400;
  color: #5a5a5a;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.collection-tab.is-active {
  color: #121212;
  font-weight: 700;
  border-bottom-color: #121212;
}
.collection-tab:hover {
  color: #121212;
}

.collection-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.collection-sort-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.collection-sort-label strong {
  font-size: 16px;
  font-weight: 700;
  color: #121212;
}
.collection-sort-label span {
  font-size: 14px;
  color: #5a5a5a;
}
.collection-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}
.filter-dropdown {
  position: relative;
}
.filter-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  background: var(--color-white);
  font-size: 14px;
  color: #121212;
  white-space: nowrap;
  cursor: pointer;
}
.filter-select .chevron {
  width: 11px;
  height: 11px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}
.filter-dropdown.is-open .filter-select .chevron {
  transform: rotate(180deg);
}

.filter-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #f7f7f7;
  border-radius: 12px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.12);
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}
.filter-dropdown.is-open .filter-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.filter-menu li {
  margin: 0;
}
.filter-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-size: 14px;
  color: #121212;
  cursor: pointer;
  transition: background 0.15s ease;
}
.filter-menu button:hover {
  background: rgba(18, 18, 18, 0.06);
}

.explore-collection .products-grid,
.explore-collection ul.products {
  margin-bottom: 48px;
}
.explore-more-wrap {
  display: flex;
  justify-content: center;
}
.view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  height: 72px;
  padding: 12px 12px 12px 40px;
  border: none;
  border-radius: 999px;
  background: #121212;
  color: var(--color-white);
  font-size: 24px;
  font-weight: 700;
  transition: opacity 0.15s ease;
}
.view-more-btn:hover {
  opacity: 0.9;
}
.view-more-btn:hover .view-more-icon svg {
  transform: rotate(45deg);
}
.view-more-text {
  line-height: 1;
}
.view-more-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}
.view-more-icon svg {
  width: 48px;
  height: 48px;
  transition: transform 0.2s ease;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-link);
  padding: 64px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.3fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-col h4 {
  margin: 0 0 22px;
  color: var(--footer-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-links li {
  margin-bottom: 13px;
}
.footer-links a {
  color: var(--footer-link);
  font-size: 15px;
  transition: color 0.15s ease;
}
.footer-links a:hover {
  color: var(--footer-link-hover);
}

.footer-contact p {
  margin: 0 0 14px;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 1.6;
}
.footer-contact a:hover {
  color: var(--footer-link-hover);
}

/* Social icons */
.social-list {
  display: flex;
  gap: 14px;
}
.social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--color-white);
  transition: opacity 0.15s ease;
}
.social-list a:hover {
  opacity: 0.82;
}
.social-list svg {
  width: 48px;
  height: 48px;
}

/* Bottom band: big logo + copyright */
.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
}
.footer-logo img {
  width: clamp(220px, 34vw, 420px);
  height: auto;
}
.footer-copyright {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #8c8c8c;
  white-space: nowrap;
  padding-bottom: 8px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
  .header-search input {
    width: 110px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }
  .hero-banner--brand span { font-size: 32px; }
  .hero-banner--brand { padding: 12px 40px; border-width: 5px; }
  .sale-title { font-size: 30px; }
  .sale-figure { font-size: 64px; }
  .sale-side { font-size: 18px; }
  .hero-banner--sale { padding: 22px 44px; }
  .products-grid,
  .special-products .products-grid,
  .special-products .woocommerce ul.products,
  .special-products ul.products,
  .special-products .products-grid ul.products,
  .special-products .vainas-wc-shortcode-grid .woocommerce ul.products,
  .explore-collection ul.products,
  .explore-collection .products-grid,
  .vainas-wc-shortcode-grid ul.products,
  .vainas-wc-shortcode-grid ul.products[class*="columns-"],
  .woocommerce .products-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px;
    width: 100% !important;
    max-width: 100% !important;
  }

  .special-products .woocommerce ul.products li.product,
  .special-products .vainas-wc-shortcode-grid ul.products li.product,
  .vainas-wc-shortcode-grid ul.products li.product,
  .vainas-wc-shortcode-grid ul.products[class*="columns-"] li.product {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    clear: none !important;
    flex: none !important;
    margin: 0 !important;
  }

  .sp-inner,
  .explore-inner {
    width: 100%;
    max-width: none;
    padding-left: 16px;
    padding-right: 16px;
    margin-inline: 0;
  }

  .product-media img {
    width: 100%;
    height: 165px;
    max-height: 165px;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .visit-row { flex-wrap: wrap; height: auto; }
  .visit-col--text { flex: 1 1 100%; }
  .visit-col--text p { font-size: 26px; }
  .visit-col--img { flex: 1 1 33.333%; height: 240px; }

  .testi-inner { flex-direction: column; align-items: stretch; gap: 40px; }
  .testi-intro { flex: 1 1 auto; max-width: 600px; }
  .testi-slider { flex: 1 1 auto; max-width: 100%; }

  .collection-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .collection-filters {
    justify-content: flex-start;
  }

  .policy { padding: 56px 0 72px; }
  .policy-title { font-size: 30px; margin-bottom: 32px; }
  .policy-body { flex-direction: column-reverse; gap: 40px; }
  .policy-toc { position: static; flex: 1 1 auto; }
  .policy-content { max-width: 100%; }

  .faq { padding: 56px 0; }
  .faq-title { font-size: 34px; margin-bottom: 32px; }
  .faq-q { font-size: 22px; }
  .faq-item { padding-bottom: 28px; margin-bottom: 28px; }
  .faq-a > p { font-size: 16px; }
  .need-help { padding: 56px 0 80px; }
  .need-help-title { font-size: 34px; }
  .need-help-text { font-size: 18px; }
  .need-help-btn { padding: 16px 60px; }
}

/* Fixed two-column blocks sum to 1280px but sit in a 1240px container */
@media (max-width: 1319px) {
  .def-inner {
    flex-direction: column;
    gap: 48px;
    align-items: stretch;
  }
  .def-left {
    flex: 1 1 auto;
    max-width: 600px;
  }
  .def-right {
    flex: 1 1 auto;
  }
  .def-right img {
    width: 100%;
    height: auto;
  }
  .def-bottom-img {
    width: 100%;
    height: auto;
    margin-top: 48px;
  }

  .contact-inner {
    flex-direction: column;
    gap: 48px;
  }
  .contact-info,
  .contact-form-col {
    flex: 1 1 auto;
    max-width: 100%;
  }

  .pd-top {
    flex-direction: column;
    gap: 32px;
  }
  .pd-gallery,
  .pd-info {
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
  }
  .pd-detail {
    flex-direction: column;
    margin-top: 40px;
  }
  .pd-detail-media,
  .pd-detail-content {
    flex: 1 1 auto;
    width: 100%;
  }
  .pd-detail-media img {
    max-height: 520px;
    height: auto;
  }
  .pd-detail-content {
    padding: 32px 20px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    min-height: 64px;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .main-nav {
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-line);
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease;
    z-index: 50;
  }
  .main-nav.open {
    max-height: 220px;
    padding: 12px 28px 18px;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .header-tools .lang-select,
  .header-search,
  .header-divider {
    display: none;
  }
  .site-header {
    position: relative;
  }
  .hero-banner--brand span { font-size: 22px; letter-spacing: 0.5px; }
  .hero-banner--brand { padding: 9px 22px; border-width: 4px; }
  .sale-title { font-size: 20px; letter-spacing: 0.3px; }
  .sale-figure { font-size: 46px; }
  .sale-side { font-size: 13px; }
  .hero-banner--sale { padding: 14px 24px; border-width: 2px; }
  .sale-discount { gap: 6px; }
}

@media (max-width: 560px) {
  /* Mobile footer */
  .site-footer {
    padding: 24px 20px 40px;
  }
  .site-footer .container {
    width: 100%;
    padding: 0;
  }
  .footer-top {
    display: block;
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 0;
  }
  .footer-col {
    padding: 20px 0;
  }
  .footer-col:first-child {
    padding-top: 0;
  }
  .footer-col + .footer-col {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  .footer-col h4 {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .footer-links li {
    margin-bottom: 10px;
  }
  .footer-links a {
    font-size: 12px;
  }
  .footer-contact p {
    font-size: 12px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
  }
  .footer-logo img {
    width: 224px;
    height: 88px;
  }
  .collection-name {
    font-size: 20px;
    right: 16px;
    bottom: 14px;
  }
  .special-products { padding: 56px 0; }
  .sp-title { font-size: 30px; }
  .view-all { font-size: 18px; }
  .view-all svg { width: 20px; height: 20px; }
  .sp-head { margin-bottom: 26px; }
  .definition { padding: 56px 0; }
  .def-title { font-size: 32px; }
  .def-text { font-size: 16px; }
  .testimonials { padding: 56px 0; }
  .testi-heading { font-size: 32px; }
  .testi-sub { font-size: 17px; }
  .video-section { height: 420px; }
  .about-hero, .about-hero-inner { min-height: 560px; }
  .about-hero-inner { padding-top: 110px; }
  .about-hero-title { font-size: 34px; }
  .about-hero-foot { margin-top: 120px; width: 100%; }
  .about-hero-text { font-size: 16px; }
  .about-feature-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-feature-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 65%;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.45) 45%,
      transparent 100%
    );
    pointer-events: none;
    z-index: 1;
  }
  .about-feature-text {
    padding: 24px;
    z-index: 2;
  }
  .about-feature-text--top {
    top: auto;
    bottom: 0;
  }
  .about-feature-title { font-size: 28px; }
  .about-video { padding: 20px 16px; }
  .about-video-media { height: 360px; }
  .explore-collection { padding: 56px 0 72px; }
  .explore-title { font-size: 32px; }
  .collection-tabs { gap: 18px; }
  .collection-tab { font-size: 14px; }
  .filter-select { font-size: 13px; padding: 0 12px; }
  .footer-copyright {
    font-size: 14px;
    font-weight: 400;
    white-space: normal;
  }
  .btn-primary {
    padding: 0 16px;
  }
  .hero-banner--brand span { font-size: 16px; }
  .hero-banner--brand { padding: 7px 14px; border-width: 3px; }
  .sale-title { font-size: 15px; margin-bottom: 8px; }
  .sale-figure { font-size: 34px; }
  .sale-side { font-size: 11px; }
  .hero-banner--sale { padding: 10px 16px; }

  .visit-col--img {
    flex: 1 1 100%;
    height: 200px;
  }

  .explore-head {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Product grids — 2 per row, 16px section padding, 165px image height */
  .sp-inner,
  .explore-inner {
    width: 100%;
    max-width: none;
    padding-left: 16px;
    padding-right: 16px;
    margin-inline: 0;
  }

  .products-grid,
  .special-products .products-grid,
  .special-products .woocommerce ul.products,
  .special-products ul.products,
  .special-products .products-grid ul.products,
  .special-products .vainas-wc-shortcode-grid .woocommerce ul.products,
  .explore-collection ul.products,
  .explore-collection .products-grid,
  .vainas-wc-shortcode-grid ul.products,
  .vainas-wc-shortcode-grid ul.products[class*="columns-"],
  .woocommerce .products-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px;
    width: 100% !important;
    max-width: 100% !important;
  }

  .special-products .woocommerce ul.products li.product,
  .special-products .vainas-wc-shortcode-grid ul.products li.product,
  .vainas-wc-shortcode-grid ul.products li.product,
  .vainas-wc-shortcode-grid ul.products[class*="columns-"] li.product {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    clear: none !important;
    flex: none !important;
    margin: 0 !important;
  }

  .product-media img {
    width: 100%;
    height: 165px;
    max-height: 165px;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .product-title {
    font-size: 16px;
  }

  .product-rating {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .product-sizes,
  .product-price .price-now,
  .product-price .price-old,
  .product-price .price {
    font-size: 13px;
  }

  .quick-add {
    top: 12px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

  .explore-collection {
    padding-bottom: 72px;
  }
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.pd-top {
  width: min(1280px, calc(100% - 40px));
  margin: 80px auto 0;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

/* Gallery */
.pd-gallery {
  flex: 0 0 620px;
  max-width: 620px;
}
.pd-main-img {
  border-radius: 18px;
  overflow: hidden;
}
.pd-main-img img {
  width: 100%;
  display: block;
  aspect-ratio: 620 / 720;
  object-fit: cover;
}
.pd-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.pd-thumb {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  line-height: 0;
}
.pd-thumb img {
  width: 100%;
  display: block;
  aspect-ratio: 188 / 132;
  object-fit: cover;
  border-radius: 14px;
  transition: opacity 0.15s ease;
}
.pd-thumb.is-active {
  outline: 2px solid #121212;
  outline-offset: 2px;
}
.pd-thumb:not(.is-active) img:hover {
  opacity: 0.85;
}

/* Info */
.pd-info {
  flex: 0 0 636px;
  max-width: 636px;
}
.pd-badge {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #5a5a5a;
}
.pd-title {
  margin: 16px 0 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #121212;
}
.pd-desc {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: #5a5a5a;
  max-width: 520px;
}
.pd-price {
  margin: 20px 0 0;
  font-size: 32px;
  font-weight: 700;
  color: #fe6d2c;
}
.pd-option {
  margin-top: 24px;
}
.pd-opt-label {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #121212;
}
.pd-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pd-size {
  min-width: 56px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #d9d9d9;
  border-radius: 24px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #121212;
  cursor: pointer;
  transition: all 0.15s ease;
}
.pd-size:hover {
  border-color: #121212;
}
.pd-size.is-active {
  background: #121212;
  border-color: #121212;
  color: #fff;
}
.pd-colors {
  display: flex;
  gap: 14px;
}
.pd-color {
  width: 26px;
  height: 26px;
  padding: 0;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  background: var(--swatch, #ccc);
  cursor: pointer;
  transition: outline 0.15s ease;
}
.pd-color.is-active {
  outline: 2px solid #121212;
  outline-offset: 2px;
}
.pd-qty {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  height: 44px;
  padding: 0 8px;
  border: 1px solid #d9d9d9;
  border-radius: 24px;
}
.pd-qty-btn {
  width: 32px;
  height: 32px;
  border: 0;
  background: none;
  font-size: 18px;
  color: #121212;
  cursor: pointer;
  line-height: 1;
}
.pd-qty-val {
  min-width: 20px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
}
.pd-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pd-buy,
.pd-add {
  height: 56px;
  border: 0;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s ease, background 0.15s ease;
}
.pd-buy {
  background: #121212;
  color: #fff;
}
.pd-buy:hover {
  opacity: 0.88;
}
.pd-add {
  background: #f3f3f3;
  color: #121212;
}
.pd-add:hover {
  background: #e9e9e9;
}

/* Detail / Reviews section (full width, no gap) */
.pd-detail {
  margin-top: 80px;
  display: flex;
  align-items: stretch;
}
.pd-detail-media {
  flex: 1 1 50%;
  min-width: 0;
}
.pd-detail-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.pd-detail-content {
  flex: 1 1 50%;
  min-width: 0;
  padding: 40px 80px 40px 80px;
}
.pd-tabs {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid #ececec;
}
.pd-tab {
  padding: 0 0 14px;
  border: 0;
  background: none;
  font-size: 18px;
  font-weight: 500;
  color: #9a9a9a;
  cursor: pointer;
  position: relative;
}
.pd-tab.is-active {
  color: #121212;
  font-weight: 700;
}
.pd-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #121212;
}
.pd-panel {
  display: none;
}
.pd-panel.is-active {
  display: block;
}
.pd-panel-intro {
  margin: 24px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: #5a5a5a;
}

/* Accordions */
.pd-accordion {
  border-top: 1px solid #ececec;
  margin-top: 28px;
  padding-top: 20px;
}
.pd-acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: none;
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  color: #121212;
  cursor: pointer;
}
.pd-acc-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.pd-acc-icon::before,
.pd-acc-icon::after {
  content: "";
  position: absolute;
  background: #121212;
  transition: opacity 0.2s ease;
}
.pd-acc-icon::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}
.pd-acc-icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}
.pd-accordion.is-open .pd-acc-icon::after {
  opacity: 0;
}
.pd-acc-body {
  display: none;
  padding-top: 16px;
}
.pd-accordion.is-open .pd-acc-body {
  display: block;
}
.pd-acc-list {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pd-acc-list li {
  font-size: 14px;
  line-height: 1.6;
  color: #5a5a5a;
}
.pd-size-table {
  margin-top: 20px;
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.pd-size-table th,
.pd-size-table td {
  border: 1px solid #ececec;
  padding: 8px 10px;
  text-align: center;
  color: #121212;
}
.pd-size-table thead th {
  font-weight: 700;
  background: #f7f7f7;
}
.pd-size-table tbody td:first-child {
  font-weight: 600;
  text-align: left;
}

/* Reviews */
.pd-reviews {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}
.pd-review {
  padding: 24px 0;
  border-bottom: 1px solid #ececec;
}
.pd-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pd-stars {
  color: #fe6d2c;
  font-size: 15px;
  letter-spacing: 2px;
}
.pd-star-empty {
  color: #d9d9d9;
}
.pd-review-date {
  font-size: 13px;
  color: #9a9a9a;
}
.pd-review-text {
  margin: 12px 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #121212;
}
.pd-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pd-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1b1b1b;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
}
.pd-author-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.pd-author-meta strong {
  font-size: 14px;
  color: #121212;
}
.pd-author-meta span {
  font-size: 12px;
  color: #9a9a9a;
}
.pd-show-more {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 26px;
  border: 0;
  border-radius: 28px;
  background: #121212;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.pd-show-more:hover {
  opacity: 0.88;
}

/* Product detail responsive (layout stacks at 1319px — see global breakpoint above) */
@media (max-width: 560px) {
  .pd-top {
    margin-top: 24px;
  }
  .pd-detail {
    margin-top: 24px;
  }
  .pd-title {
    font-size: 26px;
  }
  .pd-price {
    font-size: 26px;
  }
  .pd-thumbs {
    gap: 12px;
  }
}

/* ============================================================
   MY ACCOUNT (WooCommerce-ready)
   ============================================================ */
.woocommerce-account {
  padding: 80px 0 100px;
  background: #f7f7f7;
}
.account-wrap {
  width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

/* Sidebar — maps to woocommerce-MyAccount-navigation */
.woocommerce-MyAccount-navigation.account-sidebar {
  flex: 0 0 280px;
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}
.account-sidebar-title {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 600;
  color: #9a9a9a;
  letter-spacing: 0.02em;
}
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.woocommerce-MyAccount-navigation a {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
  color: #5a5a5a;
  transition: color 0.15s ease;
}
.woocommerce-MyAccount-navigation a:hover {
  color: #121212;
}
.woocommerce-MyAccount-navigation .is-active a,
.woocommerce-MyAccount-navigation li.is-active a {
  color: #121212;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.account-logout {
  margin-top: auto;
  padding-top: 24px;
}
.account-logout a {
  font-size: 16px;
  font-weight: 500;
  color: #5a5a5a;
}

/* Main content — maps to woocommerce-MyAccount-content */
.woocommerce-MyAccount-content.account-main {
  flex: 1 1 auto;
  min-width: 0;
  background: #fff;
  border-radius: 20px;
  padding: 32px 36px 40px;
}
.account-page-title {
  margin: 0 0 24px;
  font-size: 28px;
  font-weight: 700;
  color: #121212;
}
.account-back-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  color: #121212;
}
.account-back-title a {
  display: inline-flex;
  color: #121212;
}
.account-subtext {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.6;
  color: #5a5a5a;
}

/* Profile view */
.account-profile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid #ececec;
  margin-bottom: 28px;
}
.account-profile-user {
  display: flex;
  align-items: center;
  gap: 16px;
}
.account-profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: #e9e9e9;
}
.account-profile-avatar--initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  background: #1b1b1b;
}
.account-profile-name {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #121212;
}
.account-profile-email {
  margin: 4px 0 0;
  font-size: 14px;
  color: #5a5a5a;
}
.account-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border: 1px solid #121212;
  border-radius: 24px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #121212;
  cursor: pointer;
  transition: background 0.15s ease;
}
.account-btn-outline:hover {
  background: #f7f7f7;
}
.account-section-title {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
  color: #121212;
}
.account-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 40px;
}
.account-info-item label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: #9a9a9a;
}
.account-info-item p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #121212;
}

/* Forms */
.woocommerce-EditAccountForm,
.woocommerce-address-fields,
.account-form {
  max-width: 100%;
}
.account-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}
.account-form-row--single {
  grid-template-columns: 1fr;
}
.account-form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #121212;
}
.account-form-field input,
.account-form-field select,
.account-form-field textarea {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  border: 1px solid #d9d9d9;
  border-radius: 26px;
  font: inherit;
  font-size: 15px;
  color: #121212;
  background: #fff;
}
.account-form-field textarea {
  height: auto;
  min-height: 140px;
  padding: 16px 18px;
  border-radius: 18px;
  resize: vertical;
}
.account-form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpolyline points='2,4 6,8 10,4' stroke='%23121212' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 42px;
}
.account-form-field--password {
  position: relative;
}
.account-form-field--password input {
  padding-right: 48px;
}
.account-password-toggle {
  position: absolute;
  right: 16px;
  bottom: 16px;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  color: #9a9a9a;
  line-height: 0;
}
.account-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 52px;
  padding: 0 32px;
  border: 0;
  border-radius: 28px;
  background: #121212;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.account-btn-primary:hover {
  opacity: 0.88;
}
.account-btn-primary--full {
  width: 100%;
  min-width: 0;
}
.account-btn-danger {
  background: #e53935;
  color: #fff;
}
.account-btn-danger-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  border: 1px solid #e53935;
  border-radius: 22px;
  background: #fff;
  color: #e53935;
  font-size: 14px;
  font-weight: 600;
}
.account-link-danger {
  font-size: 14px;
  font-weight: 600;
  color: #e53935;
}
.account-edit-avatar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.account-edit-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}

/* Orders */
.account-order-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #ececec;
  padding-bottom: 12px;
}
.account-order-tab {
  border: 0;
  background: none;
  padding: 0 0 8px;
  font-size: 15px;
  font-weight: 500;
  color: #9a9a9a;
  cursor: pointer;
  position: relative;
}
.account-order-tab.is-active {
  color: #121212;
  font-weight: 700;
}
.account-order-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;
  height: 2px;
  background: #121212;
}
.account-orders-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.account-order-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid #ececec;
  border-radius: 16px;
}
.account-order-card[hidden] {
  display: none;
}
.account-order-thumb {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.account-order-info {
  flex: 1 1 auto;
  min-width: 0;
}
.account-order-meta {
  margin: 0 0 4px;
  font-size: 12px;
  color: #9a9a9a;
}
.account-order-name {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  color: #121212;
}
.account-order-size {
  margin: 0;
  font-size: 13px;
  color: #5a5a5a;
}
.account-order-price {
  font-size: 18px;
  font-weight: 700;
  color: #fe6d2c;
  white-space: nowrap;
}
.account-order-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}
.account-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 600;
}
.account-status--completed {
  background: #e8f5e9;
  color: #2e7d32;
}
.account-status--processing {
  background: #fff3e0;
  color: #ef6c00;
}
.account-status--pending {
  background: #fff8e1;
  color: #f9a825;
}
.account-status--cancelled {
  background: #ffebee;
  color: #c62828;
}
.account-status--paid {
  background: #fff8e1;
  color: #f9a825;
}
.account-order-link {
  width: 36px;
  height: 36px;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #121212;
  transition: background 0.15s ease;
}
.account-order-link:hover {
  background: #f7f7f7;
}

/* Order detail */
.account-order-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}
.account-order-id {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #121212;
}
.account-order-date {
  margin: 4px 0 0;
  font-size: 14px;
  color: #9a9a9a;
}
.account-order-items {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.account-order-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.account-order-item img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
}
.account-order-item-info {
  flex: 1 1 auto;
}
.account-order-item-name {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
}
.account-order-item-meta {
  margin: 0;
  font-size: 13px;
  color: #5a5a5a;
  line-height: 1.5;
}
.account-order-item-price {
  font-size: 16px;
  font-weight: 700;
  color: #fe6d2c;
  white-space: nowrap;
}
.account-detail-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #ececec;
}
.account-detail-block h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
}
.account-detail-block p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #5a5a5a;
}
.account-order-summary {
  margin-top: 8px;
}
.account-order-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  color: #5a5a5a;
}
.account-order-summary-row--total {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid #ececec;
  font-size: 16px;
  font-weight: 700;
  color: #121212;
}
.account-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.account-btn-invoice {
  background: #fe6d2c;
  color: #fff;
}

/* Track order timeline */
.account-track-timeline {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin: 32px 0;
  position: relative;
}
.account-track-timeline::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: #ececec;
  z-index: 0;
}
.account-track-step {
  flex: 1 1 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.account-track-dot {
  width: 28px;
  height: 28px;
  margin: 0 auto 10px;
  border-radius: 50%;
  border: 2px solid #d9d9d9;
  background: #fff;
}
.account-track-step.is-done .account-track-dot,
.account-track-step.is-active .account-track-dot {
  border-color: #121212;
  background: #121212;
}
.account-track-step span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #121212;
}
.account-track-step time {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: #9a9a9a;
}

/* Address */
.account-address-card {
  position: relative;
  padding: 24px;
  border: 1px solid #ececec;
  border-radius: 16px;
  margin-bottom: 20px;
}
.account-address-card p {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.6;
  color: #121212;
}
.account-address-edit {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #121212;
}

/* Notifications */
.account-notifications {
  list-style: none;
  margin: 0;
  padding: 0;
}
.account-notification {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #ececec;
}
.account-notification-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3f3f3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #121212;
}
.account-notification-body {
  flex: 1 1 auto;
}
.account-notification-body strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  color: #121212;
}
.account-notification-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #5a5a5a;
}
.account-notification time {
  font-size: 13px;
  color: #9a9a9a;
  white-space: nowrap;
}

/* Settings rows */
.account-settings-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.account-settings-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #ececec;
}
.account-settings-item h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: #121212;
}
.account-settings-item p {
  margin: 0;
  font-size: 14px;
  color: #5a5a5a;
}

/* Review form */
.account-review-product {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 700;
}
.account-star-rating {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.account-star-rating button {
  border: 0;
  background: none;
  padding: 0;
  font-size: 28px;
  color: #d9d9d9;
  cursor: pointer;
  line-height: 1;
}
.account-star-rating button.is-active,
.account-star-rating button:hover {
  color: #fe6d2c;
}
.account-resend {
  margin-top: 12px;
  font-size: 14px;
  color: #5a5a5a;
}
.account-resend a {
  color: #121212;
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 980px) {
  .woocommerce-account {
    padding: 56px 0 72px;
  }
  .account-wrap {
    flex-direction: column;
  }
  .woocommerce-MyAccount-navigation.account-sidebar {
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
  }
  .account-info-grid,
  .account-form-row {
    grid-template-columns: 1fr;
  }
  .account-order-card {
    flex-wrap: wrap;
  }
  .account-track-timeline {
    flex-direction: column;
    gap: 20px;
  }
  .account-track-timeline::before {
    display: none;
  }
}
@media (max-width: 560px) {
  .woocommerce-MyAccount-content.account-main {
    padding: 24px 20px;
  }
  .account-profile-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .account-order-side {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ============================================================
   CART PAGE (WooCommerce-ready)
   ============================================================ */
body.woocommerce-cart {
  padding: 0;
}

main.woocommerce-cart {
  padding: 80px 0 100px;
}
.cart-inner {
  width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
}
.cart-title {
  margin: 0 0 40px;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #121212;
}
.cart-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.cart-products {
  flex: 1 1 62%;
  min-width: 0;
}
.cart-collaterals {
  flex: 0 0 380px;
  max-width: 380px;
}
.cart-section-title {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 700;
  color: #121212;
}
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #f7f7f7;
  border-radius: 18px;
}
.cart-item-thumb {
  flex: 0 0 120px;
  border-radius: 14px;
  overflow: hidden;
  line-height: 0;
}
.cart-item-thumb img {
  width: 120px;
  height: 140px;
  object-fit: cover;
  display: block;
}
.cart-item-body {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
}
.cart-item-remove {
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #e53935;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.cart-item-remove:hover {
  background: #ffebee;
}
.cart-item .product-name {
  margin: 0 40px 10px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #121212;
}
.cart-item .product-name a {
  color: inherit;
}
.cart-item .variation {
  margin: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  font-size: 13px;
  color: #5a5a5a;
}
.cart-item .variation dt {
  font-weight: 500;
}
.cart-item .variation dd {
  margin: 0;
}
.cart-item-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}
.cart-item .product-price {
  font-size: 22px;
  font-weight: 700;
  color: #fe6d2c;
}
.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 40px;
  padding: 0 6px;
  border: 1px solid #d9d9d9;
  border-radius: 22px;
  background: #fff;
}
.cart-qty-btn {
  width: 28px;
  height: 28px;
  border: 0;
  background: none;
  font-size: 16px;
  color: #121212;
  cursor: pointer;
  line-height: 1;
}
.cart-qty .qty {
  width: 32px;
  height: auto;
  border: 0;
  padding: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  -moz-appearance: textfield;
}
.cart-qty .qty::-webkit-outer-spin-button,
.cart-qty .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Cart totals / summary */
.cart_totals {
  background: #f7f7f7;
  border-radius: 18px;
  padding: 24px;
}
.cart_totals .shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.cart_totals .shop_table th,
.cart_totals .shop_table td {
  padding: 10px 0;
  font-size: 15px;
  color: #5a5a5a;
  text-align: left;
  border: 0;
}
.cart_totals .shop_table td {
  text-align: right;
  color: #121212;
}
.cart_totals .order-total th,
.cart_totals .order-total td {
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
  font-size: 18px;
  font-weight: 700;
  color: #121212;
}
.cart_totals .coupon {
  position: relative;
  margin-bottom: 16px;
}
.cart_totals .coupon .input-text {
  width: 100%;
  height: 52px;
  padding: 0 100px 0 20px;
  border: 1px solid #d9d9d9;
  border-radius: 26px;
  font: inherit;
  font-size: 14px;
  background: #fff;
}
.cart_totals .coupon .apply-coupon {
  position: absolute;
  top: 6px;
  right: 6px;
  height: 40px;
  padding: 0 20px;
  border: 0;
  border-radius: 22px;
  background: #121212;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.cart_totals .checkout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border-radius: 28px;
  background: #121212;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  transition: opacity 0.15s ease;
}
.cart_totals .checkout-button:hover {
  opacity: 0.88;
  color: #fff;
}

@media (max-width: 980px) {
  main.woocommerce-cart {
    padding: 56px 0 72px;
  }
  .cart-layout {
    flex-direction: column;
  }
  .cart-collaterals {
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 560px) {
  .cart-title {
    font-size: 30px;
    margin-bottom: 28px;
  }
  .cart-item {
    flex-direction: column;
    gap: 14px;
  }
  .cart-item-thumb {
    flex: 0 0 auto;
  }
  .cart-item-thumb img {
    width: 100%;
    height: 200px;
  }
}

/* Empty cart — hide default WC block product grids (theme cards used instead) */
body.vainas-cart-empty .wp-block-woocommerce-product-new,
body.vainas-cart-empty .wc-block-grid,
body.vainas-cart-empty .wp-block-woocommerce-handpicked-products,
body.vainas-cart-empty .wp-block-woocommerce-product-collection {
  display: none !important;
}

/* Cart page — themed layout (matches cart.html, no WP page wrapper gap) */
body.vainas-cart-page #main-content,
body.vainas-cart-page .vainas-cart-main {
  margin: 0;
  padding: 0;
}

body.vainas-cart-page .entry-header,
body.vainas-cart-page .entry-content > h1,
body.vainas-cart-page .wp-block-post-title {
  display: none !important;
}

body.vainas-cart-page .cart-content,
body.vainas-cart-page .entry-content {
  margin: 0;
  padding: 0;
}

body.vainas-cart-page .wp-block-woocommerce-cart,
body.vainas-cart-page .wp-block-woocommerce-cart.alignwide {
  margin: 0;
  padding: 0;
  max-width: none;
}

body.vainas-cart-empty main.woocommerce-cart,
body.vainas-cart-empty.vainas-cart-main {
  padding-bottom: 0;
}

body.vainas-cart-empty .vainas-empty-cart-block,
body.vainas-cart-empty .wp-block-woocommerce-empty-cart-block,
body.vainas-cart-empty .wc-block-cart__empty-cart {
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 0 8px !important;
}

body.vainas-cart-empty .wp-block-woocommerce-empty-cart-block hr,
body.vainas-cart-empty .wp-block-woocommerce-empty-cart-block .wp-block-heading:not(.vainas-cart-empty-notice),
body.vainas-cart-empty .wc-block-cart__empty-cart__title.with-empty-cart-icon::before {
  display: none !important;
}

.vainas-cart-empty-notice {
  margin: 0 0 8px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  color: #5a5a5a;
}

.vainas-cart-empty-message {
  text-align: center;
  max-width: 480px;
  margin: 0 auto 24px;
  font-size: 16px;
  line-height: 1.5;
  color: #5a5a5a;
}

.vainas-cart-empty-message .woocommerce-info,
.vainas-cart-empty-message .cart-empty {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  list-style: none;
}

body.vainas-cart-empty .return-to-shop {
  text-align: center;
  margin: 0 0 8px;
}

body.vainas-cart-empty .return-to-shop .button {
  display: none;
}

/* Empty cart product recommendations — same cards as homepage / shop */
.special-products.vainas-cart-recommendations,
.vainas-cart-recommendations {
  padding: 40px 0 80px;
  margin-top: 0;
}

.vainas-cart-recommendations .sp-title {
  text-align: center;
  margin-bottom: 36px;
}

.vainas-cart-recommendations .vainas-wc-shortcode-grid > .woocommerce {
  display: contents;
}

@media (max-width: 991px) {
  body.vainas-cart-page .cart-inner {
    width: 100%;
    max-width: none;
    padding-left: 16px;
    padding-right: 16px;
    margin-inline: 0;
  }

  body.vainas-cart-page .cart-title {
    margin-bottom: 24px;
    font-size: 30px;
  }

  .special-products.vainas-cart-recommendations,
  .vainas-cart-recommendations {
    padding: 32px 0 56px;
  }

  .vainas-cart-recommendations .sp-inner {
    width: 100%;
    max-width: none;
    padding-left: 16px;
    padding-right: 16px;
    margin-inline: 0;
  }
}

/* ============================================================
   CHECKOUT PAGE (WooCommerce-ready)
   ============================================================ */
.woocommerce-checkout {
  padding: 80px 0 100px;
}
.checkout-inner {
  width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
}
.checkout-title {
  margin: 0 0 40px;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #121212;
}
.checkout-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
#customer_details {
  flex: 1 1 58%;
  min-width: 0;
}
.checkout-review {
  flex: 0 0 400px;
  max-width: 400px;
  position: sticky;
  top: 100px;
}
.checkout-block {
  margin-bottom: 32px;
}
.checkout-block-title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  color: #121212;
}
.checkout-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}
.checkout-form-row--single {
  grid-template-columns: 1fr;
}
.checkout-form-field input,
.checkout-form-field select,
.checkout-form-field textarea {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  border: 1px solid #d9d9d9;
  border-radius: 26px;
  font: inherit;
  font-size: 14px;
  color: #121212;
  background: #fff;
}
.checkout-form-field textarea {
  height: auto;
  min-height: 120px;
  padding: 16px 18px;
  border-radius: 18px;
  resize: vertical;
}
.checkout-form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpolyline points='2,4 6,8 10,4' stroke='%23121212' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 42px;
}
.checkout-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #5a5a5a;
  cursor: pointer;
}
.checkout-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: #121212;
}
.wc_payment_methods {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wc_payment_method {
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 14px 16px;
}
.wc_payment_method label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #121212;
  cursor: pointer;
}
.wc_payment_method .input-radio {
  accent-color: #121212;
}
.payment_box {
  display: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #ececec;
}
.wc_payment_method.payment-selected .payment_box,
.wc_payment_method:has(.input-radio:checked) .payment_box {
  display: block;
}
.checkout-review-card {
  background: #f7f7f7;
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 16px;
}
.checkout-order-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.checkout-order-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.checkout-order-item img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.checkout-order-item-info {
  flex: 1 1 auto;
  min-width: 0;
}
.checkout-order-item-name {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: #121212;
}
.checkout-order-item-meta {
  margin: 0;
  font-size: 12px;
  color: #5a5a5a;
}
.checkout-order-item-price {
  font-size: 15px;
  font-weight: 700;
  color: #fe6d2c;
  white-space: nowrap;
}
.checkout-review-summary .shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}
.checkout-review-summary .shop_table th,
.checkout-review-summary .shop_table td {
  padding: 8px 0;
  font-size: 14px;
  color: #5a5a5a;
  border: 0;
  text-align: left;
}
.checkout-review-summary .shop_table td {
  text-align: right;
  color: #121212;
}
.checkout-review-summary .order-total th,
.checkout-review-summary .order-total td {
  padding-top: 12px;
  border-top: 1px solid #e0e0e0;
  font-size: 17px;
  font-weight: 700;
  color: #121212;
}
.checkout-review-summary .coupon {
  position: relative;
  margin-bottom: 14px;
}
.checkout-review-summary .coupon .input-text {
  width: 100%;
  height: 48px;
  padding: 0 90px 0 18px;
  border: 1px solid #d9d9d9;
  border-radius: 24px;
  font: inherit;
  font-size: 13px;
  background: #fff;
}
.checkout-review-summary .coupon .apply-coupon {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 20px;
  background: #121212;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
#place_order {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 28px;
  background: #121212;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

/* ============================================================
   ORDER SUCCESS (WooCommerce thankyou)
   ============================================================ */
.woocommerce-order-received {
  padding: 80px 0 100px;
}
.order-success-inner {
  width: min(720px, calc(100% - 40px));
  margin-inline: auto;
}
.order-success-hero {
  text-align: center;
  margin-bottom: 36px;
}
.order-success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.order-success-icon svg {
  width: 96px;
  height: 96px;
}
.order-success-title {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
  color: #121212;
}
.order-success-text {
  margin: 0 auto;
  max-width: 480px;
  font-size: 15px;
  line-height: 1.6;
  color: #5a5a5a;
}
.order-success-panels {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.order-success-panel {
  border: 1px solid #ececec;
  border-radius: 16px;
  overflow: hidden;
}
.order-success-panel-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border: 0;
  background: #fff;
  font-size: 17px;
  font-weight: 700;
  color: #121212;
  cursor: pointer;
}
.order-success-panel-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.order-success-panel-icon::before,
.order-success-panel-icon::after {
  content: "";
  position: absolute;
  background: #121212;
  transition: opacity 0.2s ease;
}
.order-success-panel-icon::before {
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
}
.order-success-panel-icon::after {
  top: 0;
  left: 6px;
  width: 2px;
  height: 14px;
}
.order-success-panel.is-open .order-success-panel-icon::after {
  opacity: 0;
}
.order-success-panel-body {
  display: none;
  padding: 0 20px 20px;
}
.order-success-panel.is-open .order-success-panel-body {
  display: block;
}
.order-success-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.order-success-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.order-success-item img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
}
.order-success-item-name {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: #121212;
}
.order-success-item-meta {
  margin: 0;
  font-size: 12px;
  color: #5a5a5a;
}
.order-success-item-price {
  margin-left: auto;
  font-size: 15px;
  font-weight: 700;
  color: #fe6d2c;
  white-space: nowrap;
}
.order-success-totals {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #ececec;
}
.order-success-total-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: #5a5a5a;
}
.order-success-total-row--final {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid #ececec;
  font-size: 16px;
  color: #121212;
}
.order-success-delivery {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.order-success-delivery li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.order-success-delivery-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f3f3f3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #121212;
}
.order-success-delivery strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  color: #121212;
}
.order-success-delivery p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #5a5a5a;
}
.order-success-actions {
  display: flex;
  gap: 14px;
}
.order-success-actions .account-btn-primary,
.order-success-actions .account-btn-outline {
  flex: 1 1 0;
  justify-content: center;
  min-width: 0;
}
.order-success-track {
  background: #f3f3f3;
  border-color: #f3f3f3;
}

@media (max-width: 980px) {
  .woocommerce-checkout,
  .woocommerce-order-received {
    padding: 56px 0 72px;
  }
  .checkout-layout {
    flex-direction: column;
  }
  .checkout-review {
    position: static;
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
  }
  .checkout-form-row {
    grid-template-columns: 1fr;
  }
  .order-success-actions {
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .checkout-title {
    font-size: 30px;
  }
  .order-success-icon svg {
    width: 80px;
    height: 80px;
  }
  .order-success-title {
    font-size: 24px;
  }
}
