/* ============================================
   AQUAZZURA - Global Styles
   ============================================ */

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

:root {
  --black: #1a1a1a;
  --dark: #2a2a2a;
  --gold: #c8a820;
  --light-gold: #e8c832;
  --nude: #e0c0b0;
  --light-bg: #fafaf8;
  --border: #e8e4de;
  --text-light: #888;
  --font-serif: 'MessinaSans', Roboto, Helvetica, sans-serif;
  --font-sans: 'MessinaSans', Roboto, Helvetica, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--black);
  background: #fff;
  font-size: 13px;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--black);
  color: #fff;
  text-align: center;
  padding: 10px 40px;
  font-size: 11px;
  letter-spacing: 1.5px;
  position: relative;
}

.close-bar {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.nav-top {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 8px 32px;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-light);
}

.nav-top a:hover, .nav-top a.active {
  color: var(--black);
}

.logo-wrap {
  text-align: center;
  padding: 10px 0 8px;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.logo-wrap .logo {
  pointer-events: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 8px;
  color: var(--black);
}

.logo-image {
  display: block;
  width: clamp(220px, 26vw, 360px);
  height: auto;
}

.header-icons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 0 32px;
  margin-top: -36px;
  margin-bottom: 6px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.icon-btn {
  width: 34px;
  height: 34px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  color: var(--black);
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.22s ease, transform 0.22s ease, opacity 0.22s ease, background 0.22s ease;
}

.icon-btn:hover {
  border-color: var(--border);
  transform: translateY(-1px);
  background: var(--light-bg);
}

.icon-svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-icon {
  position: relative;
}

#cartCount,
#wishlistCount {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  font-size: 9px;
  line-height: 16px;
  text-align: center;
  font-weight: 600;
  padding: 0 3px;
}

.floating-cart-fab {
  position: fixed;
  right: 18px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  z-index: 1190;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.floating-cart-fab.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cart-fab:hover {
  background: #2a2a2a;
}

.floating-cart-fab-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-cart-fab-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--black);
  font-size: 10px;
  line-height: 18px;
  text-align: center;
  font-weight: 700;
  padding: 0 4px;
}

.nav-main {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 14px 32px 12px;
  border-top: 1px solid var(--border);
}

.nav-main a {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 500;
  color: var(--black);
  transition: opacity 0.2s;
  position: relative;
}

.nav-main a:hover,
.nav-main a.active {
  opacity: 0.6;
}

.nav-main a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--black);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  width: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 80vh;
  min-height: 500px;
  background-color: #f0e8d0;
  background-image: url("../images/Header-Sito-1920x1080-New--bianco-aumentato-.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-payments {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 26px;
  padding-top: 18px;
}

.payment-logos {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 58px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.payment-label {
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
}

.payment-logo {
  width: 64px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.payment-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0.10) 45%, rgba(255,255,255,0.16) 100%),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.22) 100%);
}

/* Decorative layer disabled for photographic hero */
.hero-image::after {
  content: none;
}

.hero-overlay-text {
  position: relative;
  z-index: 2;
  padding: 0 64px;
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  margin-bottom: 8px;
}

.hero-overlay-text h1 {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 24px;
}

.hero-overlay-text h1 em {
  font-style: italic;
  font-weight: 300;
}

.btn-primary {
  display: inline-block;
  background: var(--black);
  color: #fff;
  padding: 14px 40px;
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--dark);
  transform: translateY(-1px);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 60px 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.section h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
}

/* ============================================
   NEW ARRIVALS / PRODUCT ROW
   ============================================ */
.product-scroll-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.side-text {
  width: 160px;
  flex-shrink: 0;
  padding-top: 8px;
}

.side-text p {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.view-all {
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 500;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.view-all:hover { opacity: 0.5; }

.products-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  flex: 1;
}

.product-card {
  cursor: pointer;
  transition: transform 0.2s;
}

.product-card:hover { transform: translateY(-4px); }

.product-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 12px;
}

.shoe-placeholder {
  width: 80%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shoe-placeholder svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(2px 6px 8px rgba(0,0,0,0.15));
  transition: transform 0.3s;
}

.product-card-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .shoe-placeholder svg {
  transform: scale(1.05) rotate(-3deg);
}

.product-card:hover .product-card-media-img {
  transform: scale(1.04);
}

