@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&display=swap');

:root {
  --primary: #e50914;
  --primary-hover: #c40812;
  --highlight: #ffffff;
  --bg-main: #050505;
  --bg-card: #121212;
  --bg-card-hover: #1a1a1a;
  --text-main: #ffffff;
  --text-muted: #a3a3a3;
  --border: #262626;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --header-height: 98px;
  --announcement-height: 0px;
  --page-width: 1220px;
  --page-gutter: clamp(14px, 2.8vw, 34px);
  --shell-width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-width));
  --header-surface: rgba(5, 5, 5, 0.86);
  --mobile-nav-bg: rgba(5, 5, 5, 0.98);
  --section-alt-bg: #0f0f0f;
  --section-accent: #200204;
  --footer-bg: #000000;
  --hero-text: #ffffff;
  --hero-subtext: rgba(255, 255, 255, 0.82);
  --header-shadow: 0 20px 55px rgba(0, 0, 0, 0.24);
  --surface-1: rgba(255, 255, 255, 0.025);
  --surface-2: rgba(255, 255, 255, 0.05);
  --surface-border: rgba(255, 255, 255, 0.08);
  --surface-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --accent-glow: rgba(229, 9, 20, 0.14);
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

html[data-theme="light"] {
  color-scheme: light;
  --highlight: #050505;
  --bg-main: #f5f3ee;
  --bg-card: #ffffff;
  --bg-card-hover: #f0ece5;
  --text-main: #111111;
  --text-muted: #5f5a53;
  --border: #ddd6cc;
  --header-surface: rgba(255, 255, 255, 0.88);
  --mobile-nav-bg: rgba(255, 255, 255, 0.98);
  --section-alt-bg: #ece7df;
  --section-accent: rgba(229, 9, 20, 0.12);
  --footer-bg: #fffdf9;
  --hero-text: #ffffff;
  --hero-subtext: rgba(255, 255, 255, 0.86);
  --header-shadow: 0 16px 42px rgba(38, 26, 16, 0.12);
  --surface-1: rgba(255, 255, 255, 0.7);
  --surface-2: rgba(255, 255, 255, 0.9);
  --surface-border: rgba(90, 72, 54, 0.1);
  --surface-shadow: 0 24px 60px rgba(130, 105, 82, 0.12);
  --accent-glow: rgba(229, 9, 20, 0.1);
}

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

img,
svg {
  max-width: 100%;
}

a,
button,
.cart-icon,
.hamburger,
.product-card,
.theme-toggle {
  -webkit-tap-highlight-color: rgba(229, 9, 20, 0.22);
}

button,
input,
select,
textarea {
  font: inherit;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
  background-image:
    radial-gradient(circle at top center, rgba(229, 9, 20, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent 20%);
}

body > * {
  position: relative;
  z-index: 1;
}

body.has-fixed-marquee {
  --announcement-height: 38px;
}

html[data-theme="light"] body {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(245, 243, 238, 0.92));
}

html[data-theme="light"] .faq-item h3,
html[data-theme="light"] .content-card h1,
html[data-theme="light"] .content-card h2,
html[data-theme="light"] .content-card h3,
html[data-theme="light"] .content-card p,
html[data-theme="light"] .product-page h1,
html[data-theme="light"] .product-page h2,
html[data-theme="light"] .product-page h3,
html[data-theme="light"] .product-page p,
html[data-theme="light"] .product-page li,
html[data-theme="light"] .checkout-container h1,
html[data-theme="light"] .checkout-container h2,
html[data-theme="light"] .checkout-container h3,
html[data-theme="light"] .checkout-container p,
html[data-theme="light"] .thankyou-page h1,
html[data-theme="light"] .thankyou-page h2,
html[data-theme="light"] .thankyou-page p {
  color: var(--text-main) !important;
}

