/*
Theme Name: VARDINO Framer Theme
Theme URI: https://vardino.com
Author: VARDINO
Author URI: https://vardino.com
Description: Theme WooCommerce chuyển thể từ thiết kế Framer của VARDINO với trang chủ, danh mục và chi tiết sản phẩm theo phong cách thời trang nam cao cấp.
Version: 1.1.12
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vardino-framer
Tags: e-commerce, woocommerce, fashion, clothing, responsive
*/

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

:root {
  --color-black: #0a0a0a;
  --color-white: #ffffff;
  --color-red: #c8102e;
  --color-red-dark: #a00d24;
  --color-gray-100: #f5f5f5;
  --color-gray-200: #ebebeb;
  --color-gray-300: #d4d4d4;
  --color-gray-500: #888888;
  --color-gray-700: #444444;
  --font-main: 'Be Vietnam Pro', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  --font-logo: 'Montserrat', 'Arial Black', sans-serif;
  --header-height: 98px;
  --topbar-height: 36px;
  --transition: 0.25s ease;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--color-black); background: var(--color-white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-main); }
input, textarea, select { font-family: var(--font-main); }

.container { max-width: 1440px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === TOP BAR === */
.top-bar {
  background: var(--color-black);
  color: var(--color-white);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.05em;
  z-index: 100;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.top-bar-left { display: flex; align-items: center; gap: 16px; }
.top-bar-left a { color: var(--color-white); opacity: 0.8; transition: opacity var(--transition); }
.top-bar-left a:hover { opacity: 1; }
.top-bar-divider { color: rgba(255,255,255,0.3); }
.top-bar-right { display: flex; align-items: center; gap: 24px; }
.top-bar-right a { color: var(--color-white); opacity: 0.8; transition: opacity var(--transition); font-weight: 500; }
.top-bar-right a:hover { opacity: 1; }
.shop-now-btn {
  background: var(--color-red);
  color: var(--color-white) !important;
  padding: 4px 14px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 1 !important;
  transition: background var(--transition) !important;
}
.shop-now-btn:hover { background: var(--color-red-dark) !important; }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--color-white);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.header-main {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-gray-200);
  position: relative;
}
.site-logo { position: absolute; left: 50%; transform: translateX(-50%); }
.site-logo a {
  font-family: var(--font-logo);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--color-black);
  text-transform: uppercase;
}
.header-actions { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.header-action-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--color-black);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition);
  position: relative;
}
.header-action-btn:hover { color: var(--color-red); }
.header-action-btn svg { width: 20px; height: 20px; }
.cart-count, .wishlist-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--color-red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* === NAVIGATION === */
.main-nav { border-top: 1px solid var(--color-gray-200); }
.nav-list { display: flex; align-items: center; gap: 0; height: 36px; }
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.nav-link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-black);
  white-space: nowrap;
  transition: color var(--transition);
  border-bottom: 2px solid transparent;
}
.nav-link:hover, .nav-item.current-menu-item .nav-link { color: var(--color-red); border-bottom-color: var(--color-red); }

/* Mega/dropdown menu */
.nav-item:hover .sub-menu { display: block; }
.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--color-white);
  border-top: 2px solid var(--color-red);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  z-index: 9999;
  padding: 8px 0;
}
.sub-menu li a {
  display: block;
  padding: 9px 20px;
  font-size: 13px;
  color: var(--color-black);
  transition: all var(--transition);
}
.sub-menu li a:hover { background: var(--color-gray-100); color: var(--color-red); padding-left: 26px; }

/* === HERO SLIDER === */
.hero-slider { position: relative; overflow: hidden; }
.slider-item {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
}
.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.35) 0%, transparent 60%);
  display: flex;
  align-items: center;
}
.slider-content {
  padding: 0 80px;
  color: var(--color-white);
  max-width: 600px;
}
.slider-content h1 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin-bottom: 20px;
}
.slider-content .brand-name {
  font-family: var(--font-logo);
  font-size: clamp(18px, 2.5vw, 28px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.9;
}
.slider-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 32px;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}
.slider-btn:hover { background: var(--color-red-dark); transform: translateY(-1px); }

/* Slider nav dots */
.slider-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: all var(--transition); border: none; }
.slider-dot.active { background: var(--color-white); width: 24px; border-radius: 4px; }

/* === CATEGORY ICONS === */
.category-icons { padding: 28px 0; border-bottom: 1px solid var(--color-gray-200); }
.category-icons .container { display: flex; justify-content: center; gap: 0; }
.cat-icon-item {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 12px 16px;
  border-right: 1px solid var(--color-gray-200);
  text-decoration: none;
  transition: all var(--transition);
}
.cat-icon-item:last-child { border-right: none; }
.cat-icon-item:hover { background: var(--color-gray-100); }
.cat-icon-img { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; margin: 0 auto 10px; }
.cat-icon-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-icon-name { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-black); }

/* === FRAMER PORT LAYOUT === */
.framer-home,
.framer-collection-page {
  background: #fff;
}

.framer-kicker {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.framer-kicker.dark { color: #111; }

.framer-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 98px));
  overflow: hidden;
  display: flex;
  align-items: center;
}
.framer-hero picture,
.framer-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.framer-hero img {
  object-fit: cover;
  object-position: center top;
}
.framer-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.62), rgba(0,0,0,0.24) 45%, rgba(0,0,0,0.04));
}
.framer-hero-content {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100% - 48px));
  margin-left: clamp(24px, 7vw, 110px);
  color: #fff;
}
.framer-hero-content h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.framer-lead {
  max-width: 520px;
  margin: 22px 0 0;
  font-size: clamp(15px, 1.45vw, 19px);
  line-height: 1.7;
  color: rgba(255,255,255,0.86);
}
.framer-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.framer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.framer-btn-dark { background: #fff; color: #090909; }
.framer-btn-light { border: 1px solid rgba(255,255,255,0.65); color: #fff; }
.framer-hero-badge {
  position: absolute;
  right: clamp(20px, 5vw, 76px);
  bottom: clamp(24px, 5vw, 70px);
  z-index: 2;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255,255,255,0.94);
  color: #111;
  text-transform: uppercase;
  box-shadow: 0 20px 45px rgba(0,0,0,0.24);
}
.framer-hero-badge span {
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 700;
}
.framer-hero-badge strong {
  width: 90px;
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.25;
}

.framer-brand-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #e5e5e5;
  border-top: 1px solid #e5e5e5;
}
.framer-brand-strip span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #e5e5e5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.framer-brand-strip span:last-child { border-right: none; }

.framer-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.framer-section-heading p {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
}
.framer-section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3.7vw, 54px);
  line-height: 1.04;
  font-weight: 850;
  letter-spacing: 0;
}
.framer-section-heading a {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid #111;
}
.framer-section-heading.inline {
  align-items: center;
}

