/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1a1a1a;
  --bg-modal: rgba(10, 10, 10, 0.95);
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --accent-gold: #c9a84c;
  --accent-gold-light: #e4c76b;
  --accent-red: #d42c2c;
  --border-color: #222222;
  --border-light: #333333;
  --gradient-gold: linear-gradient(135deg, #c9a84c 0%, #f0d78c 50%, #c9a84c 100%);
  --gradient-dark: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 8px 40px rgba(201, 168, 76, 0.15);
  --shadow-modal: 0 25px 80px rgba(0, 0, 0, 0.7);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;
  --container-width: 1320px;
  --header-height: 70px;
  --topbar-height: 38px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-primary);
  background: none;
}

input, select, textarea {
  font-family: var(--font-primary);
  outline: none;
  border: none;
}

::selection {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--bg-secondary);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
}

.topbar__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.topbar__item svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-gold);
}

.topbar__marquee {
  position: absolute;
  width: 100%;
  animation: marquee 30s linear infinite;
  display: flex;
  gap: 60px;
  white-space: nowrap;
}

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

/* ===== HEADER / NAV ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  height: var(--header-height);
  transition: all var(--transition-smooth);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  text-transform: uppercase;
  flex-shrink: 0;
}

.header__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--bg-primary);
  font-weight: 900;
}

.header__logo span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-link {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--text-primary);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width var(--transition-smooth);
  border-radius: 2px;
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%;
}

.header__nav-link--highlight {
  color: var(--accent-gold);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  position: relative;
}

.header__action-btn:hover {
  color: var(--text-primary);
  background: var(--bg-card);
}

.header__action-btn svg {
  width: 20px;
  height: 20px;
}

.header__cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--accent-gold);
  color: var(--bg-primary);
  font-size: 0.65rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__instagram {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  letter-spacing: 0.3px;
}

.header__instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
}

.header__instagram svg {
  width: 18px;
  height: 18px;
}

/* Mobile Menu Toggle */
.header__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.header__mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 75vh;
  min-height: 500px;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.7) 100%);
}

