* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f4f4f4;
  color: #111;
}

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

.site-header {
  width: 100%;
  padding: 20px 8%;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
}

.logo h1 {
  font-size: 22px;
  letter-spacing: -1px;
  font-weight: 900;
}

.logo p {
  font-size: 11px;
  letter-spacing: 4px;
  color: #777;
  margin-top: 4px;
}

nav a {
  margin-left: 25px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
}

nav a:hover {
  color: #000;
}

.header-cart {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 17px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.header-cart span {
  background: #fff;
  color: #000;
  padding: 3px 8px;
  border-radius: 999px;
  margin-left: 6px;
}

.hero {
  padding: 85px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
  overflow: hidden;
}

.tag {
  display: inline-block;
  border: 1px solid #ccc;
  background: #fff;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  color: #555;
  margin-bottom: 22px;
}

.hero h2 {
  font-size: clamp(45px, 6vw, 76px);
  line-height: 0.94;
  letter-spacing: -4px;
  font-weight: 900;
  max-width: 780px;
}

.hero p {
  margin-top: 24px;
  max-width: 560px;
  color: #555;
  font-size: 17px;
  line-height: 1.7;
}

.hero-buttons {
  margin-top: 34px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 26px;
  border-radius: 100px;
  font-weight: 900;
  font-size: 14px;
  display: inline-block;
  transition: 0.2s;
}

.btn-black {
  background: #000;
  color: #fff;
}

.btn-black:hover {
  background: #333;
}

.btn-white {
  background: #fff;
  color: #000;
  border: 1px solid #ccc;
}

.btn-white:hover {
  border-color: #000;
}

.hero-showcase {
  min-height: 560px;
  position: relative;
  border: 1px solid #ddd;
  border-radius: 38px;
  background:
    radial-gradient(circle at top left, rgba(0,0,0,0.07), transparent 35%),
    linear-gradient(135deg, #ffffff, #eeeeee);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.showcase-card {
  position: absolute;
  width: 48%;
  min-height: 455px;
  border-radius: 30px;
  background: rgba(255,255,255,.78);
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 24px;
  transition: .25s;
}

.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0,0,0,.12);
}

.showcase-card img {
  width: 100%;
  height: 390px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 24px 24px rgba(0,0,0,.16));
}