.framer-editorial {
  padding-top: clamp(54px, 7vw, 96px);
  padding-bottom: clamp(42px, 6vw, 82px);
}
.framer-editorial-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 18px;
}
.framer-editorial-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  background: #f3f3f3;
}
.framer-editorial-card.tall { grid-row: span 2; }
.framer-editorial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.framer-editorial-card:hover img { transform: scale(1.04); }
.framer-editorial-card span {
  position: absolute;
  left: 22px;
  bottom: 20px;
  background: #fff;
  color: #111;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.framer-split-banners {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: clamp(52px, 7vw, 96px);
}
.framer-split-card {
  position: relative;
  min-height: clamp(360px, 42vw, 620px);
  overflow: hidden;
  color: #fff;
  background: #111;
}
.framer-split-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
  transition: transform 0.5s ease;
}
.framer-split-card:hover img { transform: scale(1.04); }
.framer-split-card div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
}
.framer-split-card p {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.framer-split-card h2 {
  margin: 0;
  font-size: clamp(30px, 4.6vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}
.framer-split-card span {
  display: inline-flex;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid #fff;
}

.framer-products {
  padding-bottom: clamp(54px, 7vw, 96px);
}
.framer-product-grid.products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 18px;
  background: transparent;
}
.framer-product-grid .product-card {
  border: 0;
  background: transparent;
}
.framer-product-grid .product-img {
  background: #f4f4f4;
}

.framer-journal {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding-bottom: clamp(56px, 7vw, 100px);
}
.framer-journal-copy p {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #888;
}
.framer-journal-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.6vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}
.framer-journal-copy span {
  display: block;
  max-width: 460px;
  color: #555;
  line-height: 1.8;
}
.framer-journal-image {
  min-height: 420px;
  overflow: hidden;
  background: #f1f1f1;
}
.framer-journal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.framer-service-band {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  background: #fafafa;
}
.framer-service-band .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 26px;
  padding-bottom: 26px;
}
.framer-service-band .container > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid #ddd;
  padding: 0 24px;
}
.framer-service-band .container > div:last-child { border-right: 0; }
.framer-service-band strong {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.framer-service-band span {
  color: #666;
  font-size: 13px;
}

.framer-breadcrumb {
  padding: 18px 0 0;
  border-bottom: 0;
  background: #fff;
}
.framer-collection-header {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-end;
  padding-top: 36px;
  padding-bottom: 34px;
}
.framer-collection-header h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}
.framer-collection-meta {
  text-align: right;
  text-transform: uppercase;
}
.framer-collection-meta strong {
  display: block;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 0.9;
}
.framer-collection-meta span {
  display: block;
  margin-top: 8px;
  color: #777;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.framer-shop-layout {
  display: grid;
  grid-template-columns: minmax(250px, 310px) 1fr;
  gap: 34px;
  padding-bottom: clamp(50px, 7vw, 88px);
}
.framer-filter-panel {
  border-top: 2px solid #111;
  padding-top: 18px;
}
.framer-filter-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.framer-filter-group {
  padding: 24px 0;
  border-bottom: 1px solid #e6e6e6;
}
.framer-filter-group h4 {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.framer-filter-group label {
  display: block;
  margin: 8px 0;
  color: #333;
  font-size: 13px;
}
.framer-filter-columns,
.framer-size-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 12px;
}
.framer-color-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.framer-color-row span {
  width: 22px;
  height: 22px;
  border: 1px solid #bbb;
}
.framer-shop-toolbar {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid #111;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.framer-filter-trigger {
  display: none;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.framer-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  color: #666;
  font-size: 13px;
}
.framer-empty-state {
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  background: #f7f7f7;
}
.framer-empty-state a {
  display: inline-flex;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* === FRAMER HOME V2 === */
.framer-home-v2 {
  background: #fff;
}
.home-campaign-hero {
  position: relative;
  min-height: clamp(440px, 45vw, 690px);
  overflow: hidden;
  background: #111;
}
.home-campaign-hero img {
  width: 100%;
  height: 100%;
  min-height: clamp(440px, 45vw, 690px);
  object-fit: cover;
  object-position: center;
  opacity: 0.78;
  display: block;
}
.home-campaign-arrow {
  position: absolute;
  right: 16px;
  bottom: 12px;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}
.home-brand-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 84px;
  background: #f4f4f4;
  border-bottom: 1px solid #e4e4e4;
}
.home-brand-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: #0b0b0b;
  font-size: clamp(15px, 1.6vw, 23px);
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}
.home-brand-row span:nth-child(2) { color: #26334f; }
.home-brand-row span:nth-child(3) { color: #bf7425; }
.home-story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 34px);
  padding-top: clamp(44px, 5vw, 76px);
  padding-bottom: clamp(54px, 6vw, 90px);
}
.home-story-card {
  display: block;
  color: #111;
}
.home-story-card img {
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
  object-position: center top;
  background: #eee;
}
.home-story-card span {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.home-featured-collection {
  padding: clamp(44px, 6vw, 88px) 0 clamp(54px, 6vw, 94px);
  border-top: 1px solid #ededed;
}
.home-large-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}
.home-large-heading p {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: #777;
}
.home-large-heading h1 {
  margin: 0;
  font-size: clamp(44px, 7.8vw, 116px);
  line-height: 0.9;
  letter-spacing: 0;
  font-weight: 900;
}
.home-large-heading a {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid #111;
}
.home-wide-banner {
  position: relative;
  min-height: clamp(360px, 38vw, 560px);
  overflow: hidden;
  color: #fff;
  background: #111;
}
.home-wide-banner img {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 38vw, 560px);
  object-fit: cover;
  opacity: 0.72;
}
.home-wide-banner div {
  position: absolute;
  left: clamp(24px, 7vw, 110px);
  bottom: clamp(28px, 6vw, 84px);
  max-width: 620px;
}
.home-wide-banner p {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.home-wide-banner h2 {
  margin: 0;
  font-size: clamp(34px, 5.5vw, 78px);
  line-height: 1;
  letter-spacing: 0;
}
.home-wide-banner a {
  display: inline-flex;
  margin-top: 22px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid #fff;
}

/* === FRAMER PRODUCT DETAIL V2 === */
.framer-product-page {
  background: #fff;
}
.framer-product-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: start;
  padding-top: 30px;
  padding-bottom: 70px;
}
.framer-product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.framer-product-gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: #f2f2f2;
  aspect-ratio: 1/1;
}
.framer-product-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.framer-product-buybox {
  position: sticky;
  top: 132px;
  background: #fff;
  padding: 0 0 24px;
}
.framer-product-brand {
  margin: 0 0 10px;
  font-size: 12px;
  color: #777;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.framer-product-buybox h1 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.3vw, 36px);
  line-height: 1.15;
  font-weight: 850;
  letter-spacing: 0;
}
.framer-product-code {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: #777;
  font-size: 12px;
  margin-bottom: 18px;
}
.framer-product-price {
  margin-bottom: 22px;
  color: var(--color-red);
  font-size: 28px;
  font-weight: 900;
}
.framer-product-price .woocommerce-Price-amount {
  color: var(--color-red);
  font-size: inherit;
  font-weight: inherit;
}
.framer-product-option {
  padding: 18px 0;
  border-top: 1px solid #e8e8e8;
}
.framer-option-label {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.framer-product-colors {
  display: flex;
  gap: 8px;
}
.framer-product-colors span {
  width: 30px;
  height: 30px;
  border: 1px solid #bbb;
}
.framer-product-sizes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.framer-product-sizes button {
  min-width: 48px;
  height: 38px;
  border: 1px solid #d0d0d0;
  background: #fff;
  color: #111;
  font-weight: 800;
}
.framer-product-sizes button:hover {
  border-color: #111;
}
.framer-product-actions {
  display: grid;
  grid-template-columns: 1fr 56px;
  gap: 8px;
  margin-top: 10px;
}
.framer-add-to-cart {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.framer-wishlist {
  border: 1px solid #111;
  background: #fff;
  font-size: 30px;
  line-height: 1;
}
.framer-delivery-note {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 22px;
  font-size: 13px;
  color: #333;
}
.framer-product-benefits {
  margin: 14px 0 0;
  padding: 16px 18px;
  background: #f4f2ff;
  color: #45405f;
  font-size: 12px;
  line-height: 1.75;
}
.framer-product-benefits li {
  list-style: disc;
  margin-left: 18px;
}
.framer-product-info-tabs {
  border-top: 1px solid #e5e5e5;
  padding: 26px 0 80px;
}
.framer-product-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  gap: 22px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 800;
}
.framer-product-tab-content {
  max-width: 760px;
  color: #333;
  font-size: 14px;
  line-height: 1.8;
}
.framer-product-tab-content.muted {
  color: #777;
  margin-top: 10px;
}
.framer-related-products {
  padding-bottom: 88px;
}

@media (max-width: 1024px) {
  .framer-brand-strip,
  .framer-service-band .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .framer-product-grid.products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .framer-shop-layout {
    grid-template-columns: 1fr;
  }
  .framer-filter-panel {
    display: none;
  }
  .framer-filter-trigger {
    display: inline-flex;
  }
}

@media (max-width: 720px) {
  .framer-hero {
    min-height: 640px;
  }
  .framer-hero-content {
    margin-left: 20px;
    width: calc(100% - 40px);
  }
  .framer-hero-badge {
    width: 104px;
    height: 104px;
    right: 18px;
    bottom: 18px;
  }
  .framer-brand-strip,
  .framer-service-band .container,
  .framer-split-banners,
  .framer-journal,
  .framer-editorial-grid {
    grid-template-columns: 1fr;
  }
  .framer-editorial-card.tall {
    grid-row: auto;
  }
  .framer-product-grid.products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 12px;
  }
  .framer-section-heading,
  .framer-section-heading.inline,
  .framer-collection-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .framer-collection-meta {
    text-align: left;
  }
  .framer-service-band .container > div {
    border-right: 0;
    border-bottom: 1px solid #e1e1e1;
    padding: 16px 0;
  }
  .framer-service-band .container > div:last-child {
    border-bottom: 0;
  }
}

/* === FLASH SALE === */
.flash-sale-section { padding: 24px 0; }
.flash-sale-header {
  background: var(--color-red);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.flash-sale-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: italic;
}
.flash-icon { font-size: 22px; }
.flash-sale-link { color: var(--color-white); font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.flash-sale-link:hover { text-decoration: underline; }

/* === PRODUCT GRID === */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--color-gray-200); }
.product-card { background: var(--color-white); overflow: hidden; position: relative; }
.product-card:hover .product-img img { transform: scale(1.04); }
.product-img { position: relative; overflow: hidden; aspect-ratio: 1/1; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  letter-spacing: 0.05em;
}
.product-badge.new { background: var(--color-black); }
.product-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.85);
  padding: 12px;
  display: flex;
  gap: 8px;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.product-card:hover .product-actions { transform: translateY(0); }
