/* ============================================================
   Intal Underwear — Shared Design System
   ============================================================ */

/* ── Switzer font-face declarations ───────────────────────── */
/* Vetëm peshat e përdorura (400,500,600,700) — redukton 644KB → ~160KB */
@font-face { font-family: 'Switzer'; src: url('../fonts/Switzer-Regular.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Switzer'; src: url('../fonts/Switzer-Italic.otf') format('opentype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Switzer'; src: url('../fonts/Switzer-Medium.otf') format('opentype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Switzer'; src: url('../fonts/Switzer-MediumItalic.otf') format('opentype'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'Switzer'; src: url('../fonts/Switzer-Semibold.otf') format('opentype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Switzer'; src: url('../fonts/Switzer-SemiboldItalic.otf') format('opentype'); font-weight: 600; font-style: italic; font-display: swap; }
@font-face { font-family: 'Switzer'; src: url('../fonts/Switzer-Bold.otf') format('opentype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Switzer'; src: url('../fonts/Switzer-BoldItalic.otf') format('opentype'); font-weight: 700; font-style: italic; font-display: swap; }
/* Peshat 100,200,300,800,900 — ngarkohen vetëm kur nevojiten */
@font-face { font-family: 'Switzer'; src: url('../fonts/Switzer-Light.otf') format('opentype'); font-weight: 300; font-style: normal; font-display: optional; }
@font-face { font-family: 'Switzer'; src: url('../fonts/Switzer-Extrabold.otf') format('opentype'); font-weight: 800; font-style: normal; font-display: optional; }
@font-face { font-family: 'Switzer'; src: url('../fonts/Switzer-Black.otf') format('opentype'); font-weight: 900; font-style: normal; font-display: optional; }

/* ── Design tokens ─────────────────────────────────────────── */
:root {
  --red:          #b8002e;
  --black:        #0a0a0a;
  --off-white:    #fafafa;
  --surface-gray: #f9fafb;
  --border:       #d1d5dc;
  --muted:        #6a7282;
  --white:        #ffffff;
  --navbar-h:     clamp(42px, 4.2vw, 55px);
  --side:         clamp(20px, 5vw, 60px);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Switzer', sans-serif;
  background: var(--white);
  color: var(--black);
  padding-top: var(--navbar-h);
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  height: var(--navbar-h);
  background: var(--white);
  border-bottom: 0.5px solid var(--border);
  padding: 0 var(--side);
  transform: translateY(0);
  transition: transform 0.35s ease;
}

.navbar--hidden {
  transform: translateY(calc(-100% - 2px)); /* +2px heq border-bottom nga viewport */
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  margin: 0 auto;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 24px);
  flex: 1;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 1.8vw, 24px);
}

.nav-link {
  font-family: 'Switzer', sans-serif;
  font-weight: 400;
  font-size: clamp(11px, 0.9vw, 13px);
  letter-spacing: 0.35px;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
}
.nav-link:hover { opacity: 0.7; }
.nav-link.active {
  font-weight: 600;
  border-bottom: 1.5px solid var(--black);
  padding-bottom: 1px;
}

.navbar-brand {
  font-family: 'Switzer', sans-serif;
  font-weight: 700;
  font-size: clamp(11px, 0.9vw, 13px);
  letter-spacing: 0.35px;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  white-space: nowrap;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: clamp(8px, 0.9vw, 12px);
  flex: 1;
  justify-content: flex-end;
}

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  color: var(--black);
}

.search-btn i,
.nav-hamburger i {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1;
}
.search-btn.active { background: #f0f0f0; border-radius: 50%; }
.search-btn.active i::before { content: '\EB99'; } /* ri-close-line kur aktiv */

.nav-share-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 0;
  flex-shrink: 0;
  transition: color .15s;
}
.nav-share-btn:hover { color: var(--black); }
.nav-share-btn i { font-size: 13px; }
@media (max-width: 700px) {
  .nav-share-text { display: none; }
}

/* ── Search — desktop: inline brenda navbar ─────────────────── */
#nav-search-wrap {
  display: flex;
  align-items: center;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width .3s ease, opacity .25s ease;
  pointer-events: none;
}
.navbar.search-open #nav-search-wrap {
  max-width: min(260px, 52vw);
  opacity: 1;
  pointer-events: auto;
}
/* Ndarëse vizuale midis search wrap dhe butonit — vetëm desktop */
.search-sep { display: none; }
.navbar.search-open .search-sep {
  display: block;
  width: 1px;
  height: 16px;
  background: var(--border);
  margin: 0 8px 0 4px;
  flex-shrink: 0;
}

/* ── Search — mobile: rresht fiks poshtë navbar ──────────────── */
@media (max-width: 700px) {
  #nav-search-wrap {
    position: fixed;
    top: var(--navbar-h);
    left: 0; right: 0;
    max-width: none;          /* anulo max-width desktop */
    width: 100%;
    height: 0;
    opacity: 1;
    overflow: hidden;
    background: #fff;
    border-bottom: none;
    box-shadow: none;
    padding: 0;
    transition: height .25s ease, border-color .25s ease, transform .35s ease;
    pointer-events: none;
    z-index: 99;
  }
  .navbar.search-open #nav-search-wrap {
    height: 46px;
    max-width: none;
    border-bottom: .5px solid var(--border);
    box-shadow: 0 4px 14px rgba(0,0,0,.07);
    pointer-events: auto;
    padding: 0 16px;
  }
  /* Sinkronizon lëvizjen e navbar (hide/show scroll) */
  #nav-search-wrap {
    transform: translateY(0);
    transition: height .25s ease, transform .35s ease, border-color .25s ease;
  }
  /* Fshih ndarësen në mobile */
  .search-sep { display: none !important; }
}