.showcase-card span {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.showcase-left {
  left: 7%;
  top: 52px;
  transform: rotate(-2deg);
}

.showcase-right {
  right: 7%;
  bottom: 52px;
  transform: rotate(2deg);
}

.showcase-left:hover {
  transform: rotate(-2deg) translateY(-6px);
}

.showcase-right:hover {
  transform: rotate(2deg) translateY(-6px);
}

.section {
  padding: 75px 8%;
}

.section.white {
  background: #fff;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.section-title {
  margin-bottom: 35px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.section-title span,
.checkout-header span {
  font-size: 13px;
  letter-spacing: 4px;
  font-weight: 900;
  color: #777;
}

.section-title h3,
.checkout-header h3 {
  margin-top: 8px;
  font-size: 42px;
  letter-spacing: -2px;
  font-weight: 900;
}

.section-title p,
.checkout-header p {
  max-width: 430px;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.product {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 34px;
  overflow: hidden;
  transition: 0.25s;
}

.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.product-img {
  padding: 15px;
  background: #f0f0f0;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 24px;
  transition: 0.35s;
}

.product-img-contain img {
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 20px 22px rgba(0,0,0,.14));
}

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

.product-content {
  padding: 28px;
}

.brand {
  font-size: 12px;
  letter-spacing: 3px;
  color: #777;
  font-weight: 900;
  margin-bottom: 10px;
}

.product-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.product h4 {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -1px;
}

.product-title-link:hover {
  text-decoration: underline;
}

.price {
  background: #000;
  color: #fff;
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.product-desc {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 10px;
}

.sizes {
  margin-top: 22px;
}

.sizes p {
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 10px;
}

.size-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.size-btn {
  width: 52px;
  height: 42px;
  border-radius: 100px;
  border: 1px solid #ccc;
  background: #fff;
  font-weight: 900;
  cursor: pointer;
  transition: 0.2s;
}

.size-btn.active,
.size-btn:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.product-actions {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.details-btn,
.buy-btn {
  width: 100%;
  padding: 16px;
  border-radius: 100px;
  font-weight: 900;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
}

.details-btn {
  background: #fff;
  border: 1px solid #ccc;
  color: #000;
}

.buy-btn {
  border: none;
  background: #000;
  color: #fff;
}

.details-btn:hover {
  border-color: #000;
}

.buy-btn:hover,
.whatsapp-btn:hover {
  background: #333;
}

.cart-bar {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #000;
  color: #fff;
  padding: 16px 22px;
  border-radius: 100px;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 20;
  cursor: pointer;
  border: none;
}

.product-detail {
  padding: 70px 8%;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: start;
}

.gallery {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 34px;
  padding: 16px;
  position: sticky;
  top: 105px;
}

.gallery img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 24px;
  background: #eee;
}

.gallery-contain img {
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 24px 24px rgba(0,0,0,.16));
}

.detail-info {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 34px;
  padding: 36px;
}

.breadcrumb {
  font-size: 13px;
  color: #777;
  margin-bottom: 26px;
  display: inline-block;
  font-weight: 700;
}

.detail-info h2 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -3px;
  font-weight: 900;
}

.detail-price {
  margin-top: 22px;
  display: inline-block;
  background: #000;
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
}

.detail-desc {
  margin-top: 24px;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

.detail-list {
  margin-top: 26px;
  display: grid;
  gap: 13px;
}

.detail-list li {
  list-style: none;
  padding: 15px 18px;
  background: #f4f4f4;
  border-radius: 18px;
  color: #333;
  font-weight: 700;
}

.detail-selector {
  margin-top: 30px;
}

.detail-selector h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.detail-actions {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.detail-actions .btn,
.detail-actions button {
  width: 100%;
  text-align: center;
  border: none;
}

.back-link {
  margin-top: 18px;
  display: inline-block;
  color: #555;
  font-weight: 800;
}

.back-link:hover {
  color: #000;
  text-decoration: underline;
}

.checkout-page {
  padding: 70px 8%;
}

.trust-hero {
  background: linear-gradient(135deg, #fff, #f4f4f4);
  border: 1px solid #ddd;
  border-radius: 34px;
  padding: 46px;
  margin-bottom: 32px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
}

.realm-word {
  font-size: clamp(58px, 11vw, 150px);
  line-height: 0.85;
  letter-spacing: -8px;
  font-weight: 900;
  margin-bottom: 28px;
}

.trust-hero h2 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: -2px;
  font-weight: 900;
  max-width: 900px;
}

.trust-hero p {
  margin-top: 22px;
  max-width: 950px;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

.trust-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trust-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid #ddd;
  box-shadow: 0 10px 25px rgba(0,0,0,.04);
}

.trust-icon,
.pay-symbol {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 14px;
}

.trust-card strong {
  display: block;
  font-size: 18px;
  margin-bottom: 7px;
}

.trust-card span {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  align-items: start;
}

.order-panel {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 34px;
  padding: 30px;
  position: sticky;
  top: 105px;
}

.order-panel h3 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.checkout-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 34px;
  padding: 32px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
}

.checkout-header {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: end;
  margin-bottom: 25px;
}

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

input,
select,
textarea {
  width: 100%;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
  background: #fff;
}

textarea {
  grid-column: span 2;
  min-height: 100px;
  resize: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #000;
}

.cart-items {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 12px;
  background: #f5f5f5;
  border: 1px solid #e1e1e1;
  border-radius: 20px;
  padding: 15px;
  align-items: center;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 16px;
  background: #eee;
  mix-blend-mode: multiply;
}

.cart-item h4 {
  font-size: 14px;
  margin-bottom: 5px;
}

.cart-item small {
  color: #666;
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 7px;
}

.cart-controls button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}

.cart-controls .remove-btn {
  background: #111;
  color: #fff;
  border-color: #111;
}

.empty-cart {
  padding: 20px;
  background: #f5f5f5;
  border-radius: 18px;
  color: #666;
  text-align: center;
}

.summary {
  padding: 22px;
  background: #f2f2f2;
  border-radius: 22px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: #555;
  font-size: 15px;
  gap: 15px;
}

.summary-row span:last-child {
  text-align: right;
}

.summary-total {
  border-top: 1px solid #ccc;
  padding-top: 15px;
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 22px;
  font-weight: 900;
}

.pending-row {
  margin-top: 14px;
  font-weight: 900;
  color: #111;
}

.small-note {
  margin-top: 14px;
  color: #666;
  font-size: 13px;
  line-height: 1.5;
}

.department-notice,
.method-notice {
  display: none;
  margin-top: 15px;
  padding: 18px;
  border-radius: 20px;
  background: #f2f2f2;
  border: 1px solid #ddd;
  color: #555;
  line-height: 1.6;
  font-size: 14px;
}

.department-notice strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  color: #111;
}