/* Typography */
h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* Section Title */
.section-title {
  text-align: center;
  padding: 0 2rem;
  margin: 0 auto;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: 'Cairo', sans-serif;
  line-height: 1.4;
  letter-spacing: normal;
  direction: rtl;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

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

/* Header */
header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--shell-width);
  background: var(--header-surface);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  min-height: var(--header-height);
  border-radius: 0 0 22px 22px;
  box-shadow: var(--header-shadow);
}

.logo a {
  display: flex;
  align-items: center;
}
.logo img {
  height: 65px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.15));
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.05);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: nowrap;
}

nav a {
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
  padding: 0.25rem 0.5rem;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
    padding: 1rem 3%;
  }
  
  nav ul {
    gap: 1rem;
  }
  
  nav a {
    font-size: 0.9rem;
    padding: 0.2rem 0.4rem;
  }
  
  .logo img {
    height: 50px;
  }
  
  .header-actions {
    gap: 1rem;
  }
}

nav a:hover {
  color: var(--primary);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

nav a:hover::after {
  width: 100%;
  left: 0;
}

.header-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
}

.theme-toggle:hover {
  border-color: rgba(229, 9, 20, 0.45);
  transform: translateY(-2px);
}

.theme-toggle-icon {
  font-size: 1rem;
  line-height: 1;
}

.theme-toggle-label {
  font-size: 0.88rem;
  font-weight: 700;
}

.cart-icon {
  position: relative;
  cursor: pointer;
  font-size: 1.5rem;
  transition: var(--transition);
}

.cart-icon:hover {
  color: var(--text-main);
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--text-main);
  color: var(--bg-main);
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
  height: auto;
  min-height: 70vh;
  margin-top: calc(var(--header-height) + var(--announcement-height));
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
}

.hero-image-wrapper {
  flex: 0 0 var(--shell-width);
  width: var(--shell-width);
  max-width: var(--shell-width);
  aspect-ratio: 16 / 9;
  min-height: clamp(280px, 50vw, 620px);
  margin-left: auto;
  margin-right: auto;
  padding: 14px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top right, rgba(229, 9, 20, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.26);
  position: relative;
  overflow: hidden;
}

.hero-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.hero-image-wrapper picture {
  display: block;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #101010;
  position: relative;
}

.hero-image-wrapper picture::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.42) 100%);
  pointer-events: none;
}

.hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.02) contrast(1.03);
  border-radius: 18px;
  transform: scale(1.01);
  transition: transform 0.65s ease;
}

.hero-image-wrapper:hover .hero-img {
  transform: scale(1.04);
}

/* FAQ / Terms framed content */
#faq-content > div,
#terms-content > div {
  padding: 14px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top right, rgba(229, 9, 20, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.26);
  position: relative;
  overflow: hidden;
}

#faq-content > div::before,
#terms-content > div::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

#faq-content .faq-item,
#terms-content .terms-intro,
#terms-content .terms-item {
  position: relative;
  z-index: 1;
  border-color: rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

html[data-theme="light"] #faq-content > div,
html[data-theme="light"] #terms-content > div {
  background:
    radial-gradient(circle at top right, rgba(229, 9, 20, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.4));
  box-shadow: 0 24px 46px rgba(130, 105, 82, 0.14);
}

html[data-theme="light"] #faq-content .faq-item,
html[data-theme="light"] #terms-content .terms-intro,
html[data-theme="light"] #terms-content .terms-item {
  border-color: rgba(90, 72, 54, 0.12) !important;
}

/* Marquee Bar */
.marquee-box {
  width: var(--shell-width);
  overflow: hidden;
  background: linear-gradient(90deg, #b90a13 0%, #e50914 32%, #ff3b2f 50%, #e50914 68%, #b90a13 100%) !important;
  padding: 0;
  position: fixed;
  top: var(--header-height);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--announcement-height);
  z-index: 999;
  border-radius: 0 0 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2), 0 2px 0 rgba(255, 255, 255, 0.08) inset;
  isolation: isolate;
}

.marquee-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.02));
  pointer-events: none;
  z-index: -1;
}