.hero__gradient-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(212,44,44,0.1) 0%, transparent 40%),
    linear-gradient(180deg, var(--bg-primary) 0%, #0d0d0d 50%, var(--bg-primary) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-xl);
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero__title-accent {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero__cta {
  display: flex;
  gap: 16px;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-smooth);
}

.btn--primary {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.btn--primary:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn--outline {
  border: 2px solid var(--border-light);
  color: var(--text-primary);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* Hero floating elements */
.hero__floating {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  gap: 20px;
  opacity: 0.8;
}

.hero__floating-card {
  width: 200px;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  animation: float 6s ease-in-out infinite;
  border: 1px solid var(--border-color);
}

.hero__floating-card:nth-child(2) {
  animation-delay: -2s;
  margin-top: 40px;
}

.hero__floating-card:nth-child(3) {
  animation-delay: -4s;
  margin-top: -20px;
}

.hero__floating-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ===== FEATURES BAR ===== */
.features-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}

.features-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.features-bar__item {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.features-bar__icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.features-bar__icon svg {
  width: 22px;
  height: 22px;
  fill: var(--accent-gold);
}

.features-bar__text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.features-bar__text span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ===== SECTION HEADER ===== */
.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--bg-secondary);
}

.section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.section__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section__title-accent {
  color: var(--accent-gold);
}

.section__subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.section__view-all {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.section__view-all:hover {
  gap: 10px;
}

/* ===== CATEGORY NAV TABS ===== */
.category-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

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

.category-nav__btn {
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  white-space: nowrap;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-nav__btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.category-nav__btn.active {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
}

/* ===== PRODUCT GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all var(--transition-smooth);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  border-color: var(--border-light);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card__badge--new {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

.product-card__badge--hot {
  background: var(--accent-red);
  color: white;
}

.product-card__badge--retro {
  background: #8B4513;
  color: white;
}

.product-card__badge--special {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.product-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  background: #0d0d0d;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.product-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.product-card__image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.85;
}

.product-card__image-placeholder span {
  position: relative;
  z-index: 1;
  font-size: 4rem;
}

.product-card:hover .product-card__image img {
  transform: scale(1.08);
}

.product-card__quick-view {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  transform: translateY(100%);
  transition: transform var(--transition-smooth);
  display: flex;
  justify-content: center;
}

.product-card:hover .product-card__quick-view {
  transform: translateY(0);
}

.product-card__quick-view-btn {
  padding: 8px 20px;
  background: var(--accent-gold);
  color: var(--bg-primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.product-card__quick-view-btn:hover {
  background: var(--accent-gold-light);
}

.product-card__info {
  padding: 16px;
}

.product-card__name {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card__variant {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.product-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-card__price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.product-card__sizes {
  display: flex;
  gap: 4px;
}

.product-card__size {
  font-size: 0.62rem;
  color: var(--text-muted);
  padding: 2px 5px;
  border: 1px solid var(--border-color);
  border-radius: 3px;
}

.product-card__cart-btn {
  width: 36px;
  height: 36px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.product-card__cart-btn:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-primary);
}

.product-card__cart-btn svg {
  width: 16px;
  height: 16px;
}

/* ===== PRODUCT MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-modal);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-modal);
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition-bounce);
  position: relative;
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  z-index: 10;
  transition: all var(--transition-fast);
  font-size: 1.2rem;
}

.modal__close:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: white;
}

.modal__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.modal__image {
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
}

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

.modal__image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
}

.modal__image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.85;
}

.modal__image-placeholder span {
  position: relative;
  z-index: 1;
}

.modal__details {
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.modal__category-badge {
  display: inline-flex;
  padding: 4px 12px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-xl);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.modal__variant {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.modal__price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 24px;
}

.modal__divider {
  height: 1px;
  background: var(--border-color);
  margin: 20px 0;
}

/* Form Elements */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.88rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

/* Size Selector */
.size-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.size-option {
  width: 48px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.size-option:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.size-option.selected {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-primary);
}

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

/* Instagram Order Button */
.btn--instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  margin-top: 8px;
}

.btn--instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(225, 48, 108, 0.4);
}

.btn--gold {
  background: var(--gradient-gold);
  color: var(--bg-primary);
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  margin-top: 8px;
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-modal);
  z-index: 3000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay__inner {
  width: 100%;
  max-width: 700px;
  padding: 0 24px;
}

.search-overlay__input-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  margin-bottom: 24px;
}

