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

/* ===== BASE ===== */
body {
  background: #FFFFFF;
  color: #1D71B8;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 20px;
  line-height: 1.55;
}

a { color: #1D71B8; }
a:hover { color: #F9B233; }
*:focus-visible { outline: 3px solid #1D71B8; outline-offset: 3px; }
summary::-webkit-details-marker { display: none; }

/* ===== ANNOUNCEMENT BAR ===== */
.announce-bar {
  background: #1D71B8;
  color: #FFFFFF;
  text-align: center;
  padding: 16px 18px;
  font-size: clamp(17px, 4.6vw, 19px);
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  text-wrap: balance;
}

/* ===== HEADER ===== */
.site-header {
  background: #F7F5F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(16px, 4vw, 28px);
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #E6E1D8;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: clamp(56px, 7vw, 76px);
  width: auto;
  display: block;
}

.lang-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px 2px;
  min-height: 48px;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1D71B8;
  text-decoration: none;
}

.lang-btn.active {
  font-weight: 700;
  color: #F9B233;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lang-sep {
  color: #1D71B8;
  opacity: 0.5;
}

.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #1D71B8;
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 4px;
  min-height: 48px;
  cursor: pointer;
}
.cart-btn:hover { color: #F9B233; }

.menu-btn {
  border: 0;
  background: transparent;
  color: #1D71B8;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  cursor: pointer;
}

.menu-bar {
  display: block;
  width: 22px;
  height: 3px;
  background: #1D71B8;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-link {
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #1D71B8;
  padding: 8px 4px;
  min-height: 48px;
  display: flex;
  align-items: center;
}
.nav-link:hover { color: #F9B233; }

.search-form {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #1D71B8;
  background: transparent;
}

.search-input {
  border: 0;
  padding: 12px 4px;
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #1D71B8;
  background: transparent;
  width: 130px;
  min-height: 48px;
}
.search-input::placeholder { color: #1D71B8; opacity: 0.6; }
.search-input:focus { outline: none; }

.search-btn {
  border: 0;
  background: transparent;
  color: #1D71B8;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-height: 48px;
  padding: 0;
  cursor: pointer;
}
.search-btn:hover { color: #F9B233; }

/* ===== HERO ===== */
.hero-section {
  position: relative;
  background: #FFFFFF;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  align-items: stretch;
  min-height: min(88vh, 820px);
}

.hero-img {
  width: 100%;
  height: 100%;
  min-height: min(60vh, 520px);
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.hero-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(40px, 7vw, 56px) clamp(16px, 4vw, 28px);
  background: #FFFFFF;
}

.hero-title {
  font-family: 'Archivo Black', system-ui, sans-serif;
  text-transform: uppercase;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.0;
  margin: 0 0 28px;
  color: #1D71B8;
  max-width: 16ch;
  text-wrap: balance;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 30px;
  background: #F9B233;
  color: #FFFFFF;
  text-decoration: none;
  font-family: 'Archivo Black', system-ui, sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 0.04em;
  align-self: flex-start;
  text-align: center;
}
.hero-cta:hover { background: #1D71B8; color: #FFFFFF; }

/* ===== COLLECTION ===== */
.collection-section {
  background: #F7F5F0;
  padding: clamp(56px, 9vw, 96px) clamp(16px, 4vw, 28px);
}

.collection-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Archivo Black', system-ui, sans-serif;
  text-transform: uppercase;
  font-size: clamp(32px, 5vw, 60px);
  margin: 0;
  color: #1D71B8;
  letter-spacing: 0.01em;
}

.section-subtitle {
  margin: 12px 0 48px;
  font-size: 22px;
  color: #1D71B8;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(24px, 4vw, 40px);
}

.product-card {
  background: #FFFFFF;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-link {
  display: block;
  text-decoration: none;
}

.product-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.product-name {
  font-family: 'Archivo Black', system-ui, sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  margin: 0;
  color: #1D71B8;
}

.product-name a {
  color: #1D71B8;
  text-decoration: none;
}
.product-name a:hover { color: #F9B233; }

.product-tagline {
  margin: 0;
  font-size: 18px;
  color: #1D71B8;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: auto;
}

.product-price {
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-size: 30px;
  color: #1D71B8;
  font-weight: 400;
}

.buy-btn {
  border: 0;
  background: #F9B233;
  color: #FFFFFF;
  font-family: 'Archivo Black', system-ui, sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  padding: 12px 24px;
  min-height: 52px;
  cursor: pointer;
}
.buy-btn:hover { background: #1D71B8; }

/* ===== STATEMENT ===== */
.statement-section {
  position: relative;
  padding: clamp(72px, 12vw, 120px) clamp(16px, 4vw, 28px);
  text-align: center;
  background-image: linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)), url('assets/statement-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.statement-text {
  font-family: 'Archivo Black', system-ui, sans-serif;
  text-transform: uppercase;
  font-size: clamp(30px, 5.5vw, 64px);
  line-height: 1.05;
  margin: 0 auto;
  max-width: 18ch;
  color: #1D71B8;
}

/* ===== SPACER ===== */
.spacer { height: 56px; background: #FFFFFF; }

/* ===== ERASMUS ===== */
.erasmus-section {
  background: #F9B233;
  padding: clamp(48px, 8vw, 80px) clamp(16px, 4vw, 28px);
}

.erasmus-wrap {
  max-width: 880px;
  margin: 0 auto;
}

.erasmus-text {
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.4;
  margin: 0;
  color: #FFFFFF;
  text-wrap: pretty;
}

/* ===== FAQ ===== */
.faq-section {
  background: #FFFFFF;
  padding: clamp(56px, 9vw, 96px) clamp(16px, 4vw, 28px);
}

.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  font-family: 'Archivo Black', system-ui, sans-serif;
  text-transform: uppercase;
  font-size: clamp(30px, 4.5vw, 48px);
  margin: 0 0 40px;
  color: #1D71B8;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-top: 2px solid #1D71B8;
  padding: 20px 0;
}

.faq-item summary {
  font-family: 'Archivo Black', system-ui, sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  color: #1D71B8;
  cursor: pointer;
  list-style: none;
  min-height: 32px;
}

.faq-item p {
  margin: 16px 0 0;
  font-size: 19px;
  color: #1D71B8;
}

/* ===== SUBSCRIBE ===== */
.subscribe-section {
  background: #1D71B8;
  padding: clamp(48px, 8vw, 80px) clamp(16px, 4vw, 28px);
  color: #FFFFFF;
}

.subscribe-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.subscribe-title {
  font-family: 'Archivo Black', system-ui, sans-serif;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 16px;
  color: #FFFFFF;
}

.subscribe-text {
  margin: 0 0 28px;
  font-size: 19px;
  color: #FFFFFF;
}

.subscribe-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.subscribe-email {
  flex: 1 1 260px;
  border: 0;
  padding: 16px;
  min-height: 52px;
  font-size: 18px;
  font-family: 'Archivo', system-ui, sans-serif;
  color: #1D71B8;
  background: #FFFFFF;
}

.subscribe-btn {
  border: 0;
  background: #FFFFFF;
  color: #1D71B8;
  font-family: 'Archivo Black', system-ui, sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  padding: 14px 28px;
  min-height: 52px;
  cursor: pointer;
}

/* ===== CONTACT ===== */
.contact-section {
  background: #F7F5F0;
  padding: clamp(56px, 9vw, 96px) clamp(16px, 4vw, 28px);
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.contact-title {
  font-family: 'Archivo Black', system-ui, sans-serif;
  text-transform: uppercase;
  font-size: clamp(30px, 4.5vw, 48px);
  margin: 0 0 24px;
  color: #1D71B8;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1D71B8;
  text-decoration: none;
  font-size: 20px;
  min-height: 48px;
}
.contact-link:hover { color: #F9B233; }

.contact-img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

/* ===== ABOUT PAGE ===== */
.about-section {
  padding: clamp(48px, 8vw, 80px) clamp(16px, 4vw, 28px);
}

.about-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.about-title {
  font-family: 'Archivo Black', system-ui, sans-serif;
  text-transform: uppercase;
  font-size: clamp(32px, 5vw, 56px);
  margin: 0 0 28px;
  color: #1D71B8;
}

.about-text {
  margin: 0;
  font-size: 22px;
  color: #1D71B8;
  max-width: 46ch;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  background: #F7F5F0;
}

/* ===== PRODUCT PAGE ===== */
.product-page {
  background: #FFFFFF;
  padding: clamp(40px, 6vw, 72px) clamp(16px, 4vw, 28px);
}

.product-page-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 16px;
  font-weight: 600;
  color: #1D71B8;
  text-decoration: none;
}
.back-link:hover { color: #F9B233; }

.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(28px, 5vw, 56px);
  margin-top: 24px;
  align-items: start;
}

.product-detail-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  background: #F7F5F0;
}

.product-detail-name {
  font-family: 'Archivo Black', system-ui, sans-serif;
  text-transform: uppercase;
  font-size: clamp(28px, 3.6vw, 44px);
  margin: 0 0 12px;
  color: #1D71B8;
}

.product-detail-price {
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-size: 30px;
  margin: 0 0 20px;
  color: #1D71B8;
  font-weight: 400;
}

.product-detail-tagline {
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 500;
  color: #1D71B8;
}

.size-label {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1D71B8;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.size-btn {
  border: 2px solid #1D71B8;
  background: #FFFFFF;
  color: #1D71B8;
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-size: 16px;
  min-width: 56px;
  min-height: 48px;
  cursor: pointer;
}
.size-btn:hover, .size-btn.active {
  background: #1D71B8;
  color: #FFFFFF;
}

.add-cart-btn {
  border: 0;
  background: #F9B233;
  color: #FFFFFF;
  font-family: 'Archivo Black', system-ui, sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  padding: 14px 32px;
  min-height: 56px;
  cursor: pointer;
  width: 100%;
  max-width: 340px;
}
.add-cart-btn:hover { background: #1D71B8; }

/* Force Ecwid injected button to match our add-cart-btn style */
.ecwid-buy-wrapper button {
  border: 0 !important;
  background: #F9B233 !important;
  color: #FFFFFF !important;
  font-family: 'Archivo Black', system-ui, sans-serif !important;
  text-transform: uppercase !important;
  font-size: 24px !important;
  padding: 14px 32px !important;
  min-height: 56px !important;
  cursor: pointer !important;
  width: 100% !important;
  max-width: 340px !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  transition: background-color 0.2s ease !important;
  line-height: normal !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.ecwid-buy-wrapper button:hover {
  background: #1D71B8 !important;
}
.ecwid-buy-wrapper svg {
  display: none !important; /* Hide ecwid icons inside the button if any */
}

.product-accordions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
}

.product-accordion {
  border-top: 2px solid #1D71B8;
  padding: 8px 0;
}
.product-accordion:last-child {
  border-bottom: 2px solid #1D71B8;
}

.product-accordion summary {
  font-family: 'Archivo Black', system-ui, sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  color: #1D71B8;
  cursor: pointer;
  list-style: none;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.product-accordion p {
  margin: 8px 0 16px;
  font-size: 19px;
  color: #1D71B8;
}

/* ===== SIZE TABLE ===== */
.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  color: #1D71B8;
  table-layout: fixed;
}

.size-table thead tr {
  background: #1D71B8;
  color: #FFFFFF;
}

.size-table th, .size-table td {
  padding: 8px 4px;
  text-align: center;
}

.size-table th {
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-weight: 400;
}

.size-table th:first-child {
  text-align: left;
  width: 36%;
}

.size-table tbody th {
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
  background: transparent;
  color: #1D71B8;
}

.size-table tbody tr {
  border-bottom: 1px solid #D9E4F0;
}

.size-note {
  margin: 0 0 20px;
  font-size: 17px;
  color: #1D71B8;
}

/* ===== LEGAL PAGES ===== */

/* ===== CART MODAL ===== */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(29, 113, 184, 0.4);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-modal {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 999;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  box-shadow: -4px 0 15px rgba(0,0,0,0.1);
}
.cart-modal.open {
  right: 0;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 2px solid #1D71B8;
  background: #F7F5F0;
}

.cart-title {
  font-family: 'Archivo Black', system-ui, sans-serif;
  text-transform: uppercase;
  font-size: 28px;
  margin: 0;
  color: #1D71B8;
}

.cart-close-btn {
  background: transparent;
  border: 0;
  color: #1D71B8;
  cursor: pointer;
  padding: 4px;
}
.cart-close-btn:hover {
  color: #F9B233;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

/* Empty State */
.cart-empty-state {
  text-align: center;
  padding: 40px 20px;
  background: #F7F5F0;
  margin: auto 0;
}
.cart-empty-title {
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-size: 24px;
  margin: 0 0 10px;
  color: #1D71B8;
}
.cart-empty-text {
  font-size: 19px;
  margin: 0 0 28px;
}
.cart-empty-cta {
  background: #F9B233;
  color: #FFFFFF;
  border: 0;
  font-family: 'Archivo Black', system-ui, sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  padding: 0 28px;
  min-height: 56px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.cart-empty-cta:hover { background: #1D71B8; }

/* Has Items State */
.cart-count {
  font-size: 19px;
  margin: 0 0 24px;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 2px solid #1D71B8;
  align-items: flex-start;
}
.cart-item:first-child {
  border-top: 2px solid #1D71B8;
}

.cart-item-img {
  width: 96px;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: #F7F5F0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-name {
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-size: 20px;
  margin: 0 0 4px;
  line-height: 1.2;
}
.cart-item-tagline, .cart-item-size {
  margin: 0 0 4px;
  font-size: 16px;
}
.cart-item-size {
  font-weight: 600;
  margin-bottom: 12px;
}
.cart-item-price {
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-size: 20px;
  margin: 0;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cart-qty-ctrl {
  display: flex;
  align-items: center;
  border: 2px solid #1D71B8;
  height: 40px;
}
.cart-qty-btn {
  background: transparent;
  border: 0;
  color: #1D71B8;
  font-size: 22px;
  font-weight: 600;
  width: 36px;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-qty-val {
  min-width: 36px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}

.cart-item-remove {
  background: transparent;
  border: 0;
  color: #1D71B8;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  padding: 0;
}
.cart-item-remove:hover { color: #F9B233; }

.cart-summary {
  background: #F7F5F0;
  padding: 24px;
  margin-top: 32px;
}
.cart-summary-title {
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-size: 22px;
  margin: 0 0 20px;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 18px;
}
.cart-summary-val {
  font-weight: 600;
}
.cart-summary-shipping {
  border-bottom: 2px solid #1D71B8;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.cart-summary-total {
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-size: 24px;
  padding: 12px 0 24px;
}
.cart-checkout-btn {
  width: 100%;
  border: 0;
  background: #F9B233;
  color: #FFFFFF;
  font-family: 'Archivo Black', system-ui, sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  padding: 0 24px;
  min-height: 56px;
  cursor: pointer;
}
.cart-checkout-btn:hover { background: #1D71B8; }
.cart-pay-note {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.4;
}
.legal-page {
  background: #FFFFFF;
  padding: clamp(48px, 8vw, 72px) clamp(16px, 4vw, 28px);
}

.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.legal-title {
  font-family: 'Archivo Black', system-ui, sans-serif;
  text-transform: uppercase;
  font-size: clamp(28px, 4.5vw, 44px);
  margin: 0 0 32px;
  color: #1D71B8;
}

.legal-block {
  margin-bottom: 28px;
}

.legal-block h2 {
  font-family: 'Archivo Black', system-ui, sans-serif;
  text-transform: uppercase;
  font-size: 19px;
  margin: 0 0 8px;
  color: #1D71B8;
}

.legal-block p {
  margin: 0;
  font-size: 19px;
  color: #1D71B8;
  white-space: pre-line;
}

/* ===== CHECKOUT PAGE ===== */
.checkout-page {
  background: #FFFFFF;
  padding: clamp(40px, 6vw, 72px) clamp(16px, 4vw, 40px) clamp(56px, 8vw, 96px);
}

.checkout-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.checkout-title {
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1.05;
  margin: 16px 0 8px;
  color: #1D71B8;
}

.checkout-count {
  margin: 0 0 clamp(28px, 4vw, 44px);
  font-size: 19px;
  color: #1D71B8;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.checkout-items-col {
  min-width: 0;
}

.checkout-items-list {
  display: flex;
  flex-direction: column;
}

.checkout-item {
  display: flex;
  gap: clamp(16px, 3vw, 28px);
  padding: clamp(20px, 3vw, 28px) 0;
  border-bottom: 2px solid #1D71B8;
  align-items: flex-start;
  flex-wrap: wrap;
}
.checkout-item:first-child {
  border-top: 2px solid #1D71B8;
}

.checkout-item-img {
  width: clamp(96px, 14vw, 140px);
  aspect-ratio: 3/4;
  object-fit: cover;
  background: #F7F5F0;
  display: block;
}

.checkout-item-info {
  flex: 1 1 220px;
  min-width: 0;
}

.checkout-item-name {
  margin: 0 0 4px;
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(19px, 2.4vw, 23px);
  color: #1D71B8;
}

.checkout-item-tagline {
  margin: 0 0 4px;
  font-size: 17px;
  color: #1D71B8;
}

.checkout-item-size {
  margin: 0 0 16px;
  font-size: 17px;
  font-weight: 600;
  color: #1D71B8;
}

.checkout-item-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.checkout-qty-ctrl {
  display: flex;
  align-items: center;
  border: 2px solid #1D71B8;
}

.checkout-qty-btn {
  border: 0;
  background: transparent;
  color: #1D71B8;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 600;
  width: 44px;
  min-height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout-qty-btn:hover { color: #F9B233; }

.checkout-qty-val {
  min-width: 46px;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  color: #1D71B8;
}

.checkout-item-remove {
  border: 0;
  background: transparent;
  color: #1D71B8;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  min-height: 44px;
  padding: 0;
  cursor: pointer;
}
.checkout-item-remove:hover { color: #F9B233; }

.checkout-item-total {
  margin: 0;
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(19px, 2.4vw, 23px);
  color: #1D71B8;
  min-width: 96px;
  text-align: right;
}

/* Sidebar */
.checkout-sidebar {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 40px);
}

.checkout-section-title {
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 28px);
  margin: 0 0 6px;
  color: #1D71B8;
}

/* Delivery Form */
.checkout-delivery {
  background: #F7F5F0;
  padding: clamp(24px, 3.5vw, 36px);
}

.checkout-delivery-note {
  margin: 0 0 22px;
  font-size: 17px;
  color: #1D71B8;
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.checkout-label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 16px;
  font-weight: 600;
  color: #1D71B8;
}

.checkout-label-full {
  grid-column: 1 / -1;
}

.checkout-input {
  border: 2px solid #1D71B8;
  background: #FFFFFF;
  color: #1D71B8;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 400;
  padding: 0 14px;
  min-height: 48px;
  width: 100%;
  box-sizing: border-box;
}
.checkout-input:focus {
  outline: 3px solid #F9B233;
  outline-offset: 2px;
}
.checkout-input::placeholder {
  color: #1D71B8;
  opacity: 0.5;
}

/* Order Summary */
.checkout-summary {
  background: #F7F5F0;
  padding: clamp(24px, 3.5vw, 36px);
}

.checkout-summary .checkout-section-title {
  margin-bottom: 22px;
}

.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  font-size: 18px;
  color: #1D71B8;
}

.checkout-summary-val {
  font-weight: 600;
}

.checkout-summary-shipping {
  border-bottom: 2px solid #1D71B8;
}

.checkout-summary-total {
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-size: clamp(21px, 2.6vw, 25px);
  padding: 18px 0 24px;
}

.checkout-pay-btn {
  width: 100%;
  border: 0;
  background: #F9B233;
  color: #FFFFFF;
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 0.04em;
  padding: 0 24px;
  min-height: 56px;
  cursor: pointer;
}
.checkout-pay-btn:hover { background: #1D71B8; }

.checkout-pay-note {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.4;
  color: #1D71B8;
}

/* Empty State */
.checkout-empty {
  background: #F7F5F0;
  padding: clamp(40px, 7vw, 80px) clamp(20px, 4vw, 48px);
  text-align: center;
}

.checkout-empty-title {
  margin: 0 0 10px;
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(24px, 4vw, 34px);
  color: #1D71B8;
}

.checkout-empty-text {
  margin: 0 0 28px;
  font-size: 19px;
  color: #1D71B8;
}

.checkout-empty-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F9B233;
  color: #FFFFFF;
  font-family: 'Archivo Black', system-ui, sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0 28px;
  min-height: 56px;
}
.checkout-empty-cta:hover { background: #1D71B8; color: #FFFFFF; }

/* ===== FOOTER ===== */
.site-footer {
  background: #F7F5F0;
  border-top: 2px solid #1D71B8;
  padding: 20px clamp(16px, 4vw, 28px);
}

.footer-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  align-items: center;
  justify-content: space-between;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 22px;
}

.footer-link {
  font-size: 16px;
  color: #1D71B8;
  text-decoration: none;
  padding: 10px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.footer-link:hover { color: #F9B233; }

.footer-info {
  margin: 0;
  font-size: 14px;
  color: #1D71B8;
  opacity: 0.75;
}

/* ===== PAGES VISIBILITY ===== */
.page { display: none; }
.page.active { display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 899px) {
  .menu-btn { display: flex; }
  .main-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    width: 100%;
    padding-bottom: 12px;
  }
  .main-nav.open { display: flex; }
  .search-form { width: 100%; margin-top: 8px; }
  .search-input { flex: 1 1 auto; width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-form-grid { grid-template-columns: 1fr; }
  .checkout-label-full { grid-column: auto; }
}

@media (max-width: 619px) {
  .hero-grid {
    display: block;
  }
  .hero-img {
    min-height: 48vh;
  }
  .hero-box {
    padding: 32px 18px 40px;
  }
  .hero-cta {
    font-size: 18px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 0;
  }
  .add-cart-btn {
    font-size: 20px;
    max-width: none;
  }
}

/* ===== ECWID CART & SEARCH OVERRIDES ===== */
.custom-cart-wrapper {
  display: flex !important;
  align-items: center !important;
}
.custom-cart-wrapper .ec-minicart {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  border: 0 !important;
  background: transparent !important;
  color: #1D71B8 !important;
  font-family: 'Archivo', system-ui, sans-serif !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  padding: 8px 4px !important;
  min-height: 48px !important;
  cursor: pointer !important;
  text-decoration: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.custom-cart-wrapper .ec-minicart:hover {
  color: #F9B233 !important;
}
.custom-cart-wrapper .ec-minicart__icon svg {
  display: none !important;
}
.custom-cart-wrapper .ec-minicart__icon {
  width: 24px !important;
  height: 24px !important;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231D71B8' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 7h16l-1.4 12.2A2 2 0 0 1 16.6 21H7.4a2 2 0 0 1-2-1.8L4 7Z'%3E%3C/path%3E%3Cpath d='M8.5 7V5.6a3.5 3.5 0 0 1 7 0V7'%3E%3C/path%3E%3C/svg%3E") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
.custom-cart-wrapper .ec-minicart:hover .ec-minicart__icon {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23F9B233' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 7h16l-1.4 12.2A2 2 0 0 1 16.6 21H7.4a2 2 0 0 1-2-1.8L4 7Z'%3E%3C/path%3E%3Cpath d='M8.5 7V5.6a3.5 3.5 0 0 1 7 0V7'%3E%3C/path%3E%3C/svg%3E") !important;
}
.custom-cart-wrapper .ec-minicart__counter {
  background: transparent !important;
  color: inherit !important;
  font-family: 'Archivo', system-ui, sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  line-height: 1 !important;
}
.custom-cart-wrapper .ec-minicart__counter::before,
.custom-cart-wrapper .ec-minicart__counter::after {
  display: none !important;
}

.custom-search-wrapper {
  display: flex !important;
  align-items: center !important;
}
.custom-search-wrapper .ec-search-widget,
.custom-search-wrapper form {
  display: flex !important;
  align-items: center !important;
  border-bottom: 2px solid #1D71B8 !important;
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.custom-search-wrapper > div {
  border: none !important;
}
.custom-search-wrapper input[type="text"],
.custom-search-wrapper input[type="search"],
.custom-search-wrapper .ec-search-widget__input,
.custom-search-wrapper .ec-search__field,
.custom-search-wrapper input.ec-search__input {
  border: 0 !important;
  padding: 12px 4px !important;
  font-family: 'Archivo', system-ui, sans-serif !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  color: #1D71B8 !important;
  background: transparent !important;
  width: 130px !important;
  min-height: 48px !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.custom-search-wrapper input::placeholder {
  color: #1D71B8 !important;
  opacity: 0.6 !important;
}
.custom-search-wrapper input:focus {
  outline: none !important;
  box-shadow: none !important;
}
.custom-search-wrapper button,
.custom-search-wrapper .ec-search-widget__btn,
.custom-search-wrapper .ec-search__btn {
  border: 0 !important;
  background: transparent !important;
  color: #1D71B8 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  min-height: 48px !important;
  padding: 0 !important;
  cursor: pointer !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.custom-search-wrapper button:hover {
  color: #F9B233 !important;
}
.custom-search-wrapper button svg {
  display: none !important;
}
.custom-search-wrapper button {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%231D71B8' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10.5' cy='10.5' r='6.5'%3E%3C/circle%3E%3Cpath d='M15.5 15.5L21 21'%3E%3C/path%3E%3C/svg%3E") !important;
  background-size: 20px !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
.custom-search-wrapper button:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23F9B233' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10.5' cy='10.5' r='6.5'%3E%3C/circle%3E%3Cpath d='M15.5 15.5L21 21'%3E%3C/path%3E%3C/svg%3E") !important;
}

@media (max-width: 899px) {
  .custom-search-wrapper { width: 100%; margin-top: 8px; }
  .custom-search-wrapper .ec-search-widget,
  .custom-search-wrapper form { width: 100% !important; max-width: none !important; }
  .custom-search-wrapper input[type="text"],
  .custom-search-wrapper input[type="search"],
  .custom-search-wrapper .ec-search__field { flex: 1 1 auto !important; width: 100% !important; }
}