.marquee-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 14%, transparent 86%, rgba(0, 0, 0, 0.24));
  pointer-events: none;
  z-index: 0;
}

.marquee-text {
  color: white !important;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  white-space: nowrap;
  min-width: auto;
  text-align: center;
  padding: 0.2rem 0.9rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.28);
  position: relative;
  z-index: 1;
}

@keyframes scrollText {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1;
}

.hero-content {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: min(800px, calc(100% - 2rem));
  max-width: 100%;
  margin: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 1rem;
  z-index: 1;
  color: var(--hero-text);
  pointer-events: none;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
  animation: slideUp 1s ease-out;
}

.hero p {
  font-size: 1.2rem;
  color: var(--hero-subtext);
  margin-bottom: 2rem;
  animation: slideUp 1.2s ease-out;
}

.btn {
  display: inline-block;
  padding: 1.1rem 2.8rem;
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
  border: none !important;
  box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
  cursor: pointer;
  animation: slideUp 1.4s ease-out;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  background: var(--primary-hover) !important;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 30px rgba(229, 9, 20, 0.6);
}

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

/* Main Sections */
section:not(.hero) {
  padding: 4rem 5%;
  width: var(--shell-width);
  margin: 0 auto;
  position: relative;
}

/* Home page product section spacing/alignment */
#hoodies {
  padding-top: 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 50%;
  transform: translateX(50%);
  width: 60px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Product Grid */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: start;
}



.product-card {
  background:
    linear-gradient(180deg, var(--surface-2), rgba(255, 255, 255, 0.01)),
    var(--bg-card);
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  width: 100%;
  max-width: 320px;
  flex: 0 1 320px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.2);
  border-color: rgba(229, 9, 20, 0.2);
}

.product-img-container {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

/* Standardized Image Sizes for Consistency */
.img-standard-main {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: center;
}

.img-standard-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.img-standard-admin {
  width: 50px;
  height: 50px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}

/* Ensure all product images maintain aspect ratio */
.product-image-large img,
.product-image-section img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Gallery thumbnail standardization */
.gallery-thumb img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  object-position: center;
}

.product-card:hover .product-img {
  transform: scale(1.08); /* slight zoom on hover */
}

.product-overlay {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  transition: var(--transition);
  opacity: 0;
}

.product-card:hover .product-overlay {
  bottom: 0;
  opacity: 1;
}

.btn-add-cart {
  background: var(--text-main);
  color: var(--bg-main);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  transform: translateY(20px);
}

.product-card:hover .btn-add-cart {
  transform: translateY(0);
}

.btn-add-cart:hover {
  background: var(--primary);
  color: white;
}

.product-info {
  padding: 1.5rem;
  text-align: right;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product-category {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
  min-height: 1.4em;
}

.product-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.45;
  min-height: 3.2em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 800;
  margin-top: auto;
  direction: ltr;
  unicode-bidi: isolate;
  white-space: nowrap;
}

/* Home Drop Guide */
.home-drop-guide {
  background:
    radial-gradient(circle at top right, var(--accent-glow), transparent 34%),
    linear-gradient(180deg, var(--surface-2), rgba(255, 255, 255, 0.015)),
    var(--bg-card);
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  box-shadow: var(--surface-shadow);
}

.home-drop-shell {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.home-drop-copy {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.home-drop-title {
  margin-bottom: 1rem;
}

.home-drop-lead {
  color: var(--text-muted);
  font-size: 1.04rem;
  line-height: 1.9;
}

.home-drop-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-step {
  min-height: 210px;
  padding: 1.5rem;
  border: 1px solid var(--surface-border);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--surface-2), rgba(255, 255, 255, 0.02));
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-step:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 9, 20, 0.28);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.home-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: rgba(229, 9, 20, 0.14);
  color: var(--primary);
  font-weight: 800;
}

.home-step h3 {
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
}

