/* Self-hosted fonts — zero external requests, zero tracking */
@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/user-content/themes/void-culture/fonts/anton-400.woff2) format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/user-content/themes/void-culture/fonts/cormorant-400.woff2) format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(/user-content/themes/void-culture/fonts/cormorant-400i.woff2) format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/user-content/themes/void-culture/fonts/dm-sans-400.woff2) format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/user-content/themes/void-culture/fonts/dm-sans-500.woff2) format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/user-content/themes/void-culture/fonts/dm-sans-600.woff2) format('woff2');
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   VOID CULTURE — CSS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

:root {
  --vc-bg: #4a5340;
  --vc-bg-dark: #3e4636;
  --vc-font-display: 'Anton', sans-serif;
  --vc-font-body: 'DM Sans', sans-serif;
  --vc-font-accent: 'Cormorant Garamond', serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--vc-bg) !important;
  color: #fff !important;
  font-family: var(--vc-font-body) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  line-height: 1.6;
}

::selection { background: rgba(255,255,255,0.2); color: #fff; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--vc-bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 3px; }

/* ─── PageMotor Overrides ─── */
.page-container { padding: 0 !important; margin: 0 !important; max-width: none !important; }
.page-container.text { max-width: none !important; }
.page-content { max-width: none !important; }
h1.page-title { display: none !important; }
.page-author, .page-date { display: none !important; }
.column-content, .column-sidebar, .columns { display: block !important; float: none !important; width: 100% !important; max-width: none !important; padding: 0 !important; }
#site-title a { color: #fff !important; text-decoration: none !important; }
body h1, body h2, body h3, body h4, body h5, body h6 { color: #fff; margin: 0; }
body p { color: rgba(255,255,255,0.65); margin: 0; }

/* ─── NAVIGATION ─── */
.vc-nav {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding: 0 5vw !important;
  height: 70px;
  background: transparent;
  transition: all 0.4s ease;
  margin: 0 !important;
}

.vc-nav.scrolled {
  background: rgba(74,83,64,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.vc-nav #site-title {
  font-family: var(--vc-font-display) !important;
  font-size: 18px !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vc-nav-links {
  display: flex;
  gap: 32px;
}

.vc-nav-link {
  font-family: var(--vc-font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-transform: lowercase;
  letter-spacing: 0.04em;
  transition: color 0.3s;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.vc-nav-link:hover { color: #fff; }
.vc-nav-link.active { color: #fff; border-bottom-color: rgba(255,255,255,0.5); }

.vc-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.vc-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ─── PILL BUTTON ─── */
.vc-pill-btn {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 999px;
  padding: 10px 28px;
  font-size: 13px;
  font-family: var(--vc-font-body);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: lowercase;
  text-align: center;
}

.vc-pill-btn:hover { background: #fff; color: var(--vc-bg); }

.vc-pill-btn.large { padding: 16px 42px; font-size: 15px; }
.vc-pill-btn.filled { background: #fff; color: var(--vc-bg); }
.vc-pill-btn.filled:hover { background: rgba(255,255,255,0.85); }

/* ─── FADE IN ─── */
noscript ~ * .fade-in, .no-js .fade-in { opacity: 1 !important; transform: none !important; }

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── HERO ─── */
.vc-hero {
  min-height: 100vh;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  padding: 120px 5vw 60px !important;
  margin: 0 !important;
}

.vc-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.vc-hero-title {
  font-family: var(--vc-font-display) !important;
  font-size: min(12vw, 140px) !important;
  font-weight: 900 !important;
  line-height: 0.88 !important;
  letter-spacing: -0.03em;
  color: #fff !important;
  text-transform: uppercase;
}

.vc-hero-tagline {
  font-family: var(--vc-font-accent) !important;
  font-style: italic;
  font-size: 16px !important;
  color: rgba(255,255,255,0.7) !important;
  margin-top: 24px;
  letter-spacing: 0.02em;
}

.vc-hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.vc-hero-image {
  width: 100%;
  height: 70vh;
  max-height: 650px;
  border-radius: 0 0 200px 200px;
  overflow: hidden;
}

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

.vc-hero-texture {
  width: 140px; height: 160px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.vc-hero-texture img { width: 100%; height: 100%; object-fit: cover; }

.vc-hero-callout {
  font-family: var(--vc-font-display) !important;
  font-weight: 800 !important;
  font-size: 28px !important;
  color: #fff !important;
  line-height: 1.15 !important;
  margin-bottom: 12px;
}

.vc-hero-badge {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-family: var(--vc-font-body);
}

/* ─── SECTIONS ─── */
.vc-section {
  padding: 80px 5vw !important;
  margin: 0 !important;
}

.vc-section-border {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.vc-section-title {
  font-family: var(--vc-font-display) !important;
  font-size: min(8vw, 90px) !important;
  font-weight: 900 !important;
  color: #fff !important;
  text-transform: uppercase;
  line-height: 0.9 !important;
  margin-bottom: 50px !important;
}

/* ─── VALUES ─── */
.vc-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.vc-value-num {
  font-family: var(--vc-font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
}

.vc-value-title {
  font-family: var(--vc-font-display) !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #fff !important;
  margin: 8px 0 12px !important;
  text-transform: uppercase;
}

.vc-value-desc {
  font-family: var(--vc-font-body) !important;
  font-size: 14px !important;
  color: rgba(255,255,255,0.6) !important;
  line-height: 1.6 !important;
}

/* ─── PRODUCT GRID ─── */
.vc-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.vc-product-card { display: block; cursor: pointer; }

.vc-product-img {
  border-radius: 24px;
  height: 420px;
  overflow: hidden;
}

.vc-product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.vc-product-card:hover .vc-product-img img { transform: scale(1.03); }

.vc-product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.vc-product-name {
  font-family: var(--vc-font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.vc-product-price {
  font-family: var(--vc-font-body);
  font-size: 15px;
  color: #fff;
  font-weight: 600;
}

.vc-product-cat {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  text-transform: capitalize;
}

/* ─── COLLECTION FILTER ─── */
.vc-filter-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.vc-filter-btn {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  padding: 8px 22px;
  font-size: 13px;
  font-family: var(--vc-font-body);
  cursor: pointer;
  text-transform: lowercase;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
}

.vc-filter-btn:hover, .vc-filter-btn.active {
  background: #fff;
  color: var(--vc-bg);
}

/* ─── MARQUEE ─── */
.vc-marquee {
  overflow: hidden !important;
  padding: 60px 0 !important;
}

.vc-marquee-track {
  display: flex;
  animation: vc-marquee 20s linear infinite;
  white-space: nowrap;
}

.vc-marquee-text {
  font-family: var(--vc-font-display);
  font-size: 48px;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  text-transform: uppercase;
  padding-right: 40px;
  flex-shrink: 0;
}

@keyframes vc-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── PAGE CONTENT (subpages) ─── */
.vc-page-content {
  padding: 0 !important;
  margin: 0 !important;
}

.vc-page-heading {
  font-family: var(--vc-font-display) !important;
  font-size: min(10vw, 120px) !important;
  font-weight: 900 !important;
  color: #fff !important;
  text-transform: uppercase;
  line-height: 0.88 !important;
  margin-bottom: 50px !important;
}

.vc-accent-label {
  font-family: var(--vc-font-accent) !important;
  font-style: italic;
  font-size: 15px !important;
  color: rgba(255,255,255,0.5) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px !important;
}

.vc-body-text {
  font-family: var(--vc-font-body) !important;
  font-size: 15px !important;
  color: rgba(255,255,255,0.65) !important;
  line-height: 1.7 !important;
}

/* ─── ROUNDED IMAGE ─── */
.vc-rounded-img {
  overflow: hidden;
  position: relative;
}

.vc-rounded-img img { width: 100%; height: 100%; object-fit: cover; }

/* ─── ABOUT PAGE ─── */
.vc-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.vc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.vc-stat-value {
  font-family: var(--vc-font-display) !important;
  font-size: 52px !important;
  font-weight: 900 !important;
  color: #fff !important;
}

.vc-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  margin-top: 8px;
}

/* ─── LOOKBOOK ─── */
.vc-lookbook-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.vc-look-caption {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
}

.vc-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ─── CONTACT PAGE ─── */
.vc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.vc-contact-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vc-contact-value {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}

.vc-social-link {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
  transition: color 0.3s;
}

.vc-social-link:hover { color: #fff; }

/* ─── FORM STYLING (EP Email override) ─── */
.vc-form-card {
  background: rgba(255,255,255,0.04);
  border-radius: 28px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.08);
}

.ep-contact-form-wrapper { max-width: none !important; margin: 0 !important; }

.ep-contact-form .form-field { margin-bottom: 20px; }

.ep-contact-form label {
  display: none;
}

.ep-contact-form input[type="text"],
.ep-contact-form input[type="email"],
.ep-contact-form select,
.ep-contact-form textarea {
  width: 100% !important;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 16px !important;
  padding: 16px 20px !important;
  color: #fff !important;
  font-family: var(--vc-font-body) !important;
  font-size: 14px !important;
  outline: none !important;
  transition: border-color 0.3s !important;
}

.ep-contact-form input:focus,
.ep-contact-form select:focus,
.ep-contact-form textarea:focus {
  border-color: rgba(255,255,255,0.4) !important;
}

.ep-contact-form input::placeholder,
.ep-contact-form textarea::placeholder {
  color: rgba(255,255,255,0.3) !important;
}

.ep-contact-form textarea { min-height: 120px !important; resize: vertical !important; }
.ep-contact-form select { appearance: none; cursor: pointer; }
.ep-contact-form select option { color: #000; }

.ep-contact-submit,
.ep-contact-form button[type="submit"] {
  display: inline-block !important;
  background: #fff !important;
  color: var(--vc-bg) !important;
  border: 1.5px solid rgba(255,255,255,0.6) !important;
  border-radius: 999px !important;
  padding: 16px 42px !important;
  font-size: 15px !important;
  font-family: var(--vc-font-body) !important;
  letter-spacing: 0.04em !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-transform: lowercase !important;
  width: auto !important;
}

.ep-contact-submit:hover,
.ep-contact-form button[type="submit"]:hover {
  background: rgba(255,255,255,0.85) !important;
}

.ep-contact-response.success {
  color: rgba(255,255,255,0.8) !important;
  background: rgba(255,255,255,0.08) !important;
  border-radius: 16px;
  padding: 20px;
  margin-top: 16px;
}

/* Footer newsletter form override */
.vc-footer-newsletter .ep-contact-form-wrapper { max-width: 300px !important; }
.vc-footer-newsletter .ep-contact-form { display: flex; gap: 8px; }
.vc-footer-newsletter .ep-contact-form .form-field { margin-bottom: 0; flex: 1; }
.vc-footer-newsletter .ep-contact-form input[type="email"] {
  border-radius: 999px !important;
  padding: 10px 18px !important;
  font-size: 13px !important;
}
.vc-footer-newsletter .ep-contact-submit,
.vc-footer-newsletter .ep-contact-form button[type="submit"] {
  padding: 10px 20px !important;
  font-size: 13px !important;
}

/* ─── EP ECOMMERCE OVERRIDES ─── */
.ep-ecommerce-checkout {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 28px !important;
  padding: 32px !important;
  color: #fff !important;
  margin: 0 !important;
  max-width: none !important;
}

.ep-ecommerce-checkout h3 {
  font-family: var(--vc-font-display) !important;
  font-size: 20px !important;
  text-transform: uppercase !important;
  margin-bottom: 4px !important;
}

.ep-ecommerce-price {
  font-size: 15px !important;
  color: rgba(255,255,255,0.6) !important;
  margin-bottom: 20px !important;
  display: block !important;
}

.ep-ecommerce-product-desc { color: rgba(255,255,255,0.65) !important; }
.ep-ecommerce-total { color: #fff !important; font-weight: 600 !important; }

.ep-ecommerce-field { margin-bottom: 14px !important; }

.ep-ecommerce-field {
  position: relative !important;
}

.ep-ecommerce-field label {
  position: absolute !important;
  left: 20px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 14px !important;
  color: rgba(255,255,255,0.3) !important;
  pointer-events: none !important;
  transition: opacity 0.2s !important;
  font-family: var(--vc-font-body) !important;
  margin: 0 !important;
}

.ep-ecommerce-checkout input[type="text"],
.ep-ecommerce-checkout input[type="email"],
.ep-ecommerce-checkout select {
  width: 100% !important;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 16px !important;
  padding: 14px 18px !important;
  color: #fff !important;
  font-family: var(--vc-font-body) !important;
  font-size: 14px !important;
  outline: none !important;
  transition: border-color 0.3s !important;
  box-sizing: border-box !important;
}

.ep-ecommerce-checkout input:focus {
  border-color: rgba(255,255,255,0.4) !important;
}

.ep-ecommerce-checkout input::placeholder {
  color: rgba(255,255,255,0.3) !important;
}

.ep-ecommerce-checkout input[type="hidden"] {
  display: none !important;
  padding: 0 !important;
  border: none !important;
}

.ep-ecommerce-checkout-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}

.ep-ecommerce-buy {
  background: #fff !important;
  color: var(--vc-bg) !important;
  border-radius: 999px !important;
  padding: 16px 42px !important;
  font-family: var(--vc-font-body) !important;
  font-size: 15px !important;
  letter-spacing: 0.04em !important;
  text-transform: lowercase !important;
  cursor: pointer !important;
  border: none !important;
  transition: all 0.3s ease !important;
  margin-top: 8px !important;
  width: 100% !important;
}

.ep-ecommerce-buy:hover { background: rgba(255,255,255,0.85) !important; }

.ep-ecommerce-payment-slot:empty { display: none !important; }

/* ─── PRODUCT DETAIL PAGE ─── */
.vc-product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 140px 5vw 80px;
}

.vc-product-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.vc-product-gallery-main {
  grid-column: 1 / -1;
  border-radius: 24px;
  overflow: hidden;
  height: 500px;
}

.vc-product-gallery-thumb {
  border-radius: 16px;
  overflow: hidden;
  height: 200px;
}

.vc-product-gallery-main img,
.vc-product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.vc-product-info h1 {
  font-family: var(--vc-font-display) !important;
  font-size: 48px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  margin-bottom: 16px !important;
}

.vc-product-info .vc-product-price {
  font-size: 24px;
  margin-bottom: 24px;
  display: block;
}

.vc-product-detail-list {
  list-style: none;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin: 24px 0;
}

.vc-product-detail-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

.vc-product-detail-list li span:last-child { color: #fff; }

/* Size selector */
.vc-size-selector { display: flex; gap: 10px; margin: 24px 0; flex-wrap: wrap; }
.vc-size-btn {
  width: 44px; height: 44px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: var(--vc-font-body);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vc-size-btn:hover, .vc-size-btn.active {
  background: #fff;
  color: var(--vc-bg);
  border-color: #fff;
}

/* ─── SUSTAINABILITY PAGE ─── */
.vc-sustain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.vc-sustain-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 32px;
}

.vc-sustain-card h3 {
  font-family: var(--vc-font-display) !important;
  font-size: 22px !important;
  text-transform: uppercase;
  margin-bottom: 12px !important;
}

.vc-sustain-card p {
  font-size: 14px !important;
  color: rgba(255,255,255,0.6) !important;
  line-height: 1.7 !important;
}

/* ─── SIZE GUIDE ─── */
.vc-size-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.vc-size-table th,
.vc-size-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}

.vc-size-table th {
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 12px;
}

.vc-size-table td { color: rgba(255,255,255,0.8); }
.vc-size-table tr:hover td { background: rgba(255,255,255,0.03); }

/* ─── FOOTER ─── */
.vc-footer {
  padding: 60px 5vw 40px !important;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 0 !important;
}

.vc-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.vc-footer-brand {
  font-family: var(--vc-font-display);
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.vc-footer-tagline {
  font-family: var(--vc-font-accent);
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.vc-footer-col-title {
  font-family: var(--vc-font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.vc-footer-link {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.vc-footer-link:hover { color: #fff; }

.vc-footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.vc-footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }

.vc-footer-socials { display: flex; gap: 20px; }
.vc-footer-socials a { font-size: 12px; color: rgba(255,255,255,0.35); transition: color 0.3s; }
.vc-footer-socials a:hover { color: #fff; }

/* ─── Scripts container (hidden) ─── */
.vc-scripts { display: contents; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .vc-product-grid { grid-template-columns: repeat(2, 1fr); }
  .vc-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .vc-product-detail { grid-template-columns: 1fr; }
  .vc-sustain-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .vc-nav-links {
    gap: 20px;
  }
  .vc-nav-link[href="/lookbook/"],
  .vc-nav-link[href="/sustainability/"] { display: none; }
  .vc-nav-toggle { display: none !important; }

  .vc-hero-grid,
  .vc-about-grid,
  .vc-contact-grid,
  .vc-lookbook-pair,
  .vc-product-detail { grid-template-columns: 1fr !important; }

  .vc-hero { padding: 100px 5vw 40px !important; }
  .vc-hero-title { font-size: min(16vw, 80px) !important; }
  .vc-hero-image { height: 50vh; }

  .vc-page-heading { font-size: min(14vw, 80px) !important; }
  .vc-section-title { font-size: min(12vw, 60px) !important; }

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

  .vc-footer-grid { grid-template-columns: 1fr; }
  .vc-footer-bottom { flex-direction: column; gap: 12px; }

  .vc-product-gallery { grid-template-columns: 1fr; }
  .vc-product-gallery-main { height: 350px; }
}