.btn-add-cart {
  flex: 1;
  background: var(--color-red);
  color: var(--color-white);
  border: none;
  padding: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-add-cart:hover { background: var(--color-red-dark); }
.btn-wishlist {
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.3);
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-wishlist:hover { background: var(--color-white); color: var(--color-red); }
.btn-wishlist svg { width: 16px; height: 16px; }
.product-info { padding: 16px 18px 20px; background: #efefef; }
.product-name { font-size: 18px; font-weight: 800; color: var(--color-black); margin-bottom: 10px; line-height: 1.24; }
.product-name a:hover { color: var(--color-red); }
.product-price { display: flex; align-items: center; gap: 8px; }
.price-sale { font-size: 22px; font-weight: 850; color: var(--color-red); }
.price-original { font-size: 13px; color: var(--color-gray-500); text-decoration: line-through; }
.product-card .woocommerce-Price-amount {
  color: var(--color-red);
  font-size: 22px;
  font-weight: 850;
}
.product-card .product-price {
  color: var(--color-red);
  font-size: 22px;
  font-weight: 850;
  flex-wrap: wrap;
}

/* === SECTION HEADERS === */
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.section-title { font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; position: relative; }
.section-title::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 40px; height: 3px; background: var(--color-red); }
.section-link { font-size: 13px; font-weight: 600; color: var(--color-black); border-bottom: 1px solid; transition: color var(--transition); }
.section-link:hover { color: var(--color-red); }

/* === COLLECTION BANNER === */
.collection-banner { padding: 32px 0; }
.collection-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.collection-item { position: relative; overflow: hidden; }
.collection-item img { width: 100%; height: 400px; object-fit: cover; transition: transform 0.6s ease; }
.collection-item:hover img { transform: scale(1.03); }
.collection-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: var(--color-white);
}
.collection-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.8; margin-bottom: 6px; }
.collection-name { font-size: 22px; font-weight: 800; text-transform: uppercase; margin-bottom: 12px; }
.collection-btn {
  display: inline-block;
  padding: 8px 20px;
  border: 1.5px solid rgba(255,255,255,0.7);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.collection-btn:hover { background: var(--color-white); color: var(--color-black); }

/* === TRUST BADGES === */
.trust-badges { background: var(--color-gray-100); padding: 28px 0; }
.badges-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.badge-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  border-right: 1px solid var(--color-gray-300);
}
.badge-item:last-child { border-right: none; }
.badge-icon { width: 48px; height: 48px; flex-shrink: 0; color: var(--color-black); }
.badge-icon svg { width: 100%; height: 100%; }
.badge-text-title { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.badge-text-sub { font-size: 12px; color: var(--color-gray-500); }

/* === FEATURED CATEGORIES === */
.featured-cats { padding: 48px 0; }
.featured-cats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.feat-cat-item { position: relative; overflow: hidden; }
.feat-cat-item img { width: 100%; height: 300px; object-fit: cover; transition: transform 0.5s ease; }
.feat-cat-item:hover img { transform: scale(1.04); }
.feat-cat-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}
.feat-cat-name { color: var(--color-white); font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }

/* === NEWSLETTER === */
.newsletter { background: var(--color-black); padding: 56px 0; text-align: center; color: var(--color-white); }
.newsletter h3 { font-size: 28px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.newsletter p { font-size: 14px; opacity: 0.7; margin-bottom: 28px; }
.newsletter-form { display: flex; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-right: none;
  color: var(--color-white);
  font-size: 14px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
  background: var(--color-red);
  color: var(--color-white);
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--color-red-dark); }

/* === FOOTER === */
.site-footer { background: var(--color-white); border-top: 1px solid var(--color-gray-200); }
.footer-top { padding: 48px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .logo-text { font-family: var(--font-logo); font-size: 22px; font-weight: 900; letter-spacing: 0.15em; }
.footer-about { font-size: 13px; color: var(--color-gray-500); margin-top: 12px; line-height: 1.7; }
.footer-contact { margin-top: 16px; font-size: 13px; }
.footer-contact p { margin-bottom: 6px; color: var(--color-gray-700); }
.footer-contact strong { color: var(--color-black); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.social-link {
  width: 34px; height: 34px;
  border: 1px solid var(--color-gray-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  transition: all var(--transition);
}
.social-link:hover { background: var(--color-black); color: var(--color-white); border-color: var(--color-black); }
.social-link svg { width: 16px; height: 16px; }
.footer-col-title { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-menu li { margin-bottom: 9px; }
.footer-menu a { font-size: 13px; color: var(--color-gray-500); transition: color var(--transition); }
.footer-menu a:hover { color: var(--color-red); }
.footer-bottom {
  border-top: 1px solid var(--color-gray-200);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--color-gray-500);
}
.payment-icons { display: flex; gap: 8px; align-items: center; }
.payment-icon {
  background: var(--color-gray-100);
  border: 1px solid var(--color-gray-300);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 3px;
  color: var(--color-gray-700);
}

/* === SHOP / ARCHIVE PAGE === */
.shop-page { padding: 32px 0 60px; }
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; }
.sidebar { flex-shrink: 0; }
.widget { margin-bottom: 32px; }
.widget-title { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--color-black); }
.filter-list li { margin-bottom: 8px; }
.filter-list a { font-size: 13px; color: var(--color-gray-700); transition: color var(--transition); display: flex; justify-content: space-between; }
.filter-list a:hover { color: var(--color-red); }
.filter-count { color: var(--color-gray-500); font-size: 12px; }
.price-range-slider { width: 100%; accent-color: var(--color-red); }
.size-swatches { display: flex; flex-wrap: wrap; gap: 6px; }
.size-swatch {
  width: 40px;
  height: 36px;
  border: 1.5px solid var(--color-gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.size-swatch:hover, .size-swatch.active { border-color: var(--color-black); background: var(--color-black); color: var(--color-white); }

.shop-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--color-gray-200); }
.product-count { font-size: 13px; color: var(--color-gray-500); }
.sort-select { padding: 8px 12px; border: 1.5px solid var(--color-gray-300); font-size: 13px; cursor: pointer; outline: none; }
.sort-select:focus { border-color: var(--color-black); }

/* Breadcrumb */
.breadcrumb { padding: 14px 0; font-size: 13px; color: var(--color-gray-500); border-bottom: 1px solid var(--color-gray-200); }
.breadcrumb a { color: var(--color-gray-500); }
.breadcrumb a:hover { color: var(--color-red); }
.breadcrumb span { margin: 0 8px; }

/* === SINGLE PRODUCT === */
.single-product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 40px 0 60px; }
.product-gallery { position: relative; }
.gallery-main { aspect-ratio: 3/4; overflow: hidden; background: var(--color-gray-100); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 12px; }
.gallery-thumb { width: 72px; height: 96px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color var(--transition); }
.gallery-thumb.active { border-color: var(--color-black); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-detail { padding-top: 8px; }
.product-detail .product-name { font-size: 22px; font-weight: 800; text-transform: uppercase; line-height: 1.3; margin-bottom: 10px; }
.product-detail .product-sku { font-size: 12px; color: var(--color-gray-500); margin-bottom: 16px; }
.product-detail .product-price { font-size: 24px; font-weight: 700; color: var(--color-red); margin-bottom: 8px; }
.product-detail .price-compare { font-size: 15px; color: var(--color-gray-500); text-decoration: line-through; }
.product-detail .price-save { background: var(--color-red); color: #fff; font-size: 12px; font-weight: 700; padding: 2px 8px; margin-left: 8px; }
.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.stars { color: #f4b400; font-size: 15px; letter-spacing: 2px; }
.review-count { font-size: 13px; color: var(--color-gray-500); }

.product-options { margin-bottom: 24px; }
.option-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
.color-swatches { display: flex; gap: 8px; }
.color-swatch { width: 32px; height: 32px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; transition: all var(--transition); }
.color-swatch.active, .color-swatch:hover { border-color: var(--color-black); transform: scale(1.1); }

.qty-add { display: flex; gap: 12px; margin-bottom: 16px; }
.qty-control { display: flex; align-items: center; border: 1.5px solid var(--color-gray-300); }
.qty-btn { width: 40px; height: 48px; background: none; border: none; font-size: 18px; cursor: pointer; transition: background var(--transition); }
.qty-btn:hover { background: var(--color-gray-100); }
.qty-input { width: 56px; height: 48px; text-align: center; border: none; border-left: 1.5px solid var(--color-gray-300); border-right: 1.5px solid var(--color-gray-300); font-size: 15px; font-weight: 600; outline: none; }
.btn-add-to-cart {
  flex: 1;
  background: var(--color-black);
  color: var(--color-white);
  border: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 28px;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-add-to-cart:hover { background: var(--color-red); }
.btn-buy-now {
  width: 100%;
  background: var(--color-red);
  color: var(--color-white);
  border: none;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
  margin-bottom: 16px;
}
.btn-buy-now:hover { background: var(--color-red-dark); }
.product-meta { font-size: 13px; color: var(--color-gray-500); margin-top: 20px; border-top: 1px solid var(--color-gray-200); padding-top: 20px; }
.product-meta p { margin-bottom: 6px; }
.product-meta strong { color: var(--color-black); }

/* === CART PAGE === */
.cart-page { padding: 40px 0 60px; }
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 12px 16px; border-bottom: 2px solid var(--color-black); }
.cart-table td { padding: 16px; border-bottom: 1px solid var(--color-gray-200); vertical-align: middle; }
.cart-product-img { width: 80px; height: 110px; object-fit: cover; }
.cart-product-name { font-size: 14px; font-weight: 600; }
.cart-product-variant { font-size: 12px; color: var(--color-gray-500); margin-top: 4px; }
.cart-summary { background: var(--color-gray-100); padding: 28px; }
.cart-summary-title { font-size: 16px; font-weight: 800; text-transform: uppercase; margin-bottom: 20px; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 12px; }
.cart-summary-total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 800; border-top: 2px solid var(--color-black); padding-top: 16px; margin-top: 8px; }
.btn-checkout {
  width: 100%;
  background: var(--color-red);
  color: var(--color-white);
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  transition: background var(--transition);
}
.btn-checkout:hover { background: var(--color-red-dark); }

/* === PAGE TITLE === */
.page-title-bar { background: var(--color-gray-100); padding: 28px 0; margin-bottom: 0; }
.page-title-bar h1 { font-size: 26px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em; }

/* === MOBILE MENU TOGGLE === */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--color-black); transition: all var(--transition); }

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 992px) {
  .shop-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .collection-grid { grid-template-columns: 1fr; }
  .single-product-layout { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --header-height: 56px; }
  .menu-toggle { display: flex; }
  .main-nav { display: none; }
  .main-nav.open { display: block; }
  .nav-list { flex-direction: column; height: auto; gap: 0; }
  .nav-link { justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid var(--color-gray-200); }
  .slider-item { height: 320px; }
  .slider-content { padding: 0 24px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-cats-grid { grid-template-columns: 1fr; }
  .top-bar-left .hide-mobile { display: none; }
  .hero-slider .container { padding: 0; }
}

@media (max-width: 1200px) {
  .framer-product-shell {
    grid-template-columns: 1fr;
  }
  .framer-product-buybox {
    position: static;
  }
}

@media (max-width: 1024px) {
  .home-story-grid,
  .framer-product-grid.products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .home-large-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .home-brand-row,
  .home-story-grid,
  .framer-product-grid.products-grid,
  .framer-product-gallery-grid,
  .framer-product-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-campaign-hero,
  .home-campaign-hero img {
    min-height: 440px;
  }
  .home-story-card img {
    aspect-ratio: 1/1.18;
  }
  .framer-product-shell {
    padding-top: 18px;
    padding-bottom: 42px;
  }
  .framer-product-tabs {
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .home-brand-row,
  .home-story-grid,
  .framer-product-grid.products-grid,
  .framer-product-gallery-grid,
  .framer-product-tabs {
    grid-template-columns: 1fr;
  }
  .product-name {
    font-size: 16px;
  }
}

/* === VARDINO FRAMER POLISH === */
.shop-now-btn {
  background: var(--color-red);
  color: #fff !important;
  padding: 10px 24px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-item.has-mega {
  position: static;
}
.nav-mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 60;
  display: none;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
}
.nav-item.has-mega:hover .nav-mega,
.nav-item.has-mega:focus-within .nav-mega {
  display: block;
}
.nav-mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  padding-top: 28px;
  padding-bottom: 32px;
}
.nav-mega-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nav-mega-title {
  color: #111;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}
.nav-mega-col a:not(.nav-mega-title) {
  color: #333;
  font-size: 15px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 10px;
}

.framer-home-v3 .home-campaign-hero img {
  opacity: 1;
}
.home-video-section {
  padding: clamp(26px, 4vw, 58px) 0;
  background: #f7f7f7;
}
.home-video-wrap {
  max-width: 1120px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: #111;
}
.home-video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.home-category-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 28px);
  padding-top: clamp(34px, 5vw, 72px);
  padding-bottom: clamp(46px, 6vw, 88px);
}
.home-category-card {
  color: #111;
  display: block;
}
.home-category-card img {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  background: #eee;
  display: block;
}
.home-category-card span {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.home-blog-section {
  background: #0d0d0f;
  color: #fff;
  padding: clamp(52px, 7vw, 96px) 0;
}
.home-blog-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 30px;
}
.home-blog-heading p {
  margin: 0 0 12px;
  color: #a5a5a5;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.home-blog-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: 0;
}
.home-blog-heading a {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid #fff;
}
.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.home-blog-card {
  background: #171719;
}
.home-blog-card.light {
  background: #f3f3f3;
}
.home-blog-card a {
  display: block;
  color: inherit;
}
.home-blog-card img {
  width: 100%;
  aspect-ratio: 1/0.72;
  object-fit: cover;
  display: block;
}
.home-blog-card span,
.home-blog-card h3,
.home-blog-card p {
  margin-left: 22px;
  margin-right: 22px;
}
.home-blog-card span {
  display: block;
  margin-top: 20px;
  color: #aaa;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.home-blog-card h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  color: inherit;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0;
}
.home-blog-card p {
  margin-bottom: 24px;
  color: #aaa;
  line-height: 1.7;
}