#search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: clamp(12px, 0.95vw, 13px);
  font-family: var(--fb);
  font-weight: 400;
  color: var(--black);
  background: transparent;
  letter-spacing: .2px;
  padding: 0 4px 0 0;
  min-width: 0;
}
#search-input::placeholder { color: #bbb; }
#search-clear {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #bbb;
  padding: 0 0 0 6px;
  line-height: 1;
  display: none;
  flex-shrink: 0;
  transition: color .15s;
}
#search-clear:hover { color: var(--black); }
#search-count {
  font-size: 10px;
  color: #aaa;
  letter-spacing: 1px;
  white-space: nowrap;
  margin-left: 6px;
  flex-shrink: 0;
}

.btn-order {
  background: var(--red);
  color: var(--off-white);
  font-family: 'Switzer', sans-serif;
  font-weight: 500;
  font-size: clamp(11px, 0.9vw, 13px);
  letter-spacing: 0.35px;
  text-transform: uppercase;
  padding: clamp(5px, 0.55vw, 7px) clamp(10px, 1.05vw, 15px);
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-order:hover { opacity: 0.9; }

.nav-hamburger {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  align-items: center;
  color: var(--black);
}

/* ── Responsive nav ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 0.5px solid var(--border);
    flex-direction: column;
    padding: 12px var(--side);
    gap: 16px;
    z-index: 99;
  }
  .nav-links.nav-open { display: flex; }
}

/* ── Page hero banner (inner pages) ────────────────────────── */
.page-hero {
  background-color: #1a1a1a;
  background-image: url('../IMAGE/Page (3).png');
  background-size: cover;
  background-position: center top;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(40px, 6vw, 80px) var(--side);
  border-bottom: 0.5px solid var(--border);
  min-height: clamp(200px, 30vw, 340px);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(201.43deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1vw, 14px);
}

.page-hero-eyebrow {
  font-family: 'Switzer', sans-serif;
  font-weight: 400;
  font-size: clamp(10px, 0.8vw, 12px);
  letter-spacing: clamp(1.5px, 0.22vw, 2.8px);
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.page-hero-heading {
  font-family: 'Switzer', sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 5vw, 64px);
  letter-spacing: clamp(-0.5px, -0.15vw, -2px);
  line-height: 1.05;
  color: var(--off-white);
}

.page-hero-sub {
  font-family: 'Switzer', sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 1.1vw, 16px);
  color: rgba(255,255,255,0.55);
}