.search-overlay__input-wrap svg {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.search-overlay__input {
  flex: 1;
  background: none;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.search-overlay__close {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 6px 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.search-overlay__results {
  max-height: 50vh;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.search-result-item:hover {
  background: var(--bg-card);
}

.search-result-item__image {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #0d0d0d;
  flex-shrink: 0;
}

.search-result-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-item__info {
  flex: 1;
}

.search-result-item__name {
  font-size: 0.88rem;
  font-weight: 600;
}

.search-result-item__category {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.search-result-item__price {
  font-weight: 700;
  color: var(--accent-gold);
}

/* ===== INSTAGRAM CTA SECTION ===== */
.instagram-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(240,148,51,0.1) 0%, rgba(220,39,67,0.1) 50%, rgba(188,24,136,0.1) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.instagram-cta__title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.instagram-cta__text {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.instagram-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  border-radius: var(--radius-xl);
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.instagram-cta__btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(225, 48, 108, 0.4);
}

.instagram-cta__btn svg {
  width: 24px;
  height: 24px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  margin-bottom: 48px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer__brand-name span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__brand-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.footer__social-link:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__col-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.footer__links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer__bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer__payments {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--accent-gold);
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

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

.back-to-top:hover {
  transform: translateY(-4px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ===== LOADING SPINNER ===== */
.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
}

.loading-spinner__circle {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-color);
  border-top-color: var(--accent-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== SHOW MORE BUTTON ===== */
.show-more-wrap {
  text-align: center;
  margin-top: 40px;
}

.show-more-btn {
  padding: 14px 40px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-fast);
  background: transparent;
}

.show-more-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NOTIFICATION TOAST ===== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-card);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5000;
  opacity: 0;
  transition: all var(--transition-bounce);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast__icon {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.toast__message {
  font-size: 0.88rem;
  font-weight: 500;
}

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
}

.empty-state__icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.empty-state__text {
  font-size: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__floating {
    display: none;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

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

  .modal__image {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-height: 300px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .topbar__content {
    justify-content: center;
  }

  .topbar__item:not(:first-child) {
    display: none;
  }

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
  }

  .header__nav.active {
    opacity: 1;
    visibility: visible;
  }

  .header__nav-link {
    font-size: 1.2rem;
  }

  .header__mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .header__instagram {
    display: none;
  }

  .hero {
    height: 60vh;
    min-height: 400px;
  }

  .hero__title {
    font-size: 2.4rem;
  }

  .features-bar__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .modal__details {
    padding: 24px;
  }

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

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .product-card__info {
    padding: 10px;
  }

  .product-card__name {
    font-size: 0.78rem;
  }

  .product-card__price {
    font-size: 0.88rem;
  }

  .product-card__sizes {
    display: none;
  }

  .hero__cta {
    flex-direction: column;
  }

  .category-nav__btn {
    padding: 8px 16px;
    font-size: 0.72rem;
  }
}

/* ===== MOBILE NAV CLOSE BUTTON ===== */
.header__nav-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .header__nav-close {
    display: flex;
  }
}

/* Gallery Thumbs */
.modal__gallery-thumbs { display: flex; gap: 8px; overflow-x: auto; margin-top: 10px; padding-bottom: 5px; }
.modal__thumb { width: 60px; height: 60px; object-fit: cover; border-radius: 6px; cursor: pointer; border: 2px solid transparent; transition: transform 0.2s; }
.modal__thumb:hover { transform: scale(1.1); border-color: var(--accent-gold, #c89c45); }

/* ===== LEAGUE SUB-FILTER ===== */
.league-filter {
  margin-bottom: 24px;
  overflow: hidden;
  animation: slideDown 0.3s ease-out;
}

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

.league-filter__scroll {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.league-filter__scroll::-webkit-scrollbar {
  display: none;
}

.league-filter__btn {
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  white-space: nowrap;
  transition: all var(--transition-fast);
  letter-spacing: 0.3px;
}

.league-filter__btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(201, 168, 76, 0.08);
}

.league-filter__btn.active {
  background: rgba(201, 168, 76, 0.15);
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

/* ===== CATALOG INFO BANNER ===== */
.catalog-info-banner {
  margin-bottom: 32px;
}

.catalog-info-banner__inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, rgba(201, 168, 76, 0.03) 100%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  position: relative;
}

.catalog-info-banner__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.catalog-info-banner__text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  padding-right: 24px;
}

.catalog-info-banner__text strong {
  color: var(--text-primary);
}

.catalog-info-banner__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.catalog-info-banner__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .catalog-info-banner__inner {
    padding: 14px 16px;
  }
  .catalog-info-banner__text {
    font-size: 0.78rem;
  }
}

/* ===== FOOTER LEGAL DISCLAIMER ===== */
.footer__legal {
  margin-top: 40px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.footer__legal-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__legal-content {
  flex: 1;
}

.footer__legal-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__legal-content p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer__legal-content p:last-child {
  margin-bottom: 0;
}

.footer__legal-content strong {
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .footer__legal {
    flex-direction: column;
    gap: 12px;
    padding: 18px 16px;
  }
  .footer__legal-content p {
    font-size: 0.72rem;
  }
}

/* ===== MODAL PRICE LABEL ===== */
.modal__price-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

/* ===== PRODUCT CARD PRICE LABEL ===== */
.product-card__price-label {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  display: block;
  margin-bottom: 1px;
}