.vardino-listing-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding-top: clamp(28px, 5vw, 70px);
  padding-bottom: 22px;
  border-bottom: 2px solid #111;
}
.vardino-listing-header h1 {
  margin: 8px 0 0;
  font-size: clamp(42px, 8vw, 112px);
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: 900;
}
.vardino-listing-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 26px;
}
.vardino-search-form.archive-search {
  flex: 1;
  max-width: 620px;
}
.vardino-sort-form {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vardino-sort-form label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.vardino-sort-form select,
.vardino-search-form input,
.vardino-search-form button,
.store-select-grid select {
  border: 1px solid #cfcfcf;
  border-radius: 0;
  background: #fff;
  color: #111;
  min-height: 48px;
  padding: 0 16px;
  font: inherit;
}
.vardino-product-listing {
  padding-bottom: clamp(48px, 7vw, 96px);
}

.product-info {
  background: #f1f1f1;
  padding: 18px 20px 22px;
}
.product-brand-line {
  margin-bottom: 8px;
  color: #555;
  font-size: 12px;
  font-weight: 800;
  text-transform: none;
}
.product-name {
  font-size: 18px;
  font-weight: 850;
  line-height: 1.22;
  letter-spacing: 0;
}
.product-card .woocommerce-Price-amount,
.price-sale {
  color: var(--color-red);
  font-size: 23px;
  font-weight: 900;
}

.vardino-product-page .framer-product-shell {
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.72fr);
  gap: clamp(24px, 3vw, 48px);
  max-width: 1720px;
}
.framer-product-gallery-grid {
  gap: 14px;
}
.framer-product-gallery-grid figure {
  background: #f1f1f1;
}
.framer-product-gallery-grid figure.featured {
  grid-column: auto;
}
.product-breadcrumb-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #777;
  font-size: 13px;
  margin-bottom: 18px;
}
.product-breadcrumb-mini a {
  color: #777;
}
.framer-product-brand span {
  display: inline-flex;
  margin-left: 12px;
  padding: 4px 20px;
  background: #111;
  color: #c99a53;
  font-weight: 900;
}
.product-vat-note {
  margin: -12px 0 18px;
  color: #666;
  font-size: 13px;
}
.product-rating-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 18px 0 20px;
  color: #333;
  font-size: 14px;
}
.product-rating-row span {
  color: #d6b65a;
  font-size: 20px;
}
.product-rating-row a {
  margin-left: 12px;
  color: #111;
  text-decoration: underline;
  font-weight: 700;
}
.product-coupon-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 18px;
  background: #aa6d28;
  margin-bottom: 18px;
}
.product-coupon-strip span {
  background: #fff7ea;
  color: #a66312;
  min-height: 58px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
  border: 1px solid rgba(0,0,0,0.15);
}
.framer-add-to-cart {
  background: #111;
}
.framer-product-benefits {
  background: #f2f1ff;
  color: #29263d;
  font-size: 14px;
}
.framer-product-benefits li {
  list-style: none;
  margin-left: 0;
}
.framer-product-benefits li::before {
  content: "◆";
  margin-right: 8px;
  color: #111;
}
.vardino-product-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 68px);
  border-top: 1px solid #e8e8e8;
  padding-top: clamp(42px, 6vw, 82px);
  padding-bottom: clamp(48px, 7vw, 90px);
}
.vardino-product-info h2 {
  margin: 0 0 18px;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: 0;
}
.vardino-product-info p {
  color: #444;
  line-height: 1.8;
}

.vardino-service-band {
  background: #030303;
  color: #fff;
  border-top: 1px solid #1d1d1d;
  border-bottom: 1px solid #1d1d1d;
}
.vardino-service-band .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.service-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 104px;
  border-right: 1px solid #202020;
}
.service-item:last-child {
  border-right: 0;
}
.service-item svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.6;
}
.service-item p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-item strong {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}
.service-item span {
  color: #bdbdbd;
  font-size: 15px;
}
.vardino-dark-footer {
  background: #111113;
  color: #cfcfcf;
}
.footer-main-dark {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 56px;
  padding-top: clamp(42px, 6vw, 78px);
  padding-bottom: 52px;
}
.footer-company {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-logo-mark {
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.footer-company p,
.footer-link-columns h4,
.footer-newsletter label {
  color: #fff;
  font-weight: 850;
  letter-spacing: 0.04em;
}
.footer-company span,
.footer-link-columns a {
  color: #a9a9a9;
  line-height: 1.7;
}
.footer-newsletter {
  margin-top: 28px;
}
.footer-newsletter div {
  display: grid;
  grid-template-columns: 1fr 118px;
  margin-top: 14px;
  max-width: 640px;
}
.footer-newsletter input,
.footer-newsletter button {
  min-height: 58px;
  border: 1px solid #444;
  background: #3a3a3a;
  color: #fff;
  padding: 0 18px;
  border-radius: 0;
}
.footer-newsletter button {
  background: #4a4a4a;
  font-weight: 900;
  text-transform: uppercase;
}
.footer-social.dark {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}
.footer-social.dark a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: #3a3a3a;
  color: #fff;
  font-weight: 900;
}
.footer-link-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 58px;
}
.footer-link-columns div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.payment-icons.dark {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.payment-icons.dark .payment-icon {
  min-width: 86px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #3b3b3d;
  color: #fff;
  border: 1px solid #4a4a4c;
  font-weight: 900;
}
.footer-payment-img,
.footer-bct img {
  max-width: 190px;
  height: auto;
  margin-top: 12px;
}
.footer-bottom-dark {
  border-top: 1px solid #2b2b2b;
}
.footer-bottom-dark .container {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #aaa;
}

.vardino-search-hero {
  padding-top: clamp(34px, 6vw, 86px);
  padding-bottom: 34px;
}
.vardino-search-hero h1 {
  margin: 8px 0 24px;
  font-size: clamp(36px, 6vw, 80px);
  letter-spacing: 0;
}
.vardino-search-form {
  display: grid;
  grid-template-columns: 1fr 180px;
  max-width: 900px;
}
.vardino-search-form button,
.store-search-btn {
  border: 0;
  background: #111;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}
.vardino-store-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.1fr);
  gap: 34px;
  padding-top: 38px;
  padding-bottom: 80px;
}
.vardino-store-panel h1 {
  margin: 8px 0 28px;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: 0;
}
.store-select-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.store-select-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 700;
}
.store-search-btn {
  width: 100%;
  min-height: 56px;
  margin: 18px 0 20px;
}
.store-list {
  display: grid;
  gap: 12px;
}
.store-card {
  border: 1px solid #d7d7d7;
  padding: 22px;
}
.store-card h2 {
  margin: 0 0 8px;
  font-size: 24px;
}
.store-card span {
  color: #168a52;
  font-weight: 700;
}
.vardino-store-map iframe {
  width: 100%;
  min-height: 620px;
  border: 0;
  display: block;
  background: #eee;
}
.vardino-page-content {
  max-width: 980px;
  padding-top: clamp(36px, 6vw, 76px);
  padding-bottom: clamp(52px, 8vw, 96px);
}
.vardino-page-content h1 {
  margin: 0 0 24px;
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: 0;
}
.vardino-page-content .page-content {
  color: #333;
  font-size: 16px;
  line-height: 1.85;
}