.department-notice p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-top: 8px;
}

.advance-confirm {
  display: none;
  margin-top: 12px;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #ccc;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: #444;
}

.advance-confirm input {
  width: auto;
  margin-top: 3px;
}

.whatsapp-btn {
  margin-top: 20px;
  width: 100%;
  padding: 17px;
  border-radius: 100px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 900;
  font-size: 15px;
}

.payment-logos {
  margin-top: 22px;
  padding: 22px;
  background: #f4f4f4;
  border-radius: 26px;
  border: 1px solid #ddd;
}

.payment-logos p {
  margin-bottom: 14px;
  font-weight: 900;
  color: #111;
}

.payment-logo-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.pay-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 16px;
  display: grid;
  gap: 5px;
  box-shadow: 0 8px 18px rgba(0,0,0,.035);
}

.pay-symbol {
  margin-bottom: 8px;
}

.pay-card strong {
  font-size: 15px;
}

.pay-card small {
  color: #666;
  font-size: 12px;
}

.site-footer {
  padding: 35px 8%;
  background: #fff;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #666;
  font-size: 14px;
  align-items: center;
}

.site-footer strong {
  display: block;
  color: #111;
  margin-bottom: 5px;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 999px;
  background: #f7f7f7;
  color: #111;
  font-weight: 900;
  transition: .2s;
}

.social-links a:hover {
  border-color: #000;
  background: #000;
  color: #fff;
}