.product-name {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.product-price {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-price .price-current {
  color: var(--black);
}

.product-price .price-original {
  color: var(--text-light);
  text-decoration: line-through;
}

.badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1.5px;
  border: 1px solid var(--black);
  padding: 2px 8px;
}

/* ============================================
   DOUBLE BANNER
   ============================================ */
.double-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.banner-item {
  overflow: hidden;
}

.banner-bg {
  height: 400px;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  position: relative;
  transition: transform 0.5s;
}

.banner-item:hover .banner-bg {
  transform: scale(1.02);
}

.spring-bg {
  background-color: #f0e4b0;
  background-image: url("../images/Widget-1-Nuovi-Arrivi-Scarpe-760x855.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bags-bg {
  background-color: #f5d0a0;
  background-image: url("../images/Widget-760x855-300DPI.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-content h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 20px;
}

.btn-dark {
  display: inline-block;
  background: var(--black);
  color: #fff;
  padding: 12px 32px;
  font-size: 11px;
  letter-spacing: 2px;
  transition: background 0.2s;
}

.btn-dark:hover { background: #444; }

/* ============================================
   DISCOVER
   ============================================ */
.discover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.discover-item {
  cursor: pointer;
  transition: transform 0.2s;
}

.discover-item:hover { transform: scale(1.01); }

.discover-img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 2px;
  margin-bottom: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.pumps-img {
  background-color: #d7d7d7;
  background-image: url("../images/DISCOVER-1--PUMPS.jpg");
}

.sunglasses-img {
  background-color: #c6b6ad;
  background-image: url("../images/DISCOVER-2--Occhiali.jpg");
}

.sandals-img {
  background-color: #d7d7d7;
  background-image: url("../images/DISCOVER-3--occhiali-.jpg");
}

.discover-item p {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 500;
  text-align: center;
}

/* ============================================
   FULL BANNER
   ============================================ */
.full-banner {
  height: 50vh;
  min-height: 300px;
  background-color: #f2f2f0;
  background-image: url("../images/1920x915-72DPI-banner-bridal-DESKTOPjpg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.full-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.2) 100%);
}

.full-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.full-banner-content p {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  color: var(--black);
  letter-spacing: 2px;
}

/* ============================================
   SHOP PAGE
   ============================================ */
.breadcrumb {
  padding: 16px 40px;
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.breadcrumb a:hover { color: var(--black); }

.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px 24px;
  border-bottom: 1px solid var(--border);
  max-width: 1300px;
  margin: 0 auto;
}

.shop-header h1 {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
}

.shop-controls {
  display: flex;
  align-items: center;
  gap: 24px;
}

.filter-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  cursor: pointer;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--black);
}

.product-count {
  font-size: 12px;
  color: var(--text-light);
}

/* Filter Panel */
.filter-panel {
  max-width: 1300px;
  margin: 0 auto;
  padding: 24px 40px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-bottom: 1px solid var(--border);
  animation: slideDown 0.3s ease;
}

.filter-panel.open {
  display: grid;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.filter-group h4 {
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-weight: 600;
}

.filter-group label {
  display: block;
  font-size: 12px;
  margin-bottom: 8px;
  cursor: pointer;
  color: var(--text-light);
}

.filter-group label:hover { color: var(--black); }

.color-filters {
  display: flex;
  gap: 8px;
}

.color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}

.color-swatch:hover, .color-swatch.active {
  border-color: var(--black);
  transform: scale(1.15);
}

/* Products Grid */
.products-grid {
  max-width: 1300px;
  margin: 40px auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}

.product-card-shop {
  cursor: pointer;
  transition: transform 0.2s;
}

.product-card-shop:hover { transform: translateY(-4px); }

.product-card-shop.hidden { display: none; }

.product-img-shop {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 14px;
  position: relative;
}

.wish-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 2;
}

.product-card-shop:hover .wish-btn { opacity: 1; }

.shoe-svg {
  width: 85%;
  height: auto;
  filter: drop-shadow(3px 8px 12px rgba(0,0,0,0.18));
  transition: transform 0.4s ease;
}

.product-shop-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card-shop:hover .shoe-svg {
  transform: scale(1.06) rotate(-2deg);
}

.product-card-shop:hover .product-shop-media-img {
  transform: scale(1.05);
}

.product-info-shop .pname {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 4px;
}

.product-info-shop .pprice {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-info-shop .pprice .price-current {
  color: var(--black);
}

.product-info-shop .pprice .price-original {
  color: var(--text-light);
  text-decoration: line-through;
}

/* Load More */
.load-more-wrap {
  text-align: center;
  padding: 40px;
}

.btn-load-more {
  background: var(--black);
  color: #fff;
  border: none;
  padding: 16px 60px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2.5px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-bottom: 16px;
  display: block;
  margin: 0 auto 16px;
}

.btn-load-more:hover {
  background: #444;
  transform: translateY(-1px);
}

.results-count {
  font-size: 12px;
  color: var(--text-light);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  min-height: calc(100vh - 200px);
}

.contact-sidebar {
  width: 220px;
  flex-shrink: 0;
  padding: 48px 32px 48px 40px;
  border-right: 1px solid var(--border);
}

.contact-sidebar ul {
  list-style: none;
}

.contact-sidebar li {
  margin-bottom: 16px;
}

.contact-sidebar a {
  font-size: 11px;
  letter-spacing: 0.8px;
  color: var(--text-light);
  transition: color 0.2s;
}

.contact-sidebar a:hover,
.contact-sidebar a.sidebar-active {
  color: var(--black);
  font-weight: 500;
}

.contact-main {
  flex: 1;
  padding: 48px 60px;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 20px;
}

.contact-availability {
  font-size: 18px;
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.5;
}

.contact-phone {
  font-size: 11px;
  letter-spacing: 0.8px;
  text-decoration: underline;
  color: var(--black);
  display: inline-block;
  margin-bottom: 48px;
}

.contact-form-section h3 {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 16px;
}

.form-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.required-note {
  font-size: 11px;
  color: var(--text-light);
  text-align: right;
  margin-bottom: 24px;
}

.policy-body {
  max-width: 720px;
  color: #4a4a4a;
  font-size: 13px;
  line-height: 1.7;
}

.policy-body h2 {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  margin: 20px 0 8px;
  font-weight: 600;
}

.policy-body p {
  margin-bottom: 12px;
}

.policy-body ul {
  margin: 0 0 14px 18px;
  padding: 0;
}

.policy-body li {
  margin-bottom: 6px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-field {
  flex: 1;
}

.form-field.full-width {
  flex: 1;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
  appearance: auto;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--black);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #aaa;
}

.form-field select option { color: var(--black); }

.form-field textarea {
  height: 120px;
  resize: none;
}

.char-count {
  display: block;
  text-align: right;
  font-size: 11px;
  color: var(--text-light);
  margin-top: 4px;
}

.security-note {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.6;
  padding: 8px 0;
}

.privacy-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.privacy-check input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.privacy-check label {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
  cursor: pointer;
}

.btn-send {
  background: var(--black);
  color: #fff;
  border: none;
  padding: 16px 40px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2.5px;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
  margin-top: 8px;
}

.btn-send:hover { background: #444; }

/* Success Message */
.success-msg {
  display: none;
  text-align: center;
  padding: 60px 40px;
  animation: fadeUp 0.5s ease;
}

.success-msg.show { display: block; }

.success-icon {
  width: 60px;
  height: 60px;
  background: var(--black);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

.success-msg h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 12px;
}

.success-msg p {
  color: var(--text-light);
  font-size: 13px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  color: #fff;
  padding: 60px 40px 30px;
  margin-top: 60px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-newsletter h4,
.footer-social h4 {
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-weight: 600;
}

.newsletter-form {
  display: flex;
  gap: 0;
  margin-bottom: 12px;
}

.newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 8px 0;
  font-family: var(--font-sans);
  font-size: 12px;
  outline: none;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }

.newsletter-form button {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  cursor: pointer;
  padding: 0 0 0 16px;
  transition: color 0.2s;
}

.newsletter-form button:hover { color: #fff; }

.footer-small {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  max-width: 280px;
  line-height: 1.6;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.social-icons .social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.social-icons .social-link:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.55);
}

.social-icons .social-icon-svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

.boutique-finder h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: 0;
}

.boutique-search {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.4);
}

.boutique-search input {
  flex: 1;
  background: none;
  border: none;
  color: #fff;
  padding: 8px 0;
  font-family: var(--font-sans);
  font-size: 12px;
  outline: none;
}

.boutique-search input::placeholder { color: rgba(255,255,255,0.4); }

.boutique-search button {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 1.5px;
  cursor: pointer;
  padding: 0 0 0 12px;
  transition: color 0.2s;
}

.boutique-search button:hover { color: #fff; }

.footer-links {
  display: flex;
  gap: 80px;
  padding: 40px 0;
}

.footer-col h5 {
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

.footer-col a {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .products-grid,
  .products-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-top {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 4px;
    gap: 10px;
    padding: 8px 14px;
    font-size: 10px;
    line-height: 1.3;
  }

  .logo-wrap {
    padding: 8px 0 8px;
  }

  .header-icons {
    gap: 8px;
    padding: 0 14px 8px;
    margin-top: -8px;
  }
  .floating-cart-fab {
    right: 12px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
  .floating-cart-fab-icon {
    width: 20px;
    height: 20px;
  }
  .icon-btn {
    width: 32px;
    height: 32px;
  }

  .nav-main {
    gap: 16px;
    font-size: 10px;
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 14px 10px;
  }

  .nav-main::-webkit-scrollbar {
    display: none;
  }

  .logo-image { width: clamp(170px, 54vw, 260px); }

  .hero-overlay-text h1 { font-size: 48px; }

  .product-scroll-row { flex-direction: column; }
  .side-text { width: 100%; display: flex; gap: 20px; align-items: center; }

  .products-grid,
  .products-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .double-banner { grid-template-columns: 1fr; }

  .contact-layout { flex-direction: column; }
  .contact-sidebar { width: 100%; padding: 24px 20px; border-right: none; border-bottom: 1px solid var(--border); }
  .contact-sidebar ul { display: flex; flex-wrap: wrap; gap: 8px; }
  .contact-sidebar li { margin-bottom: 0; }
  .contact-main { padding: 32px 20px; }

  .shop-header { padding: 0 20px 20px; }
  .products-grid { padding: 0 20px; }

  .form-row { flex-direction: column; }

  .footer-top { flex-direction: column; gap: 40px; }
  .footer-links { flex-direction: column; gap: 32px; }
}

@media (max-width: 480px) {
  .nav-top {
    gap: 8px;
    padding: 8px 10px;
    font-size: 9px;
  }

  .header-icons {
    gap: 6px;
    padding: 0 10px 8px;
    margin-top: -6px;
  }

  .logo-image {
    width: clamp(150px, 58vw, 200px);
  }

  .nav-main {
    display: flex;
    gap: 12px;
    padding: 9px 12px 10px;
  }

  .products-grid,
  .products-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .section { padding: 40px 20px; }
}

/* ============================================
   PRODUCT PAGE STYLES
   ============================================ */

.product-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px 60px;
}

/* Gallery */
.product-gallery {
  position: sticky;
  top: 140px;
  align-self: start;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.gallery-item {
  overflow: hidden;
  cursor: zoom-in;
  border-radius: 2px;
}

.gallery-item.large {
  grid-column: 1 / -1;
}

.gallery-img {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

.gallery-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item.large .gallery-img {
  aspect-ratio: 4/3;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.03);
}

.product-shoe-svg {
  width: 75%;
  height: 75%;
  filter: drop-shadow(4px 10px 16px rgba(0,0,0,0.18));
  transition: transform 0.4s ease;
}

.gallery-item:hover .product-shoe-svg {
  transform: scale(1.04) rotate(-2deg);
}

/* Product Info */
.product-info {
  padding-top: 8px;
}

.product-badge-new {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-light);
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
}

.product-actions {
  display: flex;
  gap: 12px;
  padding-top: 8px;
}

.action-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  padding: 4px;
  transition: opacity 0.2s;
  line-height: 1;
}

.action-btn:hover { opacity: 0.5; }

.wishlist-toggle.active svg { fill: #e83040; stroke: #e83040; }

.product-price-main {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 4px;
}

.vat-note {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 28px;
}

/* Options */
.option-group {
  margin-bottom: 24px;
}

.option-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 12px;
}

.option-value {
  font-weight: 400;
  margin-left: 8px;
}

.color-options {
  display: flex;
  gap: 8px;
}

.color-opt {
  width: 52px;
  height: 52px;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  padding: 4px;
}

.color-opt:hover { border-color: #888; }
.color-opt.active { border-color: var(--black); }

.color-opt-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.color-opt-img svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(1px 2px 3px rgba(0,0,0,0.15));
}

/* Size System */
.size-guide-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.size-system-tabs {
  display: flex;
  align-items: center;
  gap: 2px;
}

.size-tab {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 4px 6px;
  color: var(--text-light);
  transition: color 0.2s;
  font-weight: 400;
}

.size-tab.active,
.size-tab:hover { color: var(--black); font-weight: 600; }

.tab-sep {
  font-size: 10px;
  color: var(--border);
}

.size-guide-link {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  cursor: pointer;
  text-decoration: underline;
  color: var(--black);
}

.size-select-wrap {
  position: relative;
  margin-bottom: 20px;
}

.size-select {
  width: 100%;
  border: 1px solid var(--border);
  padding: 14px 40px 14px 16px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--black);
  outline: none;
  appearance: none;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.2s;
}

.size-select:focus { border-color: var(--black); }

.select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 12px;
  color: var(--black);
}

/* Buttons */
.btn-add-cart {
  width: 100%;
  background: var(--black);
  color: #fff;
  border: none;
  padding: 18px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 2.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-bottom: 12px;
}

.btn-add-cart:hover {
  background: #333;
  transform: translateY(-1px);
}

.btn-boutique {
  width: 100%;
  background: #fff;
  color: var(--black);
  border: 1px solid var(--black);
  padding: 17px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 2.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 28px;
}

.btn-boutique:hover { background: var(--light-bg); }

/* Tabs */
.product-tabs {
  border-top: 1px solid var(--border);
  margin-bottom: 24px;
}

.tab-headers {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.tab-header {
  background: none;
  border: none;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 500;
  cursor: pointer;
  color: var(--text-light);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.tab-header.active {
  color: var(--black);
  border-bottom-color: var(--black);
}

.tab-content {
  display: none;
  font-size: 13px;
  line-height: 1.8;
  color: var(--dark);
  padding-bottom: 20px;
}

.tab-content.active { display: block; }

.detail-list {
  list-style: none;
  padding: 0;
}

.detail-list li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--dark);
}

.detail-list li:last-child { border-bottom: none; }

/* Product Links */
.product-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.product-links a {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-light);
  text-decoration: underline;
  transition: color 0.2s;
}