.home-step p {
  color: var(--text-muted);
  line-height: 1.75;
}

/* Hoodie Story */
.hoodie-story {
  position: relative;
  padding: 2rem 5% 5rem;
  background:
    radial-gradient(circle at top right, var(--accent-glow), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.04), transparent 24%),
    linear-gradient(180deg, var(--surface-1), transparent 80%);
  border: 1px solid var(--surface-border);
  border-radius: 32px;
  box-shadow: var(--surface-shadow);
}

.story-shell {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}

.story-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.story-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-title {
  margin-bottom: 1.2rem;
}

.story-lead {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.story-highlight-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  align-items: center;
  margin: 0 auto 2.5rem;
  padding: 1.6rem 1.8rem;
  max-width: 900px;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.18), var(--surface-2));
  border: 1px solid var(--surface-border);
  border-radius: 24px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
}

.story-highlight-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.24);
  color: #fff;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.story-highlight-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.story-highlight-card p {
  color: var(--text-muted);
  line-height: 1.85;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.25rem;
  padding: 1.5rem;
  background:
    linear-gradient(180deg, var(--surface-2), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), transparent 38%);
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
}

.feature-split-reverse .feature-visual {
  order: 2;
}

.feature-split-reverse .feature-copy {
  order: 1;
}

.feature-visual {
  position: relative;
}

.feature-visual::after {
  content: '';
  position: absolute;
  inset: auto 8% -24px auto;
  width: 58%;
  height: 58%;
  background: rgba(229, 9, 20, 0.18);
  filter: blur(45px);
  z-index: 0;
}

.feature-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
}

.feature-copy {
  position: relative;
  z-index: 1;
}

.feature-tag {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: #ffb6bb;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-copy h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1.3;
}

.feature-copy p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.1rem;
}

.feature-points {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.feature-points li {
  position: relative;
  padding-right: 1.5rem;
  color: var(--text-main);
  line-height: 1.7;
}

.feature-points li::before {
  content: '';
  position: absolute;
  top: 0.7rem;
  right: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 14px rgba(229, 9, 20, 0.6);
}

/* Video Showcase */
.video-showcase {
  padding: 2rem 5% 5rem;
  background:
    linear-gradient(180deg, var(--surface-1), transparent 75%),
    radial-gradient(circle at top left, var(--accent-glow), transparent 30%);
  border: 1px solid var(--surface-border);
  border-radius: 32px;
  box-shadow: var(--surface-shadow);
}

.video-showcase-shell {
  max-width: 1120px;
  margin: 0 auto;
}

.video-showcase-copy {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.video-title {
  margin-bottom: 1.2rem;
}

.video-lead {
  color: var(--text-muted);
  font-size: 1.04rem;
  line-height: 1.9;
}

.video-frame-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--surface-border);
  background: #000;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.video-frame-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%);
  z-index: 1;
}

.video-frame-wrap iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

/* Notifications Container */
#notification-container {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.notification {
  background: var(--bg-card);
  border-left: 4px solid var(--primary);
  color: var(--text-main);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: slideInLeft 0.3s ease-out forwards;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

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

/* Testimonials */
.testimonials {
  background:
    radial-gradient(circle at 100% 0%, var(--section-accent) 0%, transparent 42%),
    radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.04), transparent 26%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.88), rgba(14, 14, 14, 0.98));
  border: 1px solid var(--surface-border);
  border-radius: 32px;
  box-shadow: var(--surface-shadow);
  overflow: hidden;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1.2rem;
}

.testimonial-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(15, 15, 15, 0.84);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.testimonial-card::before {
  content: '”';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.15);
  font-family: serif;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: normal;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  line-height: 1.9;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  z-index: 1;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.2), rgba(255, 255, 255, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--primary);
  font-size: 1.2rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.author-info h4 {
  margin: 0;
  font-size: 1rem;
}