@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 55px;
  }

  .hero-showcase {
    min-height: 560px;
  }
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .products {
    grid-template-columns: 1fr;
  }

  .section-title,
  .checkout-header {
    flex-direction: column;
    align-items: start;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  textarea {
    grid-column: span 1;
  }

  .product-detail {
    grid-template-columns: 1fr;
    padding-top: 35px;
  }

  .gallery {
    position: static;
  }

  .gallery img {
    height: 470px;
  }

  .checkout-layout,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .order-panel {
    position: static;
  }

  .trust-hero {
    padding: 30px;
  }

  .realm-word {
    letter-spacing: -4px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .hero-showcase {
    min-height: auto;
    display: grid;
    gap: 18px;
    padding: 18px;
  }

  .showcase-card {
    position: static;
    width: 100%;
    min-height: auto;
    transform: none;
  }

  .showcase-left,
  .showcase-right,
  .showcase-left:hover,
  .showcase-right:hover {
    transform: none;
  }

  .showcase-card img {
    height: 320px;
  }

  .cart-item {
    grid-template-columns: 62px 1fr;
  }

  .cart-controls {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 16px 5%;
  }

  .header-cart {
    font-size: 12px;
    padding: 10px 13px;
  }

  .hero,
  .section,
  .product-detail,
  .checkout-page {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero h2,
  .detail-info h2 {
    letter-spacing: -2px;
  }

  .product-img img {
    height: 330px;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .detail-info,
  .checkout-box {
    padding: 26px;
  }

  .payment-logo-row {
    grid-template-columns: 1fr;
  }

  .social-links a {
    width: 100%;
  }
}

.brand-svg{width:27px;height:27px;flex:0 0 27px;display:block}.social-links a:hover .brand-svg{transform:scale(1.05)}

.trust-section,
.testimonials,
.faq {
  padding: 40px;
  background: #fff;
  border-radius: 25px;
  margin: 30px 0;
  border: 1px solid #ddd;
}

.trust-items {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.stock-warning {
  margin-top: 10px;
  color: #b00020;
  font-weight: 700;
}

.testimonial {
  margin-top: 15px;
  background: #f4f4f4;
  padding: 15px;
  border-radius: 15px;
}

/* ================================
   REALM PREMIUM BRAND UPGRADE
================================ */

body {
  background:
    radial-gradient(circle at top left, rgba(0,0,0,.045), transparent 28%),
    linear-gradient(180deg, #f7f7f7 0%, #eeeeee 100%);
}

.site-header {
  border-bottom: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.035);
}

.logo h1 {
  letter-spacing: -1.4px;
}

.logo p {
  letter-spacing: 5px;
}

.hero {
  min-height: 78vh;
}

.hero h2 {
  text-transform: uppercase;
}

.hero-copy p {
  font-size: 18px;
}

.hero-showcase {
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(230,230,230,.92)),
    radial-gradient(circle at 40% 30%, rgba(0,0,0,.10), transparent 35%);
  border: 1px solid rgba(0,0,0,.10);
}

.hero-showcase::before {
  content: "REALM";
  position: absolute;
  inset: auto auto 28px 28px;
  font-size: clamp(64px, 9vw, 130px);
  line-height: .8;
  font-weight: 900;
  letter-spacing: -8px;
  color: rgba(0,0,0,.045);
  pointer-events: none;
}

.showcase-card {
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 38px rgba(0,0,0,.06);
}

.showcase-card span {
  border-top: 1px solid #ddd;
  padding-top: 14px;
  width: 100%;
  text-align: center;
}

.premium-strip {
  margin: 0 8% 28px;
  padding: 22px 26px;
  border: 1px solid #d9d9d9;
  border-radius: 28px;
  background: #111;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,.16);
}

.premium-strip span {
  display: block;
  color: #aaa;
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 900;
  margin-bottom: 6px;
}

.premium-strip strong {
  font-size: clamp(18px, 3vw, 28px);
  letter-spacing: -1px;
}

.premium-strip a {
  background: #fff;
  color: #000;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

.brand-story {
  margin: 0 8% 42px;
  padding: 42px;
  background: rgba(255,255,255,.72);
  border: 1px solid #ddd;
  border-radius: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  box-shadow: 0 14px 35px rgba(0,0,0,.045);
}

.section-kicker {
  color: #777;
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 900;
}

.brand-story h3 {
  margin-top: 12px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: .96;
  letter-spacing: -3px;
  font-weight: 900;
}

.brand-story p {
  color: #555;
  line-height: 1.85;
  font-size: 16px;
  align-self: end;
}

.product,
.checkout-box,
.order-panel,
.detail-info,
.gallery,
.trust-hero,
.trust-section,
.testimonials,
.faq {
  box-shadow: 0 18px 45px rgba(0,0,0,.045);
}

.product-img,
.gallery {
  background:
    radial-gradient(circle at center, rgba(255,255,255,.9), rgba(230,230,230,.8));
}

.product-content,
.detail-info,
.checkout-box {
  background: #fff;
}

.product h4,
.detail-info h2,
.checkout-header h3,
.section-title h3 {
  text-transform: uppercase;
}

.stock-warning {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: #111;
  color: #fff !important;
  font-size: 12px;
  letter-spacing: .5px;
  margin-top: 14px;
}

.detail-stock {
  margin-top: 22px;
}

.size-guide {
  margin-top: 26px;
  padding: 18px;
  border-radius: 22px;
  background: #f4f4f4;
  border: 1px solid #ddd;
}

.size-guide h4 {
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 900;
}

.size-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.size-guide-grid span {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.trust-section,
.testimonials,
.faq {
  margin-left: 8%;
  margin-right: 8%;
}

.trust-section h3,
.testimonials h3,
.faq h3 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.trust-items div {
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900;
  font-size: 13px;
}

.testimonial {
  border: 1px solid #ddd;
  background: linear-gradient(145deg, #fff, #f1f1f1);
  font-weight: 700;
}

.faq p {
  padding: 16px 0;
  border-top: 1px solid #e4e4e4;
  color: #555;
  line-height: 1.7;
}

.faq p:first-of-type {
  margin-top: 12px;
}

.checkout-reassurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-bottom: 18px;
}

.checkout-reassurance div {
  border: 1px solid #ddd;
  border-radius: 18px;
  padding: 14px;
  background: #f7f7f7;
}

.checkout-reassurance strong {
  display: block;
  font-size: 12px;
  color: #777;
  margin-bottom: 4px;
}

.checkout-reassurance span {
  font-size: 13px;
  font-weight: 900;
}

.payment-logo-row .pay-card,
.trust-card {
  transition: .2s;
}

.payment-logo-row .pay-card:hover,
.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
}

.social-links a {
  background: #fff;
}

@media (max-width: 900px) {
  .premium-strip,
  .brand-story,
  .trust-section,
  .testimonials,
  .faq {
    margin-left: 5%;
    margin-right: 5%;
  }

  .premium-strip,
  .brand-story {
    flex-direction: column;
    display: flex;
    align-items: flex-start;
  }

  .brand-story {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .checkout-reassurance {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .premium-strip {
    padding: 20px;
  }

  .premium-strip a {
    width: 100%;
    text-align: center;
  }

  .trust-section,
  .testimonials,
  .faq {
    padding: 26px;
  }
}

/* ================================
   KICKS ULTRA PRO
================================ */

.kicks-preview {
  margin: 0 8% 42px;
  padding: 42px;
  border-radius: 34px;
  border: 1px solid #ddd;
  background: linear-gradient(135deg, #111, #2a2a2a);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 28px;
  align-items: center;
  box-shadow: 0 22px 55px rgba(0,0,0,.18);
}

.kicks-preview h3 {
  margin-top: 10px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: .95;
  letter-spacing: -3px;
  font-weight: 900;
  text-transform: uppercase;
}

.kicks-preview p {
  margin: 18px 0 26px;
  color: #d5d5d5;
  line-height: 1.75;
  max-width: 560px;
}

.kicks-preview .section-kicker {
  color: #aaa;
}

.kicks-preview-card {
  background: #fff;
  border-radius: 28px;
  padding: 22px;
  color: #111;
  text-align: center;
}

.kicks-preview-card img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 24px 22px rgba(0,0,0,.18));
}

.kicks-preview-card span {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
}

.kicks-detail {
  padding: 70px 8%;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 50px;
  align-items: start;
}

.kicks-gallery {
  position: sticky;
  top: 105px;
  background: radial-gradient(circle at center, rgba(255,255,255,.95), rgba(230,230,230,.88));
  border: 1px solid #ddd;
  border-radius: 34px;
  padding: 22px;
  min-height: 660px;
  display: grid;
  align-items: center;
  box-shadow: 0 18px 45px rgba(0,0,0,.05);
}

.kicks-gallery > img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 26px 24px rgba(0,0,0,.16));
}

.kicks-badge {
  position: absolute;
  left: 24px;
  top: 24px;
  background: #111;
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  z-index: 2;
}

.carousel-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: rgba(255,255,255,.9);
  color: #111;
  font-size: 28px;
  font-weight: 900;
  cursor: pointer;
  z-index: 3;
}

.carousel-arrow.left { left: 22px; }
.carousel-arrow.right { right: 22px; }

.kicks-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 9px;
}

.thumb {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 14px;
  padding: 6px;
  cursor: pointer;
  transition: .2s;
}

.thumb.active,
.thumb:hover {
  border-color: #111;
  transform: translateY(-2px);
}

.thumb img {
  width: 100%;
  height: 62px;
  object-fit: contain;
}

.kicks-info h2 {
  text-transform: uppercase;
}

.kicks-features li {
  position: relative;
  padding-left: 42px;
}

.kicks-features li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 11px;
}

