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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  width: 100%;
  display: block;
}

a,
button {
  font-family: inherit;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

input,
select,
textarea,
button {
  max-width: 100%;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* OVERLAY */

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  opacity: 0;
  visibility: hidden;
  z-index: 1200;
  transition: 0.3s ease;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* SIDEBAR */

.sidebar {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 0;
  width: min(560px, calc(100% - 20px));
  max-height: 88vh;
  background:
    linear-gradient(145deg, rgba(212,19,19,0.12), transparent 34%),
    #080808;
  z-index: 1300;
  padding: 34px 24px 24px;
  border: 1px solid rgba(255,255,255,0.12);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -24px 70px rgba(0,0,0,0.55);
  transform: translate(-50%, 110%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
  opacity: 0;
  overflow-y: auto;
  display: none;
}

.sidebar.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

.sidebar::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 54px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.26);
  transform: translateX(-50%);
}

.sidebar-header,
.cart-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 36px;
}

.sidebar-header h2,
.cart-header h2 {
  color: #d41313;
  font-family: Georgia, serif;
  font-size: 28px;
}

.sidebar-header p,
.cart-header p {
  color: #bcbcbc;
  font-size: 14px;
  margin-top: 5px;
}

.close-btn {
  background: transparent;
  color: #ffffff;
  border: none;
  font-size: 34px;
  line-height: 1;
}

.sidebar-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}

.sidebar-nav a {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-size: 13px;
  padding: 15px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.045);
  min-height: 52px;
  display: flex;
  align-items: center;
}

.sidebar-nav a:hover,
.sidebar-socials a:hover {
  color: #d41313;
}

.sidebar-nav .sidebar-sub-link {
  color: #bcbcbc;
  font-size: 11px;
  padding-left: 14px;
  background: rgba(212,19,19,0.1);
}

.sidebar-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sidebar-socials a {
  color: #bcbcbc;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CART DRAWER */

.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  max-width: 90%;
  height: 100vh;
  background: #080808;
  z-index: 1300;
  padding: 28px;
  transition: 0.35s ease;
  border-left: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
}

.cart-drawer.show {
  right: 0;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding-right: 5px;
}

.empty-cart {
  color: #bcbcbc;
  line-height: 1.7;
}

.cart-item {
  background: #121212;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px;
  margin-bottom: 14px;
}

.cart-item h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 6px;
}

.cart-item p {
  color: #d41313;
  font-weight: bold;
}

.remove-item {
  margin-top: 12px;
  background: transparent;
  color: #bcbcbc;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 12px;
}

.remove-item:hover {
  color: #ffffff;
  border-color: #d41313;
  background: #d41313;
}

.cart-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}

.cart-footer p {
  margin-bottom: 16px;
  color: #ffffff;
}

.clear-cart-btn {
  width: 100%;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 13px;
  margin-top: 12px;
}

.clear-cart-btn:hover {
  background: #d41313;
  border-color: #d41313;
}

/* HEADER */

.site-header {
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 24px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  flex-shrink: 0;
  min-width: 0;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  line-height: 1;
  padding: 0;
  background: #050505;
  border: 1px solid rgba(212,19,19,0.5);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text h1 {
  font-size: 24px;
  color: #d41313;
  letter-spacing: 2px;
  font-family: Georgia, serif;
  line-height: 1;
  white-space: nowrap;
}

.brand-text p {
  font-size: 11px;
  color: #d5d5d5;
  letter-spacing: 2px;
  margin-top: 3px;
}

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

.main-nav a,
.mega-trigger {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 12px 8px;
}

.main-nav a.active::after,
.main-nav a:hover::after,
.mega-nav-item:hover .mega-trigger::after,
.mega-nav-item:focus-within .mega-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 2px;
  background: #d41313;
}

.mega-nav-item {
  position: static;
}

.mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.mega-trigger::before {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  order: 2;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown-trigger::before {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  order: 2;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 190px;
  background: rgba(8, 8, 8, 0.98);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: 0.2s ease;
  z-index: 20;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: rgba(212,19,19,0.18);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: min(1040px, calc(100vw - 48px));
  transform: translateX(-50%) translateY(12px);
  background:
    linear-gradient(135deg, rgba(212,19,19,0.12), transparent 34%),
    rgba(8, 8, 8, 0.98);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 28px 80px rgba(0,0,0,0.55);
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.24s ease;
}

.mega-nav-item:hover .mega-menu,
.mega-nav-item:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 24px;
}