/* ── Filter bar ─────────────────────────────────────────────── */
.filter-bar {
  background: var(--white);
  border-bottom: none;
  padding: 32px var(--side) 0;
  box-sizing: border-box;
  overflow: visible;
}

.filter-bar-inner {
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  gap: clamp(12px, 1.8vw, 24px);
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .filter-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.section-heading {
  font-family: 'Switzer', sans-serif;
  font-weight: 500;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.35;
  color: var(--black);
  flex-shrink: 0;
}

/* ── Dropdown filters ───────────────────────────────────────── */
.fd-filters {
  display: flex;
  gap: 8px;
  align-items: center;
}

.fd-dropdown {
  position: relative;
}

.fd-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 0.5px solid var(--border);
  border-radius: 4px;
  padding: 5px 10px;
  font-family: 'Switzer', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--black);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s;
}
.fd-trigger:hover { border-color: #9ca3af; }
.fd-dropdown.open .fd-trigger { border-color: var(--black); }
.fd-arrow { font-size: 14px; transition: transform 0.2s; }
.fd-dropdown.open .fd-arrow { transform: rotate(180deg); }

.fd-label-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  font-size: 9px;
  font-weight: 600;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  margin-left: 2px;
}

.fd-panel {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  min-width: 180px;
  z-index: 500;
  display: none;
  overflow: hidden;
}
.fd-dropdown.open .fd-panel { display: block; }

.fd-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  font-family: 'Switzer', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--black);
  transition: background 0.12s;
}
.fd-option:hover { background: var(--surface-gray); }

.fd-option input[type="radio"] {
  appearance: none;
  width: 15px;
  height: 15px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.fd-option input[type="radio"]:checked {
  background: var(--black);
  border-color: var(--black);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
}

/* ── Filter pills ───────────────────────────────────────────── */
.filter-pills {
  display: flex;
  align-items: center;
  gap: clamp(5px, 0.6vw, 8px);
  flex-wrap: wrap;
}

.pill {
  font-family: 'Switzer', sans-serif;
  font-weight: 500;
  font-size: clamp(10px, 0.8vw, 12px);
  color: var(--black);
  padding: clamp(4px, 0.4vw, 6px) clamp(8px, 0.9vw, 12px);
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.pill:hover { border-color: #9ca3af; }
.pill.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.pill-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  margin: 0 2px;
  flex-shrink: 0;
}

.filter-count {
  font-family: 'Switzer', sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 0.95vw, 14px);
  color: var(--black);
  white-space: nowrap;
  flex-shrink: 0;
}

.filter-group .pill.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ── Product section ────────────────────────────────────────── */
.product-section {
  background: var(--white);
  padding: 8px var(--side) clamp(18px, 2.7vw, 34px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 24px);
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 750px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.9vw, 12px);
}

.product-image-wrap {
  background: var(--surface-gray);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

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

.product-image-wrap:hover img {
  transform: scale(1.02);
}

.btn-basket {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  color: var(--white);
  font-family: 'Switzer', sans-serif;
  font-weight: 500;
  font-size: clamp(10px, 0.85vw, 12px);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  height: clamp(34px, 2.8vw, 40px);
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: 0;
  transition: opacity 0.2s;
}
.product-image-wrap:hover .btn-basket { opacity: 1; }

.product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-title {
  font-family: 'Switzer', sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 1vw, 14px);
  color: var(--black);
}

.product-subtitle {
  font-family: 'Switzer', sans-serif;
  font-weight: 400;
  font-size: clamp(10px, 0.85vw, 12px);
  color: var(--muted);
}