.vardino-cart-header,
.vardino-checkout-header {
  padding-top: clamp(36px, 6vw, 82px);
  padding-bottom: 24px;
}
.vardino-cart-header h1,
.vardino-checkout-header h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: 0;
  text-transform: uppercase;
}
.vardino-cart-layout,
.vardino-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.48fr);
  gap: clamp(28px, 5vw, 82px);
  padding-bottom: 80px;
}
.cart-select-all {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}
.vardino-cart-item {
  display: grid;
  grid-template-columns: 24px 126px 1fr auto auto 28px;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}
.cart-thumb img {
  width: 126px;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: #f2f2f2;
}
.cart-item-info span {
  color: #888;
  font-size: 13px;
}
.cart-item-info h2 {
  margin: 6px 0 10px;
  font-size: 18px;
  letter-spacing: 0;
}
.cart-item-price {
  color: #111;
  font-weight: 900;
  white-space: nowrap;
}
.cart-remove {
  color: #777;
  font-size: 28px;
}
.cart-update-btn {
  margin-top: 18px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid #111;
  background: #fff;
  font-weight: 900;
  text-transform: uppercase;
}
.vardino-order-summary,
.checkout-summary-panel {
  background: #fff;
  position: sticky;
  top: 132px;
  align-self: start;
}
.vardino-order-summary h2,
.checkout-summary-panel h2,
.checkout-fields-panel h2 {
  margin: 0 0 24px;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0;
}
.summary-row,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}
.summary-total {
  border-top: 1px solid #ddd;
  font-size: 18px;
  font-weight: 900;
}
.cart-coupon-row {
  display: grid;
  grid-template-columns: 1fr 150px;
  margin: 22px 0 12px;
}
.cart-coupon-row input,
.cart-coupon-row button,
.woocommerce-checkout input.input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  min-height: 56px;
  border: 1px solid #bbb;
  border-radius: 0;
  background: #fff;
  padding: 0 16px;
  font: inherit;
}
.cart-coupon-row button {
  background: #292929;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}
.btn-checkout,
.woocommerce-checkout #place_order {
  min-height: 60px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2b3138;
  color: #fff !important;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 0;
}
.checkout-steps {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: #888;
  font-weight: 700;
}
.checkout-login-box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  background: #f5f5f5;
  padding: 22px 26px;
  margin-bottom: 28px;
}
.checkout-login-box div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.checkout-login-box strong {
  font-size: 22px;
}
.checkout-login-box a {
  min-width: 180px;
  min-height: 54px;
  border: 1px solid #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-transform: uppercase;
}
.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.form-row-wide,
#billing_address_1_field,
#shipping_address_1_field {
  grid-column: 1/-1;
}

.vardino-commerce-page {
  max-width: 1720px;
}
.vardino-commerce-page h1 {
  text-transform: uppercase;
}
.block-checkout-steps {
  margin: -8px 0 26px;
}
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
  margin-top: 18px;
}
.wp-block-woocommerce-empty-cart-block,
.wc-block-checkout-empty {
  border: 1px solid #e2e2e2;
  padding: clamp(32px, 6vw, 70px);
  text-align: center;
  background: #fafafa;
}
.wc-block-cart__empty-cart__title,
.wc-block-checkout-empty__title {
  color: #111;
  font-size: clamp(26px, 4vw, 46px);
  letter-spacing: 0;
  text-transform: uppercase;
}
.wc-block-grid.wp-block-product-new {
  margin-top: 42px;
}
.wc-block-grid__products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 !important;
}
.wc-block-grid__product {
  border: 0 !important;
  background: #f1f1f1;
  padding: 0 0 18px !important;
  text-align: left;
}
.wc-block-grid__product-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.wc-block-grid__product-title {
  display: block;
  padding: 14px 18px 6px;
  color: #111;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.22;
}
.wc-block-grid__product-price {
  padding: 0 18px;
}
.wc-block-grid__product-price .woocommerce-Price-amount {
  color: var(--color-red);
  font-size: 22px;
  font-weight: 900;
}
.wc-block-grid__product-add-to-cart {
  padding: 12px 18px 0;
}
.wc-block-grid__product-add-to-cart .wp-block-button__link,
.wc-block-checkout-empty .wp-block-button__link,
.wc-block-components-button,
.wc-block-cart__submit-button {
  border-radius: 0 !important;
  background: #2b3138 !important;
  color: #fff !important;
  font-weight: 900;
  text-transform: uppercase;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wc-block-components-sidebar-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.45fr);
  gap: clamp(28px, 5vw, 82px);
}
.wc-block-components-main {
  padding-right: 0 !important;
}
.wc-block-components-sidebar {
  padding-left: 0 !important;
}
.wc-block-cart-items,
.wc-block-components-totals-wrapper,
.wc-block-components-panel {
  border-color: #e1e1e1 !important;
}
.wc-block-cart-items__row {
  padding: 20px 0 !important;
}
.wc-block-cart-item__image img {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.wc-block-cart-item__product,
.wc-block-components-product-name {
  font-weight: 850;
  color: #111;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  font-size: 20px;
  font-weight: 900;
}
.wc-block-components-text-input input,
.wc-block-components-combobox input,
.wc-block-components-form .wc-block-components-text-input input,
.wc-block-components-textarea {
  border-radius: 0 !important;
  min-height: 56px !important;
}

@media (max-width: 1100px) {
  .nav-mega-grid,
  .home-category-showcase,
  .home-blog-grid,
  .vardino-service-band .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-main-dark,
  .vardino-store-layout,
  .vardino-product-page .framer-product-shell,
  .vardino-cart-layout,
  .vardino-checkout-layout,
  .wc-block-components-sidebar-layout {
    grid-template-columns: 1fr;
  }
  .vardino-order-summary,
  .checkout-summary-panel,
  .framer-product-buybox {
    position: static;
  }
}

@media (max-width: 768px) {
  .top-bar .container {
    justify-content: center;
  }
  .top-bar-right,
  .hide-mobile,
  .top-bar-divider {
    display: none;
  }
  .shop-now-btn {
    padding: 8px 18px;
  }
  .main-nav.open .nav-list {
    align-items: stretch;
  }
  .nav-mega {
    position: static;
    display: block;
    box-shadow: none;
    border: 0;
    background: #f7f7f7;
  }
  .nav-mega-grid,
  .home-category-showcase,
  .home-blog-grid,
  .vardino-product-info,
  .footer-link-columns,
  .store-select-grid,
  .woocommerce-billing-fields__field-wrapper,
  .woocommerce-shipping-fields__field-wrapper,
  .wc-block-grid__products {
    grid-template-columns: 1fr;
  }
  .nav-mega-grid {
    padding: 14px;
    gap: 16px;
  }
  .home-video-section {
    padding: 0;
  }
  .home-category-showcase {
    padding-left: 16px;
    padding-right: 16px;
  }
  .home-category-card img {
    aspect-ratio: 1/1;
  }
  .home-blog-heading,
  .vardino-listing-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .vardino-listing-controls {
    justify-content: stretch;
  }
  .vardino-sort-form,
  .vardino-sort-form select,
  .vardino-search-form,
  .footer-newsletter div,
  .cart-coupon-row {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .framer-product-grid.products-grid,
  .products-grid,
  .wc-block-grid__products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    background: transparent;
  }
  .product-info {
    padding: 13px 12px 16px;
  }
  .product-brand-line {
    font-size: 11px;
  }
  .product-name {
    font-size: 14px;
  }
  .product-card .woocommerce-Price-amount,
  .price-sale {
    font-size: 18px;
  }
  .product-coupon-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .framer-product-actions {
    grid-template-columns: 1fr 52px;
  }
  .service-item {
    min-height: 92px;
    justify-content: flex-start;
    padding: 0 18px;
    border-bottom: 1px solid #202020;
  }
  .footer-main-dark {
    gap: 34px;
  }
  .footer-bottom-dark .container {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .vardino-cart-item {
    grid-template-columns: 22px 92px 1fr;
    gap: 12px;
    align-items: start;
  }
  .cart-item-price,
  .vardino-cart-item .qty-control,
  .cart-remove {
    grid-column: 3;
  }
  .cart-thumb img {
    width: 92px;
  }
  .checkout-login-box {
    align-items: stretch;
    flex-direction: column;
  }
  .checkout-login-box a {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .framer-product-grid.products-grid,
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
  .product-info {
    min-height: 124px;
  }
  .home-blog-card h3 {
    font-size: 20px;
  }
  .vardino-listing-header h1 {
    font-size: 38px;
  }
}

/* === VARDINO UX FIXES 1.1.7 === */
.topbar-mobile-search {
  display: none;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.topbar-mobile-search svg {
  width: 18px;
  height: 18px;
}

.framer-product-gallery-wrap,
.framer-related-products {
  position: relative;
  min-width: 0;
}
.framer-product-gallery-grid,
.framer-related-track {
  scroll-behavior: smooth;
}
.vardino-slider-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 66px;
  height: 66px;
  border: 2px solid rgba(255,255,255,.86);
  border-radius: 50%;
  background: rgba(17,17,17,.52);
  color: #fff;
  font-size: 52px;
  font-weight: 300;
  line-height: 58px;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}
.vardino-slider-btn:hover {
  background: rgba(17,17,17,.82);
  transform: translateY(-50%) scale(1.04);
}
.gallery-slider-prev {
  left: 18px;
}
.gallery-slider-next {
  right: 18px;
}
.framer-section-action-row {
  display: flex;
  align-items: center;
  gap: 18px;
}
.section-slider-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vardino-inline-slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid #111;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 30px;
  line-height: 36px;
  cursor: pointer;
}
.framer-related-products .framer-related-track {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 18px;
}
.framer-related-products .framer-related-track .product-card {
  flex: 0 0 clamp(260px, 25vw, 390px);
  scroll-snap-align: start;
}

.home-blog-section {
  background: #fff !important;
  color: #111 !important;
}
.home-blog-heading p,
.home-blog-heading h2,
.home-blog-heading a {
  color: #111 !important;
}
.home-blog-heading a {
  border-color: #111 !important;
}
.home-blog-card {
  background: #f3f3f3 !important;
  border: 1px solid #e4e4e4 !important;
  color: #111 !important;
}
.home-blog-card a,
.home-blog-card h3 {
  color: #111 !important;
}
.home-blog-card span,
.home-blog-card p {
  color: #666 !important;
}

.vardino-chat-bubble {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 9999;
  width: 74px;
  height: 74px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,.5);
  background: #0b0b0b;
  color: #fff;
  box-shadow: 0 14px 36px rgba(0,0,0,.25);
  text-decoration: none;
}
.vardino-chat-bubble svg {
  width: 27px;
  height: 27px;
}
.vardino-chat-bubble span {
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.vardino-blog-page,
.vardino-post-page {
  background: #fff;
  color: #111;
}
.vardino-blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  padding-top: 74px;
  padding-bottom: 42px;
}
.vardino-blog-kicker {
  margin: 0 0 12px;
  color: #777;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.vardino-blog-hero h1,
.vardino-post-article h1 {
  max-width: 1120px;
  margin: 0;
  color: #111;
  font-size: clamp(44px, 7vw, 112px);
  font-weight: 950;
  line-height: .98;
}
.vardino-blog-hero p:not(.vardino-blog-kicker) {
  max-width: 760px;
  margin: 18px 0 0;
  color: #626262;
  font-size: 20px;
}
.vardino-blog-hero > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 58px;
  border: 1px solid #111;
  color: #111;
  font-weight: 900;
  text-decoration: none;
}
.vardino-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-bottom: 54px;
}
.vardino-blog-card-clean {
  min-height: 270px;
  border: 1px solid #e5e0d8;
  border-radius: 8px;
  background: #fff;
}
.vardino-blog-card-clean a {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  color: #111;
  text-decoration: none;
}
.vardino-blog-card-clean img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin: -28px -28px 8px;
  width: calc(100% + 56px);
}
.vardino-blog-card-clean span {
  color: #a66b22;
  font-size: 14px;
  font-weight: 900;
}
.vardino-blog-card-clean h2 {
  margin: auto 0 0;
  color: #111;
  font-size: 27px;
  font-weight: 950;
  line-height: 1.12;
}
.vardino-blog-card-clean p {
  margin: 0;
  color: #666;
  font-size: 16px;
  line-height: 1.55;
}
.vardino-blog-pagination {
  padding-bottom: 60px;
}
.vardino-blog-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.vardino-blog-pagination a,
.vardino-blog-pagination span {
  color: #111;
  font-size: 22px;
  font-weight: 900;
}
.vardino-post-article {
  max-width: 1080px;
  padding-top: 62px;
  padding-bottom: 76px;
}
.vardino-post-meta {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  color: #777;
  font-weight: 700;
}
.vardino-post-cover {
  margin: 34px 0;
}
.vardino-post-cover img {
  width: 100%;
  height: auto;
}
.vardino-post-content {
  color: #333;
  font-size: 19px;
  line-height: 1.75;
}
.vardino-post-content h2,
.vardino-post-content h3 {
  color: #111;
  font-weight: 950;
  line-height: 1.1;
}
.vardino-post-content img {
  max-width: 100%;
  height: auto;
}