.mega-kicker {
  color: #d41313;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

.main-nav .mega-link {
  display: block;
  min-height: 178px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.035);
  overflow: hidden;
}

.main-nav .mega-link::after,
.main-nav .mega-category-title::after,
.main-nav .mega-subcategories a::after {
  display: none;
}

.mega-link span {
  color: #d41313;
  font-size: 11px;
  letter-spacing: 2px;
}

.mega-link strong {
  display: block;
  color: #ffffff;
  font-family: Georgia, serif;
  font-size: 24px;
  letter-spacing: 0;
  text-transform: none;
  margin: 14px 0 8px;
}

.mega-link small {
  display: block;
  color: #bcbcbc;
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
}

.mega-category-title {
  display: block;
  padding: 0;
}

.mega-subcategories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.main-nav .mega-subcategories a {
  color: #d8d8d8;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 7px 9px;
  font-size: 11px;
  letter-spacing: 1.3px;
  line-height: 1;
}

.main-nav .mega-subcategories a:hover {
  color: #ffffff;
  border-color: rgba(212,19,19,0.65);
  background: rgba(212,19,19,0.18);
}

.mega-link:hover {
  border-color: rgba(212,19,19,0.55);
  background: rgba(212,19,19,0.12);
  transform: translateY(-2px);
}

.mega-feature {
  position: relative;
  min-height: 268px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.mega-feature img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.mega-feature-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.88));
}

.mega-feature-copy span {
  color: #d41313;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mega-feature-copy h3 {
  color: #ffffff;
  font-family: Georgia, serif;
  font-size: 28px;
  margin: 8px 0;
}

.mega-feature-copy p {
  color: #d5d5d5;
  font-size: 14px;
  line-height: 1.6;
}

.nav-icons {
  display: flex;
  gap: 16px;
  font-size: 18px;
}

.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 12px;
  font-size: 24px;
}

.cart-icon {
  position: relative;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 22px;
}

.cart-icon span {
  position: absolute;
  top: -10px;
  right: -12px;
  background: #d41313;
  color: #ffffff;
  font-size: 11px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

/* HERO */

.hero {
  background:
    radial-gradient(circle at left, rgba(255,255,255,0.06), transparent 38%),
    linear-gradient(90deg, #0a0a0a 0%, #1e1e1e 58%, #101010 100%);
  padding: 40px 0 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  min-height: 720px;
}

.hero-copy {
  padding: 30px 30px 30px 0;
}

.eyebrow {
  color: #d41313;
  letter-spacing: 4px;
  font-size: 14px;
  margin-bottom: 22px;
  text-transform: uppercase;
  font-weight: bold;
}

.hero-copy h2 {
  font-family: Georgia, serif;
  font-size: clamp(56px, 8vw, 92px);
  line-height: 0.95;
  color: #f4f1ea;
  margin-bottom: 22px;
  font-weight: normal;
  text-transform: uppercase;
}

.hero-sub {
  color: #e3e3e3;
  line-height: 1.7;
  letter-spacing: 2px;
  font-size: 22px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-outline,
.whatsapp-btn,
.look-btn {
  transition: 0.3s ease;
}

.btn-primary {
  display: inline-block;
  background: #d41313;
  color: #ffffff;
  border: none;
  padding: 16px 34px;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-primary:hover {
  background: #a90d0d;
}

.btn-secondary {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.45);
  color: #ffffff;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: transparent;
}

.btn-secondary:hover {
  border-color: #d41313;
  color: #d41313;
}

.hero-slider {
  margin-top: 70px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  font-size: 20px;
}

.line {
  width: 70px;
  height: 3px;
  background: rgba(255,255,255,0.25);
}

.active-line {
  background: #d41313;
}

.hero-image {
  align-self: end;
}

.hero-image img {
  max-height: 760px;
  object-fit: cover;
  object-position: center top;
}

/* FEATURED */

.featured {
  background: #f3f0ea;
  color: #111111;
  padding: 52px 0 72px;
}

.alt-featured {
  background: #111111;
  color: #ffffff;
}

.section-top {
  text-align: center;
  color: #d41313;
  letter-spacing: 5px;
  font-size: 15px;
  margin-bottom: 14px;
  text-transform: uppercase;
  font-weight: bold;
}

.section-title {
  text-align: center;
  font-family: Georgia, serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: normal;
  text-transform: uppercase;
}

.section-line {
  width: 90px;
  height: 3px;
  background: #d41313;
  margin: 20px auto 28px;
}

.collection-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 18px;
}

.slider-btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(17,17,17,0.2);
  background: #111111;
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: 0.3s ease;
}

.slider-btn:hover {
  background: #d41313;
  border-color: #d41313;
}

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

.collection-slider {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #d41313 rgba(17,17,17,0.16);
  padding-bottom: 14px;
}

.collection-slider::-webkit-scrollbar {
  height: 8px;
}

.collection-slider::-webkit-scrollbar-track {
  background: rgba(17,17,17,0.16);
}

.collection-slider::-webkit-scrollbar-thumb {
  background: #d41313;
}

.look-card {
  position: relative;
  overflow: hidden;
  background: #ddd;
  min-height: 520px;
  flex: 0 0 calc((100% - 28px) / 3);
  scroll-snap-align: start;
}

.look-card img {
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.look-card:hover img {
  transform: scale(1.05);
}

.look-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78), rgba(0,0,0,0.08));
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.look-label {
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1.4;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.price {
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: bold;
}

.look-btn {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.6);
  color: #ffffff;
  padding: 12px 16px;
  font-size: 13px;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.look-btn:hover {
  background: #d41313;
  border-color: #d41313;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.home-category-grid {
  margin-top: 10px;
}

.category-card {
  min-height: 280px;
  color: #ffffff;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background: #111111;
  border: 1px solid rgba(255,255,255,0.12);
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.84), rgba(0,0,0,0.18)),
    var(--category-image);
  background-size: cover;
  background-position: center top;
  transition: 0.45s ease;
}