.size-btn.sold-out {
  background: #e1e1e1 !important;
  color: #777 !important;
  border-color: #d0d0d0 !important;
  text-decoration: line-through;
  cursor: not-allowed;
  opacity: .72;
}

.kicks-note {
  margin-top: 24px;
  background: #111;
  color: #fff;
  border-radius: 22px;
  padding: 18px;
  display: grid;
  gap: 6px;
}

.kicks-note strong {
  font-size: 15px;
}

.kicks-note span {
  color: #d6d6d6;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .kicks-preview,
  .kicks-detail {
    grid-template-columns: 1fr;
    margin-left: 5%;
    margin-right: 5%;
  }

  .kicks-detail {
    padding-left: 5%;
    padding-right: 5%;
  }

  .kicks-gallery {
    position: static;
    min-height: auto;
  }

  .kicks-gallery > img {
    height: 420px;
  }
}

@media (max-width: 560px) {
  .kicks-preview {
    padding: 28px;
  }

  .kicks-preview-card img {
    height: 260px;
  }

  .kicks-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .thumb img {
    height: 70px;
  }

  .carousel-arrow {
    top: 40%;
  }
}


/* ================================
   MODO TIENDA GRANDE
================================ */

.store-stats {
  margin: 0 8% 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.store-stats div {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(0,0,0,.045);
}

.store-stats strong {
  display: block;
  font-size: 26px;
  letter-spacing: -1px;
  font-weight: 900;
  color: #111;
}

.store-stats span {
  display: block;
  margin-top: 6px;
  color: #666;
  font-size: 13px;
  line-height: 1.45;
}

.product,
.kicks-gallery,
.detail-info,
.checkout-box,
.order-panel {
  transition: transform .2s ease, box-shadow .2s ease;
}

.product:hover,
.kicks-gallery:hover,
.detail-info:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,.075);
}