.product-links a:hover { color: var(--black); }

.link-sep {
  color: var(--border);
}

/* Cart Notification */
.cart-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--black);
  color: #fff;
  padding: 14px 28px;
  font-size: 12px;
  letter-spacing: 1px;
  z-index: 1000;
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  border-radius: 2px;
}

.cart-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================
   CHECKOUT PAGE STYLES
   ============================================ */

.checkout-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 40px 60px;
}

.checkout-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 4px;
  text-align: center;
  margin-bottom: 40px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* ---- Steps ---- */
.checkout-step {
  border: 1px solid var(--border);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.checkout-step.active { border-color: var(--black); }

.step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  background: #fff;
  transition: background 0.2s;
}

.step-header:hover { background: var(--light-bg); }

.step-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  min-width: 18px;
}

.checkout-step.active .step-num { color: var(--black); }

.step-name {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  flex: 1;
}

.step-toggle {
  font-size: 12px;
  color: var(--text-light);
  transition: transform 0.3s;
}

.checkout-step.active .step-toggle { transform: rotate(180deg); }

.step-body {
  padding: 0 24px 24px;
  display: none;
}

.checkout-step.active .step-body { display: block; }

/* ---- Form Elements ---- */
.login-prompt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  padding: 14px 18px;
  margin-bottom: 12px;
}