.category-card:hover::before {
  transform: scale(1.06);
}

.category-card span,
.category-card h3,
.category-card p {
  position: relative;
  z-index: 1;
}

.category-card span {
  color: #d41313;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.category-card h3 {
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.category-card p {
  color: #e8e8e8;
  line-height: 1.5;
}

.category-men {
  --category-image: url("images/men1.png");
}

.category-women {
  --category-image: url("images/women1.png");
}

.category-kids {
  --category-image: url("images/kids1.png");
}

.category-genz {
  --category-image: url("images/Genz1.png");
}

/* LOOKBOOK */

.lookbook-section {
  background: #0c0c0c;
  padding: 85px 0;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.lookbook-copy {
  background: #151515;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lookbook-copy h3 {
  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  margin-bottom: 18px;
}

.lookbook-copy p {
  color: #d6d6d6;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.lookbook-image {
  min-height: 520px;
  overflow: hidden;
}

.lookbook-image img {
  height: 100%;
  object-fit: cover;
}

.tall-image {
  min-height: 620px;
}

/* STORY ORDER */

.story-order {
  background:
    linear-gradient(90deg, #0e0e0e 0%, #151515 50%, #0c0c0c 100%);
  padding: 70px 0;
}

.story-order-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr 1fr;
  align-items: center;
  gap: 28px;
}

.red {
  color: #d41313;
}

.story-box h3,
.order-box h3 {
  font-family: Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-weight: normal;
}

.mini-line {
  width: 80px;
  height: 3px;
  background: #d41313;
  margin: 18px 0 22px;
}

.story-text {
  color: #d6d6d6;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.btn-outline {
  display: inline-block;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,0.5);
  color: #ffffff;
  font-size: 14px;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-outline:hover {
  border-color: #d41313;
  color: #d41313;
}

.story-model img {
  max-height: 520px;
  object-fit: contain;
  margin: 0 auto;
}

/* REVIEWS */

.reviews-section {
  background:
    linear-gradient(135deg, rgba(17,17,17,0.96), rgba(52,10,10,0.94)),
    #111111;
  color: #ffffff;
  padding: 72px 0 82px;
}

.reviews-section .section-title {
  max-width: 760px;
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.review-card {
  position: relative;
  min-height: 280px;
  padding: 34px 30px 30px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.055);
  box-shadow: 0 22px 45px rgba(0,0,0,0.18);
  overflow: hidden;
}

.review-card::before {
  content: "“";
  position: absolute;
  top: -30px;
  right: 24px;
  color: rgba(212,19,19,0.36);
  font-family: Georgia, serif;
  font-size: 150px;
  line-height: 1;
}

.review-card-featured {
  background: #f3f0ea;
  color: #111111;
  border-color: rgba(212,19,19,0.36);
  transform: translateY(-10px);
}

.review-stars {
  color: #d41313;
  font-size: 15px;
  letter-spacing: 4px;
  margin-bottom: 22px;
}

.review-card p {
  position: relative;
  z-index: 1;
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1.55;
  margin-bottom: 26px;
}

.review-card h4 {
  position: relative;
  z-index: 1;
  font-size: 15px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.review-card span {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: #d41313;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SIZE GUIDE */

.size-preview-section {
  background: #ffffff;
  color: #111111;
  padding: 74px 0;
}

.size-preview-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: center;
}

.size-preview-copy {
  max-width: 460px;
}

.size-preview-copy h2 {
  font-family: Georgia, serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.size-preview-copy > p {
  color: #3e3e3e;
  font-size: 18px;
  line-height: 1.75;
}

.size-fit-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.size-fit-notes span {
  border: 1px solid rgba(212,19,19,0.24);
  background: #f8f4ef;
  color: #111111;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.size-table-wrap {
  padding: 28px;
  background: #111111;
  box-shadow: 0 28px 60px rgba(17,17,17,0.16);
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  color: #ffffff;
  overflow: hidden;
}

.size-table caption {
  caption-side: top;
  color: #d41313;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-align: left;
  text-transform: uppercase;
  padding-bottom: 16px;
}

.size-table th,
.size-table td {
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 18px 16px;
  text-align: left;
}

.size-table th {
  background: rgba(212,19,19,0.95);
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.size-table td:first-child {
  color: #ffffff;
  font-weight: 800;
}

.size-table td {
  color: #dedede;
}

.size-table tr:last-child td {
  border-bottom: 0;
}

.size-link {
  margin-top: 22px;
}

/* NEWSLETTER */

.newsletter-section {
  background: #f3f0ea;
  color: #111111;
  padding: 78px 0 62px;
}

.newsletter-box {
  max-width: 980px;
  text-align: center;
}

.newsletter-copy {
  max-width: 760px;
  margin: 0 auto;
}

.newsletter-copy h2 {
  font-family: Georgia, serif;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.06;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.newsletter-copy > p:last-child {
  color: #444444;
  font-size: 17px;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: 720px;
  margin: 34px auto 28px;
  border: 1px solid rgba(17,17,17,0.16);
  background: #ffffff;
  box-shadow: 0 20px 42px rgba(17,17,17,0.09);
  overflow: hidden;
}

.newsletter-form input {
  min-width: 0;
  border: 0;
  padding: 20px 22px;
  color: #111111;
  font-size: 16px;
  outline: none;
}

.newsletter-form input:focus {
  box-shadow: inset 0 0 0 2px rgba(212,19,19,0.2);
}

.newsletter-form button {
  border: 0;
  background: #d41313;
  color: #ffffff;
  padding: 0 34px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.newsletter-form button:hover {
  background: #111111;
}

.luxury-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.luxury-socials a,
.policy-link-grid a {
  border: 1px solid rgba(17,17,17,0.14);
  color: #111111;
  background: rgba(255,255,255,0.55);
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.luxury-socials a:hover,
.policy-link-grid a:hover {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.policy-link-section {
  background: #111111;
  padding: 24px 0;
}

.policy-link-grid {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.policy-link-grid a {
  border-color: rgba(255,255,255,0.14);
  color: #ffffff;
  background: rgba(255,255,255,0.06);
}

.policy-link-grid a:hover {
  background: #d41313;
  border-color: #d41313;
}

/* FOUNDER */

.founder-section {
  background: #f3f0ea;
  color: #111111;
  padding: 64px 0;
}

.founder-content {
  max-width: 820px;
  text-align: center;
}

.founder-content h2 {
  font-family: Georgia, serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.founder-content p:last-child {
  color: #343434;
  font-size: 18px;
  line-height: 1.8;
}

/* ABOUT PAGE */

.about.page-section {
  background: #f3f0ea;
  color: #111111;
  padding: 96px 0 78px;
}

.about-content {
  max-width: 1080px;
}

.about-intro {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.tagline,
.about-card-kicker {
  color: #d41313;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.about-intro h2 {
  font-family: Georgia, serif;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: normal;
  text-transform: uppercase;
  margin: 12px 0 18px;
}

.about-intro p,
.about-detail-card p {
  color: #333333;
  font-size: 17px;
  line-height: 1.75;
}

.about-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-detail-card {
  background: #ffffff;
  border: 1px solid rgba(17,17,17,0.08);
  padding: 26px;
}

.about-detail-card h3 {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: normal;
  margin: 10px 0 12px;
}

/* FEATURES BAR */

.features-bar {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 26px 0;
}

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

.feature-item {
  padding: 12px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.feature-item:last-child {
  border-right: none;
}

.feature-item h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.feature-item p {
  color: #bcbcbc;
  font-size: 14px;
  line-height: 1.6;
}

/* CONTACT */

.contact-section {
  background: #f3f0ea;
  color: #111111;
  padding: 80px 0;
  text-align: center;
}

.contact-box {
  max-width: 760px;
}

.contact-box h3 {
  font-family: Georgia, serif;
  font-size: clamp(38px, 5vw, 64px);
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: normal;
}

.contact-box p {
  color: #444444;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.alt-featured .contact-box p {
  color: #d6d6d6;
}

.whatsapp-btn {
  width: 100%;
  background: #25D366;
  color: #ffffff;
  border: none;
  padding: 16px 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.whatsapp-btn:hover {
  background: #111111;
}

.social-icons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social-icons a {
  color: #111111;
  border: 1px solid rgba(0,0,0,0.18);
  padding: 12px 18px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}

.social-icons a:hover {
  background: #d41313;
  color: #ffffff;
  border-color: #d41313;
}

/* FOOTER */

.footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 32px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer h4 {
  color: #d41313;
  font-family: Georgia, serif;
  font-size: 26px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.footer p {
  color: #bcbcbc;
  line-height: 1.7;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .nav-icons {
    display: flex;
  }

  .lookbook-grid,
  .story-order-grid {
    grid-template-columns: 1fr;
  }

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

  .story-model {
    order: -1;
  }

  .look-card {
    flex-basis: calc((100% - 14px) / 2);
  }
}

@media (max-width: 900px) {
  .menu-btn {
    display: inline-flex;
  }

  .sidebar {
    display: block;
  }

  .main-nav {
    display: none;
  }

  .site-header {
    position: sticky;
  }

  .nav-wrap {
    padding: 14px 0;
    gap: 14px;
    justify-content: flex-start;
  }

  .brand {
    flex: 1;
    overflow: hidden;
  }

  .brand-text {
    min-width: 0;
    overflow: hidden;
  }

  .brand-text h1,
  .brand-text p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-icons {
    margin-left: auto;
  }

  .hero-grid,
  .look-grid,
  .about-detail-grid,
  .feature-grid,
  .detail-product-grid,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    padding-right: 0;
    padding-top: 50px;
  }

  .hero-sub {
    font-size: 17px;
  }

  .hero-slider {
    margin-top: 38px;
    font-size: 16px;
  }

  .hero-image img {
    max-height: none;
  }

  .page-hero {
    padding: 92px 0 54px;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(29px, 8.8vw, 40px);
    line-height: 1.08;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .page-hero p {
    font-size: 16px;
  }

  .featured,
  .alt-featured,
  .page-content,
  .product-detail-section {
    padding-top: 46px;
    padding-bottom: 56px;
  }

  .section-top {
    letter-spacing: 3px;
    font-size: 12px;
  }

  .section-title {
    font-size: clamp(24px, 9vw, 36px);
  }

  .collection-toolbar {
    justify-content: center;
    position: sticky;
    top: 78px;
    z-index: 2;
    pointer-events: none;
  }

  .slider-btn {
    pointer-events: auto;
    width: 42px;
    height: 42px;
    font-size: 28px;
  }

  .look-card,
  .lookbook-image,
  .tall-image {
    min-height: 480px;
  }

  .collection-slider {
    gap: 12px;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding-inline: 0;
    scroll-padding-inline: 0;
  }

  .collection-slider .look-card {
    flex-basis: min(76vw, 420px);
  }

  .look-overlay {
    padding: 20px;
  }

  .look-label {
    font-size: 15px;
    letter-spacing: 1.3px;
  }

  .look-btn {
    width: 100%;
    text-align: center;
  }

  .feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .feature-item:last-child {
    border-bottom: none;
  }

  .footer-grid {
    flex-direction: column;
  }

  table {
    min-width: 620px;
  }

  .size-table-wrap {
    overflow-x: auto;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .sidebar {
    width: calc(100% - 12px);
    padding: 34px 16px 20px;
    border-radius: 24px 24px 0 0;
  }

  .sidebar-nav {
    gap: 8px;
  }

  .sidebar-nav a {
    padding: 13px 11px;
    font-size: 12px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .brand-text h1 {
    font-size: 16px;
    letter-spacing: 1.2px;
  }

  .brand-text p {
    font-size: 8px;
    letter-spacing: 1.3px;
  }

  .hero-copy h2 {
    font-size: 44px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline,
  .whatsapp-btn {
    width: 100%;
    text-align: center;
  }

  .line {
    width: 42px;
  }

  .collection-toolbar {
    justify-content: center;
  }

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

  .category-card {
    min-height: 240px;
  }

  .look-card {
    flex-basis: 86%;
    min-height: 420px;
  }

  .lookbook-copy {
    padding: 30px 22px;
  }

  .featured,
  .alt-featured,
  .page-content,
  .product-detail-section {
    padding-top: 38px;
    padding-bottom: 46px;
  }

  .page-hero {
    padding: 72px 0 44px;
  }

  .collection-toolbar {
    top: 70px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .look-overlay {
    padding: 18px;
  }

  .cart-drawer {
    width: calc(100% - 12px);
    right: -100%;
    max-width: none;
  }
}

/* ================================
   RED FASHION MULTI-PAGE STYLES
================================ */

.page-hero {
  background:
    linear-gradient(rgba(5,5,5,0.82), rgba(5,5,5,0.82)),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 130px 0 80px;
  text-align: center;
}

.page-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(44px, 7vw, 82px);
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.page-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: #dddddd;
  font-size: 18px;
  line-height: 1.8;
}

.page-content {
  padding: 80px 0;
}

.product-detail-section {
  background: #f3f0ea;
  color: #111111;
  padding: 70px 0;
}

.detail-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.detail-product-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
}

.detail-product-card img {
  height: 430px;
  object-fit: cover;
  object-position: center top;
}

.detail-product-info {
  padding: 22px;
}

.product-category {
  color: #d41313;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.detail-product-info h3 {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: normal;
  margin-bottom: 10px;
}

.detail-price {
  color: #111111;
  font-weight: bold;
  margin-bottom: 16px;
}

.detail-product-info button {
  background: #d41313;
  color: #ffffff;
  border: none;
  padding: 13px 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.detail-product-info button:hover {
  background: #111111;
}

.simple-page-box {
  max-width: 900px;
  margin: 0 auto;
  background: #151515;
  color: #ffffff;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.08);
}

.simple-page-box h2 {
  font-family: Georgia, serif;
  font-size: 42px;
  margin-bottom: 20px;
}

.simple-page-box p {
  color: #d6d6d6;
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 17px;
}

.page-nav-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.page-nav-links a {
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 12px 18px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}

.page-nav-links a:hover {
  background: #d41313;
  border-color: #d41313;
}

@media (max-width: 700px) {
  .detail-product-grid {
    grid-template-columns: 1fr;
  }

  .detail-product-card img {
    height: 420px;
  }

  .simple-page-box {
    padding: 26px;
  }
}

/* ================================
   RED FASHION ORDER STATUS PAGE
================================ */

.order-status-hero {
  background:
    linear-gradient(rgba(5,5,5,0.82), rgba(5,5,5,0.82)),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center;
}

.order-status-section {
  background: #f3f0ea;
  color: #111111;
  padding: 90px 0;
}

.order-status-box {
  max-width: 850px;
  margin: 0 auto;
  background: #ffffff;
  padding: 45px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.order-status-box h2 {
  font-family: Georgia, serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.order-status-intro {
  color: #555555;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.order-status-form {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.order-status-form input {
  flex: 1;
  padding: 16px;
  border: 1px solid rgba(0,0,0,0.15);
  font-size: 16px;
  outline: none;
}

.order-status-form input:focus {
  border-color: #d41313;
}

.order-status-form button {
  background: #d41313;
  color: #ffffff;
  border: none;
  padding: 16px 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.order-status-form button:hover {
  background: #111111;
}

.order-result {
  background: #111111;
  color: #ffffff;
  padding: 26px;
  margin-bottom: 30px;
  border-left: 5px solid #d41313;
}

.order-result h3 {
  font-family: Georgia, serif;
  font-size: 28px;
  margin-bottom: 8px;
}

.order-result p {
  color: #dddddd;
  line-height: 1.7;
}

.status-processing {
  color: #f1c40f;
}

.status-ready {
  color: #3498db;
}

.status-delivered {
  color: #25D366;
}

.status-not-found {
  color: #ff6b6b;
}

.tracking-help {
  background: #f3f0ea;
  padding: 24px;
}

.tracking-help h3 {
  font-family: Georgia, serif;
  font-size: 28px;
  margin-bottom: 10px;
}

.tracking-help p {
  color: #555555;
  line-height: 1.7;
  margin-bottom: 18px;
}

.whatsapp-track-btn {
  display: inline-block;
  background: #25D366;
  color: #ffffff;
  padding: 14px 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.whatsapp-track-btn:hover {
  background: #111111;
}

@media (max-width: 700px) {
  .order-status-box {
    padding: 28px;
  }

  .order-status-form {
    flex-direction: column;
  }

  .order-status-form button {
    width: 100%;
  }
}

/* ================================
   RED FASHION NEWSLETTER SIGNUP
================================ */

.newsletter-signup-section {
  background:
    linear-gradient(rgba(5,5,5,0.86), rgba(5,5,5,0.86)),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.newsletter-signup-box {
  max-width: 850px;
}

.newsletter-signup-box h2 {
  font-family: Georgia, serif;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.05;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.newsletter-signup-box p {
  color: #dddddd;
  font-size: 18px;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 30px;
}

.newsletter-signup-form {
  display: flex;
  gap: 12px;
  max-width: 700px;
  margin: 35px auto 18px;
}

.newsletter-signup-form input {
  flex: 1;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.96);
  color: #111111;
  font-size: 16px;
  outline: none;
}

.newsletter-signup-form input:focus {
  border-color: #d41313;
}

.newsletter-signup-form button {
  background: #d41313;
  color: #ffffff;
  border: none;
  padding: 18px 34px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.newsletter-signup-form button:hover {
  background: #ffffff;
  color: #111111;
}

.newsletter-message {
  color: #25D366 !important;
  font-weight: bold;
  margin-top: 16px !important;
}

@media (max-width: 700px) {
  .newsletter-signup-form {
    flex-direction: column;
  }

  .newsletter-signup-form button {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card,
  .review-card-featured {
    min-height: auto;
    transform: none;
  }

  .review-card p {
    font-size: 20px;
  }

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

  .newsletter-form button {
    min-height: 56px;
  }

  .size-preview-grid {
    grid-template-columns: 1fr;
  }

  .size-preview-copy {
    max-width: none;
  }

  .size-table-wrap {
    overflow-x: auto;
    padding: 18px;
  }

  .size-table {
    min-width: 620px;
  }
}

/* FINAL MOBILE RESPONSIVE OVERRIDES */

@media (max-width: 900px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .nav-wrap {
    justify-content: flex-start;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
  }

  .brand-text {
    min-width: 0;
    overflow: hidden;
  }

  .brand-text h1,
  .brand-text p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .page-hero {
    padding: 72px 0 46px;
    overflow: hidden;
  }

  .page-hero .container {
    width: min(100% - 32px, 1200px);
    overflow: hidden;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(28px, 8.4vw, 38px);
    line-height: 1.12;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .page-hero p {
    max-width: 330px;
    font-size: 15px;
    line-height: 1.65;
    overflow-wrap: break-word;
  }

  .collection-slider {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding-inline: 0;
    scroll-padding-inline: 0;
  }
}

@media (max-width: 520px) {
  .brand-text h1 {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .brand-text p {
    font-size: 8px;
    letter-spacing: 1px;
  }

  .page-hero h1 {
    font-size: clamp(27px, 8vw, 33px);
  }
}