/* ── Menu left drawer ───────────────────────────────────────── */
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.menu-backdrop.open { opacity: 1; pointer-events: all; }

.menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(360px, 85vw);
  background: var(--black);
  color: var(--off-white);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.menu-drawer.open { transform: translateX(0); }

.menu-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.menu-drawer-brand {
  font-family: 'Switzer', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--off-white);
}
.menu-drawer-brand strong { font-weight: 700; }
.menu-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--off-white);
  display: flex;
  align-items: center;
  padding: 0;
}
.menu-drawer-close i { font-size: 18px; }

.menu-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.menu-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu-drawer-link {
  font-family: 'Switzer', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--off-white);
  text-decoration: none;
  letter-spacing: -0.3px;
  padding: 6px 0;
  transition: opacity 0.15s;
}
.menu-drawer-link:hover { opacity: 0.6; }

.menu-drawer-divider {
  height: 0.5px;
  background: rgba(255,255,255,0.1);
}

.menu-drawer-eyebrow {
  font-family: 'Switzer', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: -16px;
}

.menu-drawer-contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.menu-drawer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: var(--off-white);
}
.menu-drawer-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--off-white);
  font-size: 16px;
}
.menu-drawer-label {
  display: block;
  font-family: 'Switzer', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2px;
}
.menu-drawer-value {
  display: block;
  font-family: 'Switzer', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--off-white);
}

.menu-drawer-locations {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.menu-drawer-loc-name {
  font-family: 'Switzer', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.menu-drawer-loc-addr {
  font-family: 'Switzer', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.menu-drawer-footer {
  padding: 20px 24px;
  border-top: 0.5px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.menu-drawer-copy {
  font-family: 'Switzer', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

/* ── Product detail drawer ──────────────────────────────────── */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.drawer-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(480px, 100vw);
  height: 100dvh;
  background: var(--white);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 32px rgba(0,0,0,0.1);
}
.drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 0.5px solid var(--border);
  flex-shrink: 0;
}
.drawer-title {
  font-family: 'Switzer', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
}
.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--black);
  display: flex;
  align-items: center;
}
.drawer-close i { font-size: 22px; }

.drawer-body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.drawer-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--surface-gray);
  overflow: hidden;
}
.drawer-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.drawer-info {
  padding: 20px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer-product-title {
  font-family: 'Switzer', sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--black);
  line-height: 1.2;
}
.drawer-product-subtitle {
  font-family: 'Switzer', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--muted);
}

.drawer-section {
  border-top: 0.5px solid var(--border);
  margin-top: 20px;
  padding: 16px 24px 20px;
}
.drawer-section-label {
  font-family: 'Switzer', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
}
.drawer-desc-text {
  font-family: 'Switzer', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

.color-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.color-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  outline: none;
  transition: border-color 0.15s, transform 0.15s;
  box-shadow: 0 0 0 1px var(--border);
}
.color-btn:hover { transform: scale(1.1); }
.color-btn.active { box-shadow: 0 0 0 2px var(--black); }
.color-label-text {
  font-family: 'Switzer', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--muted);
}

.size-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.size-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'Switzer', sans-serif;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.size-btn:hover { border-color: var(--black); }
.size-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }

.drawer-footer {
  padding: 16px 24px;
  border-top: 0.5px solid var(--border);
  flex-shrink: 0;
}
.drawer-add-btn {
  width: 100%;
  background: var(--black);
  color: var(--white);
  font-family: 'Switzer', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 18px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.drawer-add-btn:hover { opacity: 0.85; }

/* ── Contact / Footer section ───────────────────────────────── */
.contact-section {
  background: var(--black);
  color: var(--off-white);
  padding: clamp(60px, 8vw, 120px) var(--side) 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
}
@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; }
}