.login-prompt p { font-size: 12px; color: var(--text-light); }

.login-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.login-btn:hover { text-decoration: underline; }

.or-divider {
  text-align: center;
  position: relative;
  margin: 16px 0;
}

.or-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.or-divider span {
  position: relative;
  background: #fff;
  padding: 0 16px;
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.field-group {
  margin-bottom: 12px;
  position: relative;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.checkout-input {
  width: 100%;
  border: 1px solid var(--border);
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}

.checkout-input:focus { border-color: var(--black); }
.checkout-input::placeholder { color: #aaa; }

.checkout-select {
  appearance: none;
  cursor: pointer;
}

.checkout-readonly {
  background: #f7f7f7;
  color: #555;
}

.address-search-wrap { position: relative; }

.search-icon-field {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  z-index: 1;
  pointer-events: none;
}

.checkout-input.has-icon { padding-left: 38px; }

.address-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  z-index: 50;
  max-height: 200px;
  overflow-y: auto;
  display: none;
}

.address-dropdown.show { display: block; }

.address-option {
  padding: 12px 16px;
  font-size: 12px;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.address-option:hover { background: var(--light-bg); }
.address-option:last-child { border-bottom: none; }

.manual-address-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-light);
  text-decoration: underline;
  cursor: pointer;
  margin-bottom: 16px;
  padding: 0;
  display: block;
}

.manual-address-btn:hover { color: var(--black); }

.manual-fields {
  display: none;
  animation: slideDown 0.3s ease;
}

.manual-fields.show { display: block; }

.section-subtitle {
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 600;
  margin: 20px 0 14px;
}

.checkout-helper {
  font-size: 11px;
  color: #777;
  margin: -6px 0 14px;
}

.checkbox-group {
  margin-bottom: 12px;
}

.check-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}