@media (min-width: 901px) {
  .vardino-cart-header {
    max-width: 1720px;
    padding-top: 62px;
    padding-bottom: 34px;
  }
  .vardino-cart-header h1 {
    margin: 0 0 18px;
    color: #111;
    font-size: 34px !important;
    font-weight: 950;
    line-height: 1.05;
    text-transform: uppercase;
  }
  .vardino-cart-header p {
    color: #555;
    font-size: 17px;
    line-height: 1.45;
  }
  .vardino-cart-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 500px) !important;
    gap: 86px !important;
    align-items: start;
    max-width: 1720px;
    margin: 0 auto 72px;
  }
  .vardino-cart-items {
    display: block;
  }
  .cart-select-all {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    color: #222;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
  }
  .cart-select-all input,
  .vardino-cart-item > input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #222;
  }
  .vardino-cart-item {
    display: grid !important;
    grid-template-columns: 24px 128px minmax(260px, 1fr) 150px 124px 30px !important;
    gap: 24px;
    align-items: center;
    min-height: 166px;
    padding: 24px 0;
    border-top: 1px solid #e6e6e6;
    border-radius: 0;
    background: transparent;
  }
  .vardino-cart-item:last-of-type {
    border-bottom: 1px solid #e6e6e6;
  }
  .cart-thumb img {
    width: 128px !important;
    height: 128px !important;
    object-fit: cover;
    background: #f2f2f2;
  }
  .cart-item-info span {
    display: block;
    margin-bottom: 8px;
    color: #999;
    font-size: 14px;
    font-weight: 800;
  }
  .cart-item-info h2 {
    margin: 0 0 10px;
    color: #111;
    font-size: 20px;
    font-weight: 850;
    line-height: 1.25;
  }
  .cart-item-info h2 a {
    color: inherit;
    text-decoration: none;
  }
  .cart-item-price {
    color: #111;
    text-align: right;
    font-size: 18px;
    font-weight: 900;
  }
  .qty-control {
    display: grid;
    grid-template-columns: 36px 42px 36px;
    height: 40px;
    border: 1px solid #999;
    background: #fff;
  }
  .qty-control button,
  .qty-control input {
    border: 0;
    background: transparent;
    color: #111;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
  }
  .cart-remove {
    color: #777;
    text-align: center;
    font-size: 28px;
    text-decoration: none;
  }
  .cart-update-btn {
    margin-top: 20px;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid #111;
    background: #fff;
    color: #111;
    font-weight: 900;
  }
  .vardino-order-summary {
    position: sticky;
    top: 130px;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .vardino-order-summary h2 {
    margin: 0 0 30px;
    color: #111;
    font-size: 27px;
    font-weight: 950;
    text-transform: uppercase;
  }
  .summary-row,
  .summary-total {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
    border-bottom: 1px solid #e2e2e2;
    color: #555;
    font-size: 17px;
  }
  .summary-row strong,
  .summary-total strong {
    color: #111;
    font-weight: 900;
  }
  .summary-total {
    color: #111;
    font-weight: 900;
  }
  .cart-coupon-row {
    display: grid;
    grid-template-columns: 1fr 150px;
    margin-top: 20px;
  }
  .cart-coupon-row input,
  .cart-coupon-row button {
    min-height: 58px;
    border: 1px solid #b8b8b8;
    border-radius: 0;
  }
  .cart-coupon-row input {
    padding: 0 18px;
  }
  .cart-coupon-row button {
    border-color: #252525;
    background: #252525;
    color: #fff;
    font-weight: 800;
  }
  .btn-checkout {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding: 0 20px;
    background: #303740 !important;
    color: #fff !important;
    font-size: 16px;
    font-weight: 950;
    text-transform: uppercase;
    text-decoration: none;
  }

  .vardino-checkout-header {
    max-width: 1500px;
    padding-top: 58px;
    padding-bottom: 26px;
  }
  .vardino-checkout-header h1 {
    margin: 0 0 18px;
    color: #111;
    font-size: 42px !important;
    font-weight: 950;
    text-transform: uppercase;
  }
  .checkout-steps {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #8a8a8a;
    font-size: 18px;
    font-weight: 800;
  }
  .checkout-steps a,
  .checkout-steps strong {
    color: #111;
    text-decoration: none;
  }
  .vardino-checkout-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 760px) minmax(330px, 500px) !important;
    gap: 88px !important;
    align-items: start;
    max-width: 1500px;
    margin: 0 auto 80px;
  }
  .checkout-login-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    align-items: center;
    gap: 24px;
    min-height: 92px;
    margin-bottom: 28px;
    padding: 22px 26px;
    background: #f5f5f5;
  }
  .checkout-login-box strong {
    display: block;
    color: #111;
    font-size: 24px;
    font-weight: 950;
  }
  .checkout-login-box span {
    color: #555;
    font-size: 16px;
  }
  .checkout-login-box a {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    border: 1px solid #111;
    color: #111;
    font-weight: 950;
    text-decoration: none;
    text-transform: uppercase;
  }
  .checkout-fields-panel h2,
  .checkout-summary-panel h2 {
    margin: 0 0 22px;
    color: #222;
    font-size: 26px;
    font-weight: 950;
  }
  .woocommerce-billing-fields__field-wrapper,
  .woocommerce-shipping-fields__field-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .woocommerce-billing-fields__field-wrapper .form-row-wide,
  .woocommerce-shipping-fields__field-wrapper .form-row-wide {
    grid-column: 1 / -1;
  }
  .woocommerce-checkout .form-row {
    margin: 0;
  }
  .woocommerce-checkout input.input-text,
  .woocommerce-checkout textarea,
  .woocommerce-checkout select {
    min-height: 62px;
    border: 1px solid #bbb;
    border-radius: 0;
    padding: 0 18px;
    color: #333;
    font-size: 17px;
  }
  .checkout-summary-panel {
    border: 0;
    background: transparent;
  }
  .checkout-summary-panel #order_review {
    padding: 0;
  }
  .woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
  }
  .woocommerce-checkout-review-order-table th,
  .woocommerce-checkout-review-order-table td {
    padding: 14px 0;
    border-bottom: 1px solid #dedede;
    color: #555;
    text-align: left;
    font-size: 17px;
  }
  .woocommerce-checkout-review-order-table td:last-child {
    text-align: right;
    color: #111;
    font-weight: 900;
  }
  #place_order,
  .wc-block-components-checkout-place-order-button {
    min-height: 64px;
    width: 100%;
    margin-top: 20px;
    border: 0;
    border-radius: 0;
    background: #252525 !important;
    color: #fff !important;
    font-weight: 950;
    text-transform: uppercase;
  }
  .wp-block-woocommerce-checkout,
  .wp-block-woocommerce-cart {
    max-width: 1500px;
    margin: 54px auto 80px;
    padding: 0 24px;
  }
  .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout,
  .wp-block-woocommerce-cart .wc-block-components-sidebar-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 760px) minmax(330px, 500px) !important;
    gap: 88px !important;
  }
  .wc-block-components-text-input input,
  .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
  .wc-block-components-form .wc-block-components-text-input input,
  .wc-block-components-textarea {
    min-height: 62px !important;
    border: 1px solid #bbb !important;
    border-radius: 0 !important;
    font-size: 17px !important;
  }
  .wc-block-components-title {
    color: #222;
    font-size: 26px !important;
    font-weight: 950 !important;
  }
}