.contact-eyebrow {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 16px;
}
.contact-heading {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: var(--off-white);
  margin-bottom: 16px;
}
.contact-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}
.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--off-white);
  font-size: 16px;
}
.contact-item-label {
  display: block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 3px;
}
.contact-item-value {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--off-white);
}

.contact-locations {
  display: flex;
  gap: clamp(24px, 6vw, 80px);
  flex-wrap: wrap;
  padding: 32px var(--side);
  border-top: 0.5px solid rgba(255,255,255,0.1);
}
.contact-loc-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 6px;
}
.contact-loc-addr {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 200px;
}

.contact-right { padding-top: 8px; }
.contact-form-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 28px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .cf-row { grid-template-columns: 1fr; } }
.cf-field { display: flex; flex-direction: column; gap: 8px; }
.cf-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.cf-opt {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  font-size: 10px;
  color: rgba(255,255,255,0.25);
}
.cf-input {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 14px 16px;
  font-family: 'Switzer', sans-serif;
  font-size: 14px;
  color: var(--off-white);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.cf-input::placeholder { color: rgba(255,255,255,0.2); }
.cf-input:focus { border-color: rgba(255,255,255,0.4); }

.cf-multiselect { position: relative; }
.cf-tags {
  min-height: 50px;
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 8px 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  cursor: text;
  transition: border-color 0.2s;
}
.cf-tags:focus-within { border-color: rgba(255,255,255,0.4); }
/* Input shkruaj brenda tags */
.cf-prod-input {
  flex: 1;
  min-width: 120px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 13px;
  font-family: 'Switzer', sans-serif;
  color: var(--off-white);
  padding: 4px 0;
}
.cf-prod-input::placeholder { color: rgba(255,255,255,0.25); }
.cf-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: var(--off-white);
  font-size: 12px;
  font-family: 'Switzer', sans-serif;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 2px;
  user-select: none;
}
.cf-tag-remove {
  cursor: pointer;
  opacity: 0.7;
  font-size: 14px;
  line-height: 1;
  transition: opacity 0.15s;
}
.cf-tag-remove:hover { opacity: 1; }
.cf-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #1c1c1c;
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  z-index: 50;
  max-height: 220px;
  overflow-y: auto;
}
.cf-dropdown.open { display: block; }
.cf-dropdown-group {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 10px 14px 6px;
}
.cf-option {
  font-size: 13px;
  color: var(--off-white);
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.15s;
}
.cf-option:hover { background: rgba(255,255,255,0.07); }
.cf-option.selected { opacity: 0.35; pointer-events: none; }
.cf-option-custom { color: rgba(255,255,255,0.55); font-style: italic; }
.cf-textarea {
  resize: vertical;
  min-height: 110px;
}
.cf-submit {
  background: var(--red);
  color: var(--off-white);
  font-family: 'Switzer', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cf-submit:hover { opacity: 0.85; }

/* Footer strip */
.contact-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 28px 0;
  border-top: 0.5px solid rgba(255,255,255,0.1);
  text-align: center;
}
.contact-brand {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
}
.contact-brand strong { font-weight: 700; }
.contact-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary {
  background: var(--red);
  color: var(--off-white);
  font-family: 'Switzer', sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 0.95vw, 14px);
  padding: clamp(9px, 0.85vw, 13px) clamp(15px, 1.6vw, 22px);
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { opacity: 0.9; }

.btn-outline {
  background: transparent;
  color: var(--off-white);
  font-family: 'Switzer', sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 0.95vw, 14px);
  padding: clamp(9px, 0.85vw, 13px) clamp(15px, 1.6vw, 22px);
  border-radius: 4px;
  border: 1px solid var(--off-white);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); }

/* ── Simple footer (inner pages without contact form) ─────── */
.simple-footer {
  background: var(--black);
  color: var(--off-white);
}

.simple-footer .contact-locations {
  padding: 40px var(--side);
}

.simple-footer .contact-footer {
  padding: 28px 0;
}