.check-label input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  cursor: pointer;
  accent-color: var(--black);
}

.check-label span,
.check-label a {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}

.check-label a {
  color: var(--black);
  text-decoration: underline;
}

.step-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.btn-continue {
  background: var(--black);
  color: #fff;
  border: none;
  padding: 14px 48px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2.5px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-continue:hover {
  background: #333;
  transform: translateY(-1px);
}

.btn-place-order {
  background: var(--black);
  color: #fff;
  border: none;
  padding: 16px 60px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2.5px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.btn-place-order:hover { background: #333; }

/* ---- Shipping Options ---- */
.shipping-options { margin-bottom: 8px; }

.shipping-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.shipping-option:has(input:checked) { border-color: var(--black); }

.shipping-option input[type="radio"] {
  accent-color: var(--black);
  width: 16px;
  height: 16px;
}

.shipping-option-info { flex: 1; }
.ship-name { display: block; font-size: 12px; font-weight: 500; }
.ship-time { display: block; font-size: 11px; color: var(--text-light); margin-top: 2px; }
.ship-price { font-size: 12px; font-weight: 500; }

/* ---- Payment ---- */
.payment-methods { margin-bottom: 8px; }

.payment-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  margin-bottom: 8px;
  cursor: pointer;
  font-size: 12px;
  transition: border-color 0.2s;
}

.payment-option:has(input:checked) { border-color: var(--black); }

.payment-option input[type="radio"] {
  accent-color: var(--black);
  width: 16px;
  height: 16px;
}

.payment-info {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}

.card-logos { display: flex; gap: 6px; }

.card-logo {
  padding: 2px 6px;
  border: 1px solid var(--border);
  font-size: 9px;
  letter-spacing: 0.5px;
  font-weight: 700;
  border-radius: 2px;
}

.visa { color: #1a1f71; }
.mc { color: #eb001b; }
.amex { color: #007bc1; }

/* ---- Verify ---- */
.verify-summary {
  border: 1px solid var(--border);
  padding: 16px;
  margin-bottom: 16px;
}

.verify-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.verify-img {
  width: 74px;
  height: 92px;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.verify-img svg { width: 100%; height: 100%; }

.verify-item-info { flex: 1; }
.verify-name { font-size: 12px; font-weight: 500; margin-bottom: 4px; }
.verify-color, .verify-size { font-size: 11px; color: var(--text-light); margin-bottom: 2px; }
.verify-price { font-size: 13px; font-weight: 500; }

/* ---- Order Summary Box ---- */
.order-summary-box {
  border: 1px solid var(--border);
  padding: 24px;
  position: sticky;
  top: 140px;
}

.summary-title {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.summary-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.summary-item-img {
  width: 78px;
  height: 98px;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.summary-item-img svg { width: 100%; height: 100%; }

.checkout-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.summary-item-info { flex: 1; }

.sitem-name {
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 4px;
}

.sitem-attr {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.color-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.yellow-dot { background: #e8c832; }

.remove-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--text-light);
  cursor: pointer;
  padding: 0;
  margin: 6px 0 4px;
  text-decoration: underline;
}

.remove-btn:hover { color: #e83040; }

.sitem-qty { font-size: 11px; color: var(--text-light); }
.sitem-price { font-size: 13px; font-weight: 500; white-space: nowrap; }

/* Promo */
.promo-section {
  margin-bottom: 20px;
}

.promo-toggle {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--text-light);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
  width: 100%;
  text-align: left;
}

.promo-toggle:hover { color: var(--black); }

.promo-input-wrap {
  display: none;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.promo-input-wrap.show { display: flex; }

.promo-input { flex: 1; }

.btn-apply-promo {
  background: var(--black);
  color: #fff;
  border: none;
  padding: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  cursor: pointer;
}

/* Totals */
.summary-totals { border-top: 1px solid var(--border); padding-top: 16px; }

.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--text-light);
}

.total-row.grand-total {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-bottom: 0;
}

/* ---- Modals ---- */
.order-modal, .login-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.order-modal.show, .login-modal.show {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.order-modal-box, .login-modal-box {
  background: #fff;
  padding: 48px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  animation: slideUp 0.3s ease;
  position: relative;
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.order-success-icon {
  width: 64px;
  height: 64px;
  background: var(--black);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.order-modal-box h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 12px;
}

.order-modal-box p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.order-num {
  font-weight: 600;
  color: var(--black) !important;
  font-size: 14px !important;
}

.login-modal-box h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
}

.login-modal-box .checkout-input {
  margin-bottom: 10px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: var(--text-light);
}

.modal-close:hover { color: var(--black); }

.modal-link {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-light);
}

.modal-link a { color: var(--black); text-decoration: underline; }

/* ============================================
   PRODUCT + CHECKOUT Responsive
   ============================================ */
@media (max-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .product-gallery { position: static; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: 1 / -1; }

  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary-box { position: static; }
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 4px; }
  .product-title { font-size: 28px; }

  .checkout-page { padding: 24px 16px; }
  .field-row { grid-template-columns: 1fr; }
  .verify-img {
    width: 62px;
    height: 78px;
  }
  .summary-item-img {
    width: 66px;
    height: 84px;
  }
  .order-modal-box, .login-modal-box { padding: 32px 20px; }
}

/* ============================================
   HOME PAGE - AQUAZZURA REFERENCE
   ============================================ */
body.page-home {
  color: #101010;
}

body.page-home,
.page-home button,
.page-home input,
.page-home select,
.page-home textarea {
  font-family: var(--font-sans);
}

.page-home .announcement-bar {
  background: #efefef;
  color: #141414;
  border-bottom: 1px solid #d9d9d9;
  padding: 4px 40px;
  font-size: 10px;
  letter-spacing: 0.15px;
}

.page-home .close-bar {
  color: #141414;
  right: 10px;
  font-size: 12px;
}

.page-home .header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: #ffffff;
  border-bottom: 1px solid #e6e6e6;
}

.page-home .nav-top {
  display: none;
}

.page-home .nav-top a:hover,
.page-home .nav-top a.active {
  color: #171717;
  opacity: 0.72;
}

.page-home .logo-wrap {
  padding: 12px 0 6px;
  margin-top: 0;
}

.page-home .logo {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(36px, 3.3vw, 58px);
  line-height: 1;
  letter-spacing: 2px;
  font-weight: 500;
}

.page-home .logo-image {
  width: clamp(300px, 28vw, 440px);
}

.page-home .header-icons {
  gap: 14px;
  padding: 0 44px 8px;
  margin-top: -44px;
  margin-bottom: 8px;
}

.page-home .icon-btn {
  width: auto;
  height: auto;
  border: none;
  background: transparent;
  border-radius: 0;
}

.page-home .icon-btn:hover {
  border: none;
  transform: none;
  background: transparent;
  opacity: 0.65;
}

.page-home .icon-svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.65;
}

.page-home #cartCount,
.page-home #wishlistCount {
  position: static;
  min-width: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #141414;
  font-size: 10px;
  line-height: 1;
  padding: 0;
  margin-left: 2px;
}

.page-home .nav-main {
  gap: 24px;
  padding: 10px 40px 14px;
  border-top: none;
}

.page-home .nav-main .nav-link-bridal,
.page-home .nav-main .nav-link-world {
  display: none;
}

.page-home .nav-main .nav-link-home { order: 1; }
.page-home .nav-main .nav-link-new-arrivals { order: 2; }
.page-home .nav-main .nav-link-shoes { order: 3; }
.page-home .nav-main .nav-link-bags { order: 4; }
.page-home .nav-main .nav-link-accessories { order: 5; }

.page-home .nav-main a {
  font-size: 10px;
  letter-spacing: 0.8px;
  font-weight: 500;
}

.page-home .nav-main a:hover,
.page-home .nav-main a.active {
  opacity: 1;
  text-decoration: underline;
}

.page-home .nav-main a.active::after {
  display: none;
}

.page-home .hero-image {
  height: 70vh;
  min-height: 520px;
  padding-bottom: 0;
  align-items: flex-start;
  background-position: center center;
  background-image: url("../images/home-hero.jpg"), url("../images/Header-Sito-1920x1080-New--bianco-aumentato-.jpg");
}

.page-home .hero-image::before {
  background: none;
}

.page-home .home-collection {
  max-width: 1560px;
  padding: 86px 58px 20px;
}

.page-home .section h2 {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(42px, 3.4vw, 60px);
  line-height: 1.04;
  font-weight: 400;
  margin-bottom: 46px;
  color: #111;
}

.page-home .product-scroll-row {
  gap: 34px;
  align-items: flex-start;
}

.page-home .side-text {
  width: 140px;
  padding-top: 2px;
}

.page-home .side-text p {
  font-size: 13px;
  color: #101010;
  line-height: 1.4;
  margin-bottom: 76px;
  max-width: 128px;
}

.page-home .view-all {
  font-size: 13px;
  letter-spacing: 0.4px;
  font-weight: 400;
  border-bottom: 1px solid #0f0f0f;
}

.page-home .products-row {
  gap: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid #161616;
  position: relative;
}

.page-home .products-row::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 42px;
  height: 3px;
  background: #111;
}

.page-home .product-card:hover {
  transform: none;
}

.page-home .product-img {
  background: #e6e6e6;
  border-radius: 0;
  margin-bottom: 10px;
}

.page-home .product-card-media-img {
  object-fit: contain;
}

.page-home .product-name {
  font-size: 12px;
  letter-spacing: 0;
  color: #121212;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .product-price {
  font-size: 12px;
  color: #171717;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-home .product-price .price-current {
  color: #171717;
}

.page-home .product-price .price-original {
  color: #6d6d6d;
  text-decoration: line-through;
}

.page-home .badge {
  display: none;
}

.page-home .home-double-banner {
  max-width: 1560px;
  margin: 72px auto 0;
  padding: 0 58px;
  gap: 90px;
  background: transparent;
}

.page-home .home-double-banner .banner-item {
  overflow: visible;
}

.page-home .home-double-banner .banner-bg {
  height: 360px;
  padding: 0;
  transition: none;
  align-items: stretch;
}

.page-home .home-double-banner .banner-item:hover .banner-bg {
  transform: none;
}

.page-home .home-double-banner .banner-content {
  text-align: center;
  padding-top: 24px;
}

.page-home .home-double-banner .banner-content h3 {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(36px, 3.15vw, 54px);
  font-weight: 400;
  margin-bottom: 20px;
  color: #111;
}

.page-home .home-double-banner .btn-dark {
  padding: 12px 26px;
  min-width: 124px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 1.2px;
}

.page-home .home-discover {
  max-width: 1560px;
  padding: 90px 58px 92px;
}

.page-home .home-discover .discover-grid {
  gap: 36px;
}

.page-home .home-discover .discover-item {
  cursor: default;
}

.page-home .home-discover .discover-item:hover {
  transform: none;
}

.page-home .home-discover .discover-img {
  aspect-ratio: 1 / 1;
  margin-bottom: 18px;
}

.page-home .home-discover .discover-item p {
  font-size: 12px;
  letter-spacing: 0.7px;
  color: #111;
}

.page-home .home-full-banner {
  height: 620px;
  min-height: 520px;
  margin: 0;
}

.page-home .home-full-banner::before {
  background: none;
}

.page-home .home-full-banner .full-banner-content {
  display: none;
}

.page-home .bridal-collection {
  max-width: 1560px;
  padding: 86px 58px 28px;
}

.page-home .footer {
  margin-top: 0;
  background: #111216;
  padding: 72px 58px 28px;
}

.page-home .footer-top {
  gap: 76px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.page-home .footer-newsletter h4,
.page-home .footer-social h4 {
  font-size: 11px;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}

.page-home .newsletter-form input,
.page-home .boutique-search input {
  font-size: 22px;
  font-style: italic;
  letter-spacing: 0.1px;
}

.page-home .newsletter-form button,
.page-home .boutique-search button {
  font-size: 10px;
  letter-spacing: 1.2px;
}

.page-home .social-icons {
  gap: 16px;
  margin-bottom: 28px;
}

.page-home .social-icons .social-link {
  width: auto;
  height: auto;
  border: none;
  padding: 0;
  opacity: 0.88;
}

.page-home .social-icons .social-link:hover {
  background: none;
  border-color: transparent;
  opacity: 1;
}

.page-home .social-icons .social-icon-svg {
  width: 17px;
  height: 17px;
}

.page-home .boutique-finder h4 {
  font-family: "Times New Roman", Times, serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 14px;
}

.page-home .footer-links {
  gap: 86px;
  padding: 34px 0 28px;
}

.page-home .footer-col h5 {
  font-size: 11px;
  letter-spacing: 1.1px;
  margin-bottom: 13px;
}

.page-home .footer-col a {
  font-size: 12px;
  margin-bottom: 8px;
}

.page-home .footer-bottom {
  text-align: right;
}

.page-home .footer-bottom p {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.46);
}

@media (max-width: 1200px) {
  .page-home .home-collection,
  .page-home .home-double-banner,
  .page-home .home-discover,
  .page-home .bridal-collection,
  .page-home .footer {
    padding-left: 34px;
    padding-right: 34px;
  }

  .page-home .home-double-banner {
    gap: 42px;
  }

  .page-home .home-double-banner .banner-bg {
    height: 320px;
  }
}

@media (max-width: 960px) {
  .page-home .header {
    position: relative;
    top: 0;
    background: #ffffff;
  }

  .page-home .nav-top {
    padding: 10px 18px 0;
    gap: 10px;
    font-size: 9px;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 4px;
  }

  .page-home .logo-wrap {
    margin-top: 0;
    padding: 4px 0 8px;
  }

  .page-home .logo-image {
    width: clamp(170px, 52vw, 230px);
  }

  .page-home .header-icons {
    margin-top: -10px;
    padding: 0 16px 8px;
    gap: 10px;
  }

  .page-home .nav-main {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    gap: 16px;
    padding: 8px 18px 10px;
  }

  .page-home .hero-image {
    min-height: 420px;
    height: 52vh;
    background-position: 48% center;
  }

  .page-home .home-collection,
  .page-home .home-double-banner,
  .page-home .home-discover,
  .page-home .bridal-collection,
  .page-home .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-home .product-scroll-row {
    flex-direction: column;
    gap: 18px;
  }

  .page-home .side-text {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

  .page-home .side-text p {
    margin-bottom: 0;
    max-width: 220px;
  }

  .page-home .products-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .home-double-banner {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 42px;
  }

  .page-home .home-double-banner .banner-bg {
    height: 280px;
  }

  .page-home .home-discover .discover-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .page-home .home-full-banner {
    height: 42vh;
    min-height: 300px;
  }

  .page-home .footer-top,
  .page-home .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .page-home .footer-bottom {
    text-align: left;
  }

  .payment-logos {
    padding: 8px 20px;
    justify-content: center;
  }
}

/* ============================================
   MOBILE HEADER + OFF CANVAS MENU
   ============================================ */
.mobile-header-bar,
.mobile-menu-overlay,
.mobile-offcanvas {
  display: none;
}

@media (max-width: 960px) {
  .header {
    background: #ffffff;
    border-bottom: 1px solid #d6d6d6;
  }

  .header > .nav-top,
  .header > .logo-wrap,
  .header > .header-icons,
  .header > .nav-main {
    display: none;
  }

  .mobile-header-bar {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 10px;
    min-height: 74px;
    padding: 10px 14px;
    border-top: 1px solid #121212;
    position: relative;
  }

  .mobile-menu-btn,
  .mobile-action-btn {
    appearance: none;
    border: none;
    background: transparent;
    color: #161616;
    width: 32px;
    height: 32px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .mobile-menu-btn {
    flex-direction: column;
    gap: 5px;
  }

  .mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 1.8px;
    background: #171717;
  }

  .mobile-logo-link {
    justify-self: center;
    display: inline-flex;
    align-items: center;
  }

  .mobile-logo-image {
    display: block;
    width: clamp(160px, 48vw, 230px);
    height: auto;
  }

  .mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .mobile-action-btn .icon-svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.8;
  }

  .mobile-cart-btn {
    width: auto;
    gap: 2px;
  }

  .mobile-cart-btn .icon-svg {
    width: 19px;
    height: 19px;
  }

  .mobile-cart-count {
    font-size: 13px;
    line-height: 1;
    color: #111;
    min-width: 10px;
  }

  .mobile-menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1200;
  }

  .mobile-offcanvas {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: min(90vw, 430px);
    max-width: 430px;
    height: 100dvh;
    background: #f1f1f1;
    transform: translateX(-100%);
    transition: transform 0.28s ease;
    z-index: 1210;
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
  }

  body.mobile-menu-open .mobile-menu-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  body.mobile-menu-open .mobile-offcanvas {
    transform: translateX(0);
    pointer-events: auto;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  .mobile-offcanvas-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px 16px;
    border-bottom: 1px solid #d2d2d2;
  }

  .mobile-offcanvas-search {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
  }

  .mobile-offcanvas-search input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--font-sans);
    font-size: 16px;
    color: #1a1a1a;
    letter-spacing: 0.2px;
    outline: none;
  }

  .mobile-offcanvas-search input::placeholder {
    color: #1a1a1a;
    opacity: 1;
  }

  .mobile-offcanvas-search button {
    appearance: none;
    border: none;
    background: transparent;
    width: 30px;
    height: 30px;
    padding: 0;
    color: #1a1a1a;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-offcanvas-search button .icon-svg {
    width: 19px;
    height: 19px;
    stroke-width: 1.8;
  }

  .mobile-offcanvas-close {
    appearance: none;
    border: none;
    background: transparent;
    color: #1a1a1a;
    width: 34px;
    height: 34px;
    font-size: 34px;
    line-height: 1;
    padding: 0;
    cursor: pointer;
  }

  .mobile-offcanvas-nav {
    display: flex;
    flex-direction: column;
    padding: 36px 20px 0;
  }

  .mobile-menu-main-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 500;
    color: #1b1b1b;
    text-transform: uppercase;
  }

  .mobile-menu-main-link.active {
    opacity: 0.7;
  }

  .mobile-menu-chevron {
    font-size: 20px;
    line-height: 1;
  }

  .mobile-offcanvas-divider {
    border-top: 1px solid #d2d2d2;
    margin: 26px 20px 22px;
  }

  .mobile-offcanvas-secondary {
    padding: 0 20px 36px;
    display: flex;
    flex-direction: column;
    gap: 26px;
  }

  .mobile-offcanvas-account-btn,
  .mobile-menu-secondary-link {
    appearance: none;
    border: none;
    background: transparent;
    text-align: left;
    font-family: var(--font-sans);
    color: #1b1b1b;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0;
  }

  .mobile-offcanvas-account-btn {
    cursor: pointer;
  }

  .page-home .header,
  .page-product .header {
    position: sticky;
    top: 0;
    left: auto;
    right: auto;
  }
}