.author-info p {
  margin-top: 0.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.testimonial-card::before {
  content: "\201D";
  top: -16px;
  right: 22px;
  font-size: 5.4rem;
  color: rgba(255, 255, 255, 0.11);
}

.testimonial-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.1), transparent 34%);
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 9, 20, 0.22);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.24);
}

.testimonials-cta {
  margin-top: 2.5rem;
  text-align: center;
}

html[data-theme="light"] .testimonials {
  background:
    radial-gradient(circle at 100% 0%, rgba(229, 9, 20, 0.08) 0%, transparent 42%),
    radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.45), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 241, 235, 0.98));
}

html[data-theme="light"] .testimonial-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 244, 238, 0.95)),
    #ffffff;
  border-color: rgba(90, 72, 54, 0.1);
  box-shadow: 0 18px 42px rgba(130, 105, 82, 0.12);
}

html[data-theme="light"] .testimonial-card::before {
  color: rgba(17, 17, 17, 0.08);
}

.store-features {
  border-radius: 28px;
  box-shadow: var(--surface-shadow);
  background:
    linear-gradient(180deg, var(--surface-2), transparent),
    var(--bg-card) !important;
  border: 1px solid var(--surface-border) !important;
}

.store-features h3 {
  color: var(--text-main) !important;
}

.store-features p {
  color: var(--text-muted) !important;
}

/* Footer */
footer {
  background: var(--footer-bg);
  padding: 4rem 5% 2rem;
  border-top: 2px solid var(--border);
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-width));
  margin: 0 auto 2rem;
  border-radius: 28px;
  box-shadow: var(--surface-shadow);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-col p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-right: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.8rem;
  color: var(--text-main);
  transition: var(--transition);
}
.hamburger:hover { color: var(--primary); }