.kicks-price-note {
  margin-top: 12px;
  color: #555;
  background: #f2f2f2;
  border: 1px solid #ddd;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 800;
}

.kicks-gallery > img,
.product-img-contain img,
.gallery-contain img,
.cart-item-img {
  background: transparent;
}

.cart-item-img {
  object-fit: contain;
  padding: 4px;
}

.size-btn.sold-out::after {
  content: "";
}

.kicks-size-buttons .size-btn[data-price="450"]:not(.sold-out) {
  border-color: #111;
}

.kicks-size-buttons .size-btn[data-price="675"]:not(.sold-out) {
  border-color: #999;
}

@media (max-width: 900px) {
  .store-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 5%;
    margin-right: 5%;
  }
}

@media (max-width: 520px) {
  .store-stats {
    grid-template-columns: 1fr;
  }
}


/* ================================
   FINAL VISUAL POLISH + SHOX DROP
================================ */

/* Ferrari en productos: tamaño corregido y animación */
.product img[src*="ferrari"] {
  transform: scale(1.65);
  transition: transform .35s ease, filter .35s ease;
}

.product:hover img[src*="ferrari"] {
  transform: scale(1.82);
}

/* Ferrari en hero/showcase inicial */
.showcase-card img[src*="ferrari"] {
  transform: scale(1.55);
  transition: transform .35s ease, filter .35s ease;
}

.showcase-card:hover img[src*="ferrari"] {
  transform: scale(1.72);
}

/* Red Bull mantiene animación limpia */
.product img[src*="redbull"],
.showcase-card img[src*="redbull"] {
  transition: transform .35s ease, filter .35s ease;
}

.product:hover img[src*="redbull"] {
  transform: scale(1.12);
}

.showcase-card:hover img[src*="redbull"] {
  transform: scale(1.12);
}