@media (max-width: 768px) {
  .top-bar .container {
    justify-content: space-between;
    gap: 10px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .top-bar-left {
    flex: 0 0 auto;
    justify-content: flex-start;
  }
  .shop-now-btn {
    margin-left: 0 !important;
    padding: 8px 18px !important;
    font-size: 12px !important;
  }
  .top-bar-right {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-left: auto;
  }
  .topbar-call-link {
    display: none !important;
  }
  .topbar-mobile-search {
    display: inline-flex !important;
  }
  .topbar-store-link {
    display: inline-flex !important;
    align-items: center;
    min-height: 34px;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    text-decoration: none;
    white-space: nowrap;
  }
  .vardino-slider-btn {
    width: 58px;
    height: 58px;
    font-size: 44px;
    line-height: 50px;
  }
  .gallery-slider-prev {
    left: 12px;
  }
  .gallery-slider-next {
    right: 12px;
  }
  .framer-section-action-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .framer-related-products .framer-related-track {
    gap: 14px;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .framer-related-products .framer-related-track .product-card {
    flex-basis: calc(82vw - 16px);
  }
  .vardino-chat-bubble {
    width: 66px;
    height: 66px;
    right: 16px;
    bottom: 18px;
  }
  .vardino-blog-hero {
    display: block;
    padding-top: 42px;
    padding-bottom: 28px;
  }
  .vardino-blog-hero h1,
  .vardino-post-article h1 {
    font-size: 42px;
  }
  .vardino-blog-hero p:not(.vardino-blog-kicker) {
    font-size: 16px;
  }
  .vardino-blog-hero > a {
    margin-top: 22px;
  }
  .vardino-blog-grid {
    grid-template-columns: 1fr;
  }
  .vardino-post-article {
    padding-top: 36px;
    padding-bottom: 50px;
  }
  .vardino-post-content {
    font-size: 17px;
  }
}

/* === VARDINO UX FIXES 1.1.5 === */
.home-video-section {
  padding: 0;
  background: #fff;
}
.home-video-wrap {
  width: 100%;
  max-width: none;
}
.home-video-wrap iframe {
  border: 0;
}

.nav-item.has-mega > .nav-link::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.nav-mega-title {
  text-transform: uppercase;
}

.home-blog-card {
  min-height: 100%;
  border: 1px solid rgba(255,255,255,0.08);
}
.home-blog-card a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}
.home-blog-card img {
  aspect-ratio: 1.28/1;
}
.home-blog-card p {
  margin-top: auto;
}

.vardino-listing-header {
  align-items: center;
  padding-top: clamp(18px, 3vw, 34px);
  padding-bottom: clamp(16px, 2vw, 24px);
  border-bottom: 1px solid #111;
}
.vardino-listing-header h1 {
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1.08;
}
.vardino-listing-header .framer-kicker {
  font-size: 11px;
}
.vardino-listing-controls {
  padding-top: 16px;
}

.product-card,
.wc-block-grid__product {
  height: 100%;
  display: flex !important;
  flex-direction: column;
}
.product-card .product-info,
.wc-block-grid__product .wc-block-grid__product-title {
  min-width: 0;
}
.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 176px;
}
.product-price,
.product-card .product-price {
  margin-top: auto;
}
.product-name a,
.wc-block-grid__product-title {
  overflow-wrap: anywhere;
}
.framer-product-grid .product-card {
  background: #f1f1f1;
}

.framer-pagination {
  display: flex;
  justify-content: center;
  padding-top: 28px;
}
.framer-pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.framer-pagination a,
.framer-pagination span {
  color: #111;
  font-size: 22px;
  font-weight: 900;
}
.framer-pagination .current {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.vardino-product-info {
  grid-template-columns: minmax(0, 1fr);
  max-width: 1180px;
}
.vardino-product-info article {
  width: 100%;
}
.vardino-product-info h2 {
  font-size: clamp(26px, 3vw, 40px);
}
.vardino-product-info p,
.vardino-product-info li {
  max-width: 920px;
  font-size: 16px;
}
.framer-product-colors span,
.framer-product-sizes button {
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.framer-product-colors span.active {
  outline: 2px solid #111;
  outline-offset: 3px;
}
.framer-product-sizes button.active {
  border-color: #111;
  background: #111;
  color: #fff;
}
.framer-add-to-cart.btn-add-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-link-columns > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.payment-icons.dark {
  flex-direction: row;
  align-items: center;
}
.footer-bct {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
}
.footer-bct-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 54px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  color: #1f7fba;
  border: 3px solid #1f7fba;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.wp-block-woocommerce-empty-cart-block {
  overflow: hidden;
}
.wp-block-woocommerce-empty-cart-block > svg,
.wc-block-cart__empty-cart__title::before {
  max-width: 92px !important;
  max-height: 92px !important;
}
.wc-block-grid.has-4-columns .wc-block-grid__product,
.wc-block-grid.has-3-columns .wc-block-grid__product,
.wc-block-grid.has-2-columns .wc-block-grid__product {
  flex: none !important;
  max-width: none !important;
  width: auto !important;
}
.wc-block-grid__product {
  min-width: 0;
}
.wc-block-grid__product-title {
  flex: 1;
}

@media (max-width: 768px) {
  .main-nav.open {
    max-height: calc(100vh - 56px);
    overflow: auto;
  }
  .nav-list {
    align-items: stretch;
  }
  .nav-item {
    display: block;
    height: auto;
  }
  .nav-link {
    min-height: 54px;
    font-size: 14px;
    font-weight: 900;
  }
  .nav-mega {
    position: static;
    display: none !important;
    background: #f6f6f6;
    box-shadow: none;
    border: 0;
  }
  .nav-item.mega-open > .nav-mega {
    display: block !important;
  }
  .nav-item.mega-open > .nav-link::after {
    transform: rotate(225deg) translate(-2px, -1px);
  }
  .nav-mega-grid {
    display: grid;
    grid-template-columns: 1fr;
    padding: 10px 20px 18px;
    gap: 18px;
  }
  .nav-mega-col {
    gap: 10px;
  }
  .nav-mega-title {
    font-size: 15px;
  }
  .nav-mega-col a:not(.nav-mega-title) {
    font-size: 14px;
    padding-bottom: 9px;
  }

  .home-video-wrap {
    aspect-ratio: 16/9;
  }
  .home-blog-section {
    padding: 42px 0;
  }
  .home-blog-heading h2 {
    font-size: 38px;
    line-height: 1.02;
  }
  .home-blog-card img {
    aspect-ratio: 1.12/1;
  }

  .vardino-listing-header {
    flex-direction: row;
    align-items: flex-end;
    gap: 14px;
  }
  .vardino-listing-header h1 {
    font-size: 32px;
  }
  .framer-collection-meta strong {
    font-size: 30px;
  }
  .vardino-listing-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .vardino-sort-form {
    display: grid;
    grid-template-columns: 92px 1fr;
  }

  .product-info {
    min-height: 148px;
  }
  .product-actions {
    position: static;
    transform: none;
    background: #111;
    padding: 8px;
  }
  .btn-add-cart {
    font-size: 10px;
    min-height: 38px;
    padding: 8px 6px;
  }

  .framer-product-shell {
    padding-top: 0;
  }
  .framer-product-gallery-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-left: -16px;
    margin-right: -16px;
    padding: 0 16px 12px;
  }
  .framer-product-gallery-grid figure {
    flex: 0 0 calc(100vw - 32px);
    scroll-snap-align: start;
    aspect-ratio: 1/1;
  }
  .framer-product-buybox {
    padding-top: 10px;
  }
  .product-coupon-strip {
    gap: 6px;
    padding: 10px;
  }
  .framer-product-actions {
    grid-template-columns: 1fr 56px;
  }
  .vardino-product-info {
    padding-top: 28px;
    padding-bottom: 42px;
  }

  .footer-main-dark {
    display: block;
    padding-top: 34px;
    padding-bottom: 34px;
  }
  .footer-company {
    gap: 12px;
  }
  .footer-logo-mark {
    font-size: 26px;
  }
  .footer-newsletter div {
    display: grid;
    grid-template-columns: 1fr 74px !important;
  }
  .footer-newsletter input,
  .footer-newsletter button {
    min-height: 56px;
  }
  .footer-link-columns {
    display: block;
    margin-top: 34px;
  }
  .footer-link-columns > div {
    padding: 22px 0;
    border-top: 1px solid #2b2b2b;
  }
  .payment-icons.dark {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
  }
  .payment-icons.dark .payment-icon {
    min-width: 86px;
    height: 46px;
  }
  .footer-bct {
    margin-top: 18px;
  }

  .wp-block-woocommerce-empty-cart-block {
    padding: 28px 14px;
  }
  .wc-block-cart__empty-cart__title,
  .wc-block-checkout-empty__title {
    font-size: 28px;
  }
  .wc-block-grid__products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
  .wc-block-grid__product {
    background: #f1f1f1;
  }
  .wc-block-grid__product-title {
    padding: 12px 10px 6px;
    font-size: 14px;
  }
  .wc-block-grid__product-price {
    padding: 0 10px;
  }
  .wc-block-grid__product-add-to-cart {
    padding: 10px;
  }
}