/* Responsive - Mobile Optimizations */
@media (max-width: 768px) {
  :root {
    --header-height: 96px;
  }

  .hamburger {
    display: block;
    order: 3; /* Move hamburger to right */
  }

  header {
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    order: 2; /* Center the logo */
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .logo img {
    height: 70px !important; /* Make logo bigger on mobile */
    width: auto;
  }

  .header-actions {
    order: 1; /* Move cart to left */
  }

  .theme-toggle {
    padding: 0.55rem 0.8rem;
    gap: 0.45rem;
  }

  .theme-toggle-label {
    font-size: 0.8rem;
  }
  
  nav ul {
    display: flex; 
    flex-direction: column;
    position: absolute;
    top: calc(var(--header-height) + var(--announcement-height));
    left: 0;
    width: 100%;
    background: var(--mobile-nav-bg);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    text-align: center;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all 0.3s ease;
  }
  
  nav ul.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  
  nav ul li {
    margin: 10px 0;
  }

  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .marquee-box {
    border-radius: 0;
  }

  .marquee-text {
    font-size: 0.78rem;
    line-height: 1.2;
    white-space: normal;
    padding: 0.2rem 0.65rem;
  }
  
  .hero p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .section-title {
    font-size: 1.5rem;
    padding: 0 1rem;
  }

  /* Product Grid Mobile - Improved */
  .product-grid {
    gap: 1.2rem;
    padding: 0 1rem;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
  }

  .product-card {
    max-width: 280px;
    flex: 0 1 280px;
    margin: 0 auto;
  }

  .product-info {
    padding: 1rem;
    text-align: center;
  }

  .product-title {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .product-price {
    font-size: 1.1rem;
    text-align: center;
  }

  .product-category {
    text-align: center;
  }

  /* Make product cards clickable on mobile */
  .product-overlay {
    display: none !important;
    pointer-events: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  /* Add mobile-friendly click hint */
  .product-card::after {
    content: 'اضغط للتفاصيل';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(229, 9, 20, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 5;
  }

  .product-card:hover::after {
    opacity: 1;
  }

  .product-card:hover .product-img {
    transform: none; /* Remove zoom on mobile */
  }

  /* Ensure product cards are clickable on mobile */
  .product-card {
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative;
    touch-action: manipulation;
  }

  .product-card a {
    pointer-events: auto !important;
  }

  /* Add visual feedback for touch */
  .product-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }

  .home-drop-guide {
    padding: 2.5rem 4%;
    border-radius: 22px;
  }

  .home-drop-lead {
    font-size: 0.96rem;
  }

  .home-drop-steps {
    grid-template-columns: 1fr;
  }

  .home-step {
    min-height: auto;
    padding: 1.2rem;
  }

  /* Hero Section Mobile */
  .hero {
    min-height: 0;
    margin-bottom: 2rem;
  }

  .page-hero {
    min-height: 0;
    align-items: flex-start;
  }

  .hero-image-wrapper {
    padding: 10px;
    border-radius: 20px;
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  #faq-content > div,
  #terms-content > div {
    padding: 10px;
    border-radius: 20px;
  }

  .hero-image-wrapper picture {
    border-radius: 14px;
  }

  .hero-img {
    border-radius: 14px;
  }

  .page-hero .hero-img {
    min-height: 0;
  }

  #faq-content,
  #terms-content {
    padding-top: 2rem !important;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  /* Footer Mobile */
  footer {
    padding: 2rem 3% 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-col h3 {
    font-size: 1.1rem;
  }
}

/* Extra Small Mobile - Under 480px */
@media (max-width: 480px) {
  .product-grid {
    gap: 1rem;
    padding: 0 0.5rem;
    justify-content: center;
    align-items: center;
  }

  .product-card {
    max-width: 250px;
    flex: 0 1 250px;
    margin: 0 auto;
  }

  .product-info {
    padding: 0.8rem;
  }

  .product-title {
    font-size: 0.95rem;
  }

  .product-price {
    font-size: 1rem;
  }

  .product-category {
    font-size: 0.8rem;
  }

  .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }

  .hoodie-story {
    padding: 1rem 4% 4rem;
  }

  .story-intro {
    margin-bottom: 2rem;
  }

  .story-lead {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .story-highlight-card,
  .feature-split {
    grid-template-columns: 1fr;
  }

  .story-highlight-card {
    padding: 1.25rem;
    gap: 1rem;
  }

  .story-highlight-number {
    min-height: 96px;
    font-size: 2.6rem;
  }

  .feature-split {
    gap: 1.4rem;
    padding: 1rem;
    border-radius: 22px;
  }

  .feature-split-reverse .feature-visual,
  .feature-split-reverse .feature-copy {
    order: initial;
  }

  .feature-visual img {
    min-height: 240px;
  }

  .feature-copy h3 {
    font-size: 1.45rem;
  }

  .video-showcase {
    padding: 1rem 4% 4rem;
  }

  .video-lead {
    font-size: 0.96rem;
  }

  .video-frame-wrap {
    border-radius: 20px;
  }

  /* Header Mobile */
  header {
    min-height: 60px;
    padding: 0.8rem 3%;
  }

  .logo img {
    height: 45px;
  }

  /* Product Page Mobile */
  .product-page {
    padding: 80px 3% 30px;
    flex-direction: column;
    gap: 2rem;
  }

  .product-details h1 {
    font-size: 1.6rem;
  }

  .product-details .price {
    font-size: 1.4rem;
  }

  .product-details .desc {
    font-size: 0.95rem;
  }

  /* Gallery Mobile */
  .gallery-thumb img {
    width: 60px;
    height: 60px;
  }

  /* Notifications Mobile */
  #notification-container {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
  }

  .notification {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  /* Checkout Mobile */
  .checkout-page {
    padding: 100px 3% 30px;
  }

  .checkout-container {
    padding: 1.5rem;
  }

  .form-input {
    padding: 12px;
    font-size: 16px; /* Prevents iOS zoom */
  }

  /* Store Features Mobile */
  .store-features {
    padding: 2rem 3%;
  }

  .store-features > div {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .feature-item h3 {
    font-size: 1rem;
  }

  .feature-item p {
    font-size: 0.8rem;
  }

  /* Modal Mobile */
  .modal-content {
    padding: 1.5rem;
    margin: 1rem;
    width: calc(100% - 2rem);
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .product-grid {
    gap: 0.75rem;
  }

  .product-img-container {
    aspect-ratio: 1/1;
  }

  .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }

  .store-features > div {
    grid-template-columns: 1fr;
  }

  .gallery-thumb img {
    width: 50px;
    height: 50px;
  }
}

/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: var(--bg-card);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  width: 90%;
  max-width: 500px;
  position: relative;
  text-align: right;
  animation: slideUp 0.3s ease-out;
}

.close-modal {
  position: absolute;
  top: 15px;
  left: 20px;
  color: var(--text-muted);
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

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

.modal-content h2 {
  margin-bottom: 1.5rem;
  color: var(--primary);
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

.form-input {
  width: 100%;
  padding: 12px;
  margin-bottom: 1rem;
  background-color: var(--bg-main);
  border: 1px solid var(--border);
  color: var(--text-main);
  border-radius: 6px;
  font-family: 'Cairo', sans-serif;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
}

/* WhatsApp Floating Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #e50914;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(229, 9, 20, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  text-decoration: none;
}

.whatsapp-button:hover {
  background-color: #c40812;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(229, 9, 20, 0.4);
}

.whatsapp-button svg {
  width: 28px;
  height: 28px;
}

.back-to-top-button {
  position: fixed;
  right: 20px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(229, 9, 20, 0.34);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.92);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
  z-index: 1001;
}

.back-to-top-button.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top-button:hover {
  background: #c40812;
  transform: translateY(-2px) scale(1.04);
}

.back-to-top-button span {
  transform: translateY(-1px);
}

@supports (content-visibility: auto) {
  .home-drop-guide,
  .store-features,
  .product-story,
  .product-video-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 720px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Mobile polish overrides */
@media (max-width: 768px) {
  :root {
    --header-height: 82px;
    --page-gutter: clamp(10px, 3vw, 18px);
  }

  body.has-fixed-marquee {
    --announcement-height: 34px;
  }

  header {
    min-height: var(--header-height);
    padding: 0.65rem 0.85rem;
    flex-wrap: nowrap;
    gap: 0.65rem;
    border-radius: 0 0 20px 20px;
  }

  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 3;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    font-size: 1.65rem;
    line-height: 1;
  }

  .logo {
    order: 2;
    flex: 1 1 auto;
    min-width: 0;
  }

  .logo img {
    height: 54px !important;
    max-width: 132px;
    object-fit: contain;
  }

  .header-actions {
    order: 1;
    flex: 0 0 auto;
    gap: 0.55rem;
  }

  .cart-icon svg {
    width: 26px;
    height: 26px;
  }

  .theme-toggle {
    min-height: 42px;
    padding: 0.48rem 0.62rem;
    gap: 0.35rem;
  }

  .theme-toggle-label {
    font-size: 0.78rem;
  }

  .theme-toggle-icon {
    font-size: 0.95rem;
  }

  nav ul {
    top: calc(var(--header-height) + var(--announcement-height));
    border-radius: 0 0 18px 18px;
    padding: 0.75rem 0 1rem;
  }

  nav ul li {
    margin: 0.45rem 0;
  }

  .marquee-box {
    width: var(--shell-width);
    height: var(--announcement-height);
    border-radius: 0 0 12px 12px;
  }

  .marquee-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 0.7rem;
    font-size: 0.78rem;
  }

  .hero {
    margin-top: calc(var(--header-height) + var(--announcement-height) + 0.75rem);
    margin-bottom: 1.5rem;
  }

  .hero-image-wrapper {
    aspect-ratio: 16 / 10;
    padding: 8px;
    border-radius: 18px;
  }

  .hero-image-wrapper picture {
    border-radius: 12px;
  }

  .hero-img {
    border-radius: 12px;
    transform: none;
  }

  .hero-image-wrapper:hover .hero-img {
    transform: none;
  }

  section:not(.hero) {
    padding: 2.5rem 4%;
  }

  #hoodies {
    padding-top: 1rem;
  }

  .section-title {
    margin-bottom: 1.4rem;
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .product-grid {
    width: 100%;
    gap: 1.35rem;
    padding: 0;
    justify-content: center;
  }

  #hoodies-container.product-grid,
  #tshirts-container.product-grid {
    grid-template-columns: minmax(0, min(100%, 330px)) !important;
    gap: 1.35rem !important;
    justify-items: center;
  }

  #tshirts-collection.tshirts-collection {
    padding: calc(var(--header-height) + var(--announcement-height) + 1rem) var(--page-gutter) 2.5rem !important;
    min-height: auto !important;
    justify-content: flex-start !important;
  }

  .tshirt-feature-wrap {
    width: var(--shell-width);
    max-width: 680px;
    margin-bottom: 1.5rem;
    padding: 8px;
    border-radius: 18px;
  }

  .tshirt-feature-frame {
    border-radius: 12px;
  }

  .tshirt-feature-img {
    aspect-ratio: 16 / 10;
  }

  .product-card {
    flex: 0 1 min(100%, 330px);
    max-width: min(100%, 330px);
    border-radius: 14px;
  }

  .product-img-container {
    aspect-ratio: 4 / 5;
  }

  .product-info {
    min-height: 140px;
    padding: 1rem 1.1rem;
  }

  .product-title {
    min-height: 3em;
    font-size: 1rem;
  }

  .product-price {
    font-size: 1.15rem;
  }

  .home-drop-guide,
  .store-features {
    padding: 2rem 4% !important;
    border-radius: 18px;
  }

  footer {
    padding: 2rem 4% 1.25rem;
    border-radius: 20px;
    margin-bottom: 1rem;
  }

  .whatsapp-button {
    bottom: 88px;
    left: 16px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-button svg {
    width: 24px;
    height: 24px;
  }

  .back-to-top-button {
    right: 16px;
    bottom: 88px;
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 76px;
  }

  body.has-fixed-marquee {
    --announcement-height: 32px;
  }

  header {
    padding: 0.55rem 0.7rem;
    gap: 0.45rem;
  }

  .hamburger {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }

  .logo img {
    height: 48px !important;
    max-width: 118px;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .theme-toggle {
    min-height: 38px;
    padding: 0.4rem 0.52rem;
  }

  .theme-toggle-label {
    font-size: 0.72rem;
  }

  .cart-icon svg {
    width: 24px;
    height: 24px;
  }

  .hero {
    margin-top: calc(var(--header-height) + var(--announcement-height) + 0.65rem);
    margin-bottom: 1.15rem;
  }

  .hero-image-wrapper {
    aspect-ratio: 16 / 11;
    padding: 6px;
    border-radius: 16px;
  }

  section:not(.hero) {
    padding: 2.1rem 4%;
  }

  .product-card {
    flex-basis: min(100%, 310px);
    max-width: min(100%, 310px);
  }

  #hoodies-container.product-grid,
  #tshirts-container.product-grid {
    grid-template-columns: minmax(0, min(100%, 310px)) !important;
  }

  #tshirts-collection.tshirts-collection {
    padding-top: calc(var(--header-height) + var(--announcement-height) + 0.75rem) !important;
  }

  .tshirt-feature-wrap {
    margin-bottom: 1.25rem;
    padding: 6px;
    border-radius: 16px;
  }

  .product-img-container {
    aspect-ratio: 4 / 5;
  }

  .product-info {
    min-height: 132px;
  }

  .whatsapp-button {
    bottom: 76px;
    left: 14px;
    width: 50px;
    height: 50px;
  }

  .back-to-top-button {
    right: 14px;
    bottom: 76px;
    width: 46px;
    height: 46px;
  }
}