/* Drop actual */
.drop-current {
  margin: 0 8% 42px;
  padding: 42px;
  border-radius: 34px;
  background: #111;
  color: #fff;
  border: 1px solid #222;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
}

.drop-current span {
  color: #aaa;
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 900;
}

.drop-current h3 {
  margin-top: 10px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: .95;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.drop-current p {
  margin-top: 14px;
  color: #d5d5d5;
  line-height: 1.7;
  max-width: 720px;
}

.drop-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.drop-badges strong {
  background: #fff;
  color: #111;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 13px;
}

.realm-badges {
  margin: 18px 8% 42px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.realm-badges span {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 10px 25px rgba(0,0,0,.04);
}

/* Nike Shox agotados */
.soldout-section {
  margin: 42px 8% 70px;
}

.soldout-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}

.soldout-heading span {
  color: #777;
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 900;
}

.soldout-heading h3 {
  margin-top: 8px;
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: -2px;
  text-transform: uppercase;
}

.soldout-heading p {
  max-width: 480px;
  color: #666;
  line-height: 1.6;
}

.soldout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.soldout-card {
  position: relative;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 30px;
  overflow: hidden;
  opacity: .78;
  filter: grayscale(.08);
  box-shadow: 0 18px 45px rgba(0,0,0,.05);
}

.soldout-card::after {
  content: "AGOTADO";
  position: absolute;
  top: 18px;
  right: 18px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.soldout-img {
  background: radial-gradient(circle at center, #fff, #e8e8e8);
  padding: 20px;
}

.soldout-img img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 20px 18px rgba(0,0,0,.12));
}

.soldout-content {
  padding: 24px;
}

.soldout-content h4 {
  font-size: 22px;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.soldout-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 16px;
}

.soldout-price del {
  color: #777;
  font-weight: 900;
}

.soldout-price strong {
  background: #111;
  color: #fff;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 14px;
}

.soldout-sizes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.soldout-sizes span {
  background: #e5e5e5;
  color: #777;
  border: 1px solid #d0d0d0;
  text-decoration: line-through;
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
}

.soldout-btn {
  margin-top: 18px;
  width: 100%;
  border: none;
  border-radius: 999px;
  background: #d9d9d9;
  color: #777;
  padding: 15px;
  font-weight: 900;
  cursor: not-allowed;
}

.shox-mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.shox-mini-gallery img {
  width: 100%;
  height: 70px;
  object-fit: contain;
  background: #f4f4f4;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
}

@media (max-width: 950px) {
  .drop-current {
    grid-template-columns: 1fr;
  }

  .drop-badges {
    justify-content: flex-start;
  }

  .soldout-grid {
    grid-template-columns: 1fr;
  }

  .soldout-heading {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .drop-current,
  .soldout-section,
  .realm-badges {
    margin-left: 5%;
    margin-right: 5%;
  }

  .drop-current {
    padding: 28px;
  }
}


/* ================================
   PAYPAL INTEGRADO REALM
================================ */

.paypal-checkout-box {
  display: none;
  margin-top: 18px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, #fff, #f4f4f4);
  border: 1px solid #ddd;
  box-shadow: 0 14px 34px rgba(0,0,0,.045);
}

.paypal-box-header {
  display: grid;
  gap: 5px;
  margin-bottom: 15px;
}

.paypal-box-header strong {
  font-size: 18px;
  letter-spacing: -0.5px;
}

.paypal-box-header span {
  color: #666;
  font-size: 13px;
  line-height: 1.5;
}

.paypal-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: #111;
  color: #fff;
  padding: 14px 16px;
  border-radius: 18px;
  margin-bottom: 16px;
}

.paypal-total span {
  color: #d6d6d6;
  font-size: 13px;
}

.paypal-total strong {
  font-size: 18px;
}

.paypal-small-note {
  margin-top: 12px;
  color: #666;
  font-size: 12px;
  line-height: 1.5;
}

#paypal-button-container {
  min-height: 45px;
}