@media (max-width: 430px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .home-category-showcase {
    grid-template-columns: 1fr;
  }
  .home-category-card span {
    font-size: 13px;
  }
  .product-info {
    min-height: 140px;
  }
  .product-name {
    font-size: 13px;
  }
  .product-card .woocommerce-Price-amount,
  .product-card .product-price,
  .price-sale {
    font-size: 17px;
  }
  .framer-pagination a,
  .framer-pagination span {
    font-size: 20px;
  }
}

/* Legacy AILA SEO product pages */
.vpd-gallery.vardino-enhanced-gallery {
  position: relative !important;
}
.vpd-gallery.vardino-enhanced-gallery .vpd-main-img {
  position: relative !important;
}
.vpd-gallery.vardino-enhanced-gallery .vpd-gallery-prev,
.vpd-gallery.vardino-enhanced-gallery .vpd-gallery-next {
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 58px !important;
  height: 58px !important;
  font-size: 42px !important;
  z-index: 8 !important;
}
.vpd-gallery.vardino-enhanced-gallery .vpd-gallery-prev {
  left: 14px !important;
}
.vpd-gallery.vardino-enhanced-gallery .vpd-gallery-next {
  right: 14px !important;
}
.vpd-gallery.vardino-enhanced-gallery .vpd-thumbs img {
  cursor: pointer !important;
  border-color: #d4d4d4 !important;
}
.vpd-gallery.vardino-enhanced-gallery .vpd-thumbs img.active {
  border: 2px solid #111 !important;
}
.vpd-related.vardino-enhanced-related {
  display: block !important;
  background: transparent !important;
  color: #111 !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
.vpd-related.vardino-enhanced-related h2 {
  font-size: clamp(30px, 4vw, 56px) !important;
  line-height: 1.05 !important;
  margin-bottom: 18px !important;
}
.vpd-mini-controls {
  justify-content: flex-start !important;
  margin: 0 0 16px !important;
}
.vpd-mini-grid.vpd-mini-track {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 18px !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  padding-bottom: 10px !important;
  -webkit-overflow-scrolling: touch !important;
}
.vpd-mini-grid.vpd-mini-track .vpd-mini {
  flex: 0 0 min(310px, 72vw) !important;
  scroll-snap-align: start !important;
  background: #f1f1f1 !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 0 18px !important;
}
.vpd-mini-grid.vpd-mini-track .vpd-mini img {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  margin-bottom: 14px !important;
}
.vpd-mini-grid.vpd-mini-track .vpd-mini span {
  display: block !important;
  padding: 0 16px !important;
  font-size: 18px !important;
  line-height: 1.25 !important;
  font-weight: 900 !important;
}

@media (max-width: 700px) {
  .vpd-gallery.vardino-enhanced-gallery .vpd-gallery-prev,
  .vpd-gallery.vardino-enhanced-gallery .vpd-gallery-next {
    width: 48px !important;
    height: 48px !important;
    font-size: 34px !important;
  }
  .vpd-related.vardino-enhanced-related h2 {
    font-size: 34px !important;
  }
}

/* === VARDINO SETTINGS + MOBILE POLISH 1.1.12 === */
.home-campaign-hero picture {
  display: block;
  width: 100%;
  height: 100%;
}
.home-campaign-hero picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-category-showcase {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: start;
}
.home-category-card img {
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
}

@media (min-width: 1101px) {
  .home-category-showcase {
    gap: clamp(24px, 2.2vw, 42px) !important;
  }
  .home-category-showcase.home-category-count-1 {
    grid-template-columns: minmax(0, 520px) !important;
    justify-content: center;
  }
  .home-category-showcase.home-category-count-2 {
    grid-template-columns: repeat(2, minmax(0, 520px)) !important;
    justify-content: center;
  }
  .home-category-showcase.home-category-count-3,
  .home-category-showcase.home-category-count-6,
  .home-category-showcase.home-category-count-9 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    max-width: 1480px;
  }
  .home-category-showcase.home-category-count-4,
  .home-category-showcase.home-category-count-8,
  .home-category-showcase.home-category-count-12 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .home-category-showcase.home-category-count-5,
  .home-category-showcase.home-category-count-10 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}
.home-blog-section {
  background: #fff !important;
  color: #111 !important;
}
.home-blog-heading p {
  color: #777 !important;
}
.home-blog-card {
  border-color: #e2e2e2 !important;
  background: #f1f1f1;
}
.home-blog-carousel {
  position: relative;
}
.home-scroll-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 62px;
  background: rgba(255,255,255,.88);
  color: #111;
  border: 1px solid #e1e1e1;
  font-size: 48px;
  line-height: 1;
  z-index: 4;
}

.footer-social.dark a {
  width: 48px;
  height: 48px;
}
.footer-social.dark a svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}
.footer-social.dark a svg rect,
.footer-social.dark a svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.footer-social.dark a svg .svg-cutout {
  fill: #3a3a3a;
  stroke: none;
}

.checkout-summary-panel,
.wc-block-components-sidebar {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.checkout-summary-panel *,
.wc-block-components-sidebar * {
  min-width: 0;
}
.wc-block-components-sidebar .wc-block-components-order-summary-item,
.checkout-summary-panel .wc-block-components-order-summary-item {
  display: grid !important;
  grid-template-columns: 74px minmax(0, 1fr) max-content !important;
  gap: 12px !important;
  align-items: start !important;
}
.wc-block-components-sidebar .wc-block-components-order-summary-item__image,
.checkout-summary-panel .wc-block-components-order-summary-item__image {
  width: 74px !important;
}
.wc-block-components-sidebar .wc-block-components-order-summary-item__description,
.checkout-summary-panel .wc-block-components-order-summary-item__description {
  min-width: 0 !important;
  overflow: hidden !important;
}
.wc-block-components-sidebar .wc-block-components-product-name,
.checkout-summary-panel .wc-block-components-product-name {
  display: block !important;
  max-width: 100% !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  line-height: 1.35 !important;
}
.wc-block-components-sidebar .wc-block-components-order-summary-item__total-price,
.checkout-summary-panel .wc-block-components-order-summary-item__total-price {
  justify-self: end !important;
  white-space: nowrap !important;
  text-align: right !important;
}

@media (max-width: 768px) {
  .header-main {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 18px;
    height: 74px;
  }
  .site-logo {
    position: static;
    transform: none;
    justify-self: center;
  }
  .site-logo a {
    font-size: clamp(28px, 9vw, 44px);
    letter-spacing: .13em;
  }
  .header-actions {
    justify-self: end;
    gap: 18px;
    margin-left: 0;
  }
  #search-toggle {
    margin-left: 10px;
  }
  .home-category-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }
  .home-blog-heading {
    gap: 18px;
    margin-bottom: 24px;
  }
  .home-blog-carousel {
    margin-left: -16px;
    margin-right: -16px;
  }
  .home-blog-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 16px !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 16px 10px;
  }
  .home-blog-card {
    flex: 0 0 min(82vw, 390px);
    scroll-snap-align: start;
  }
  .home-blog-card img {
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 1 / 1 !important;
  }
  .home-scroll-btn {
    display: inline-flex;
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
  }
  .home-scroll-prev {
    left: 0;
  }
  .home-scroll-next {
    right: 0;
  }
  .wc-block-components-sidebar .wc-block-components-order-summary-item,
  .checkout-summary-panel .wc-block-components-order-summary-item {
    grid-template-columns: 64px minmax(0, 1fr) !important;
  }
  .wc-block-components-sidebar .wc-block-components-order-summary-item__total-price,
  .checkout-summary-panel .wc-block-components-order-summary-item__total-price {
    grid-column: 2;
    justify-self: start !important;
    margin-top: 4px;
  }
}

@media (max-width: 430px) {
  .home-category-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .home-scroll-btn {
    width: 42px;
    height: 54px;
    font-size: 42px;
  }
}
