/* =====================================================
   ECLIPSE STORE — STYLE.CSS
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@1,700&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --bg: #080808;
  --bg2: #0f0f0f;
  --bg3: #161616;
  --surface: #1a1a1a;
  --border: rgba(255, 255, 255, 0.08);
  --gold: #c9a84c;
  --gold-light: #f0ca6e;
  --white: #ffffff;
  --grey: #888;
  --grey2: #555;
  --red: #e63946;
  --green: #22c55e;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: none;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: var(--font-body);
}

/* ---- CUSTOM CURSOR ---- */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, 0.5);
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s, width 0.2s, height 0.2s;
}

.cursor.hover {
  width: 20px;
  height: 20px;
}

.cursor-follower.hover {
  width: 60px;
  height: 60px;
}

/* ---- LOADER ---- */
#loader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 99997;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  width: 240px;
  margin: 0 auto 24px;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  width: 0;
  background: var(--gold);
  border-radius: 2px;
  animation: loadFill 1.8s ease forwards;
}

@keyframes loadFill {
  to {
    width: 100%;
  }
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

/* ---- NAVBAR ---- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}

.nav-logo .logo-svg {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  width: 100%;
}

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

.cart-btn {
  position: relative;
  color: white;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}

.cart-btn:hover {
  color: var(--gold);
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 28px;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: white;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(8, 8, 8, 0.98);
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  padding: 14px 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  color: rgba(255, 255, 255, 0.8);
}

.mobile-link:last-child {
  border-bottom: none;
}

/* ---- HERO ---- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
}

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

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}

.orb1 {
  width: 500px;
  height: 500px;
  background: rgba(201, 168, 76, 0.06);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.orb2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.03);
  bottom: 0;
  left: 10%;
  animation-delay: 3s;
}

.orb3 {
  width: 200px;
  height: 200px;
  background: rgba(201, 168, 76, 0.04);
  top: 40%;
  left: 50%;
  animation-delay: 5s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(20px, -20px) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  flex: 1;
}

.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 9vw, 130px);
  line-height: 0.9;
  letter-spacing: 2px;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-line1,
.hero-line2 {
  display: block;
}

.hero-line3 {
  display: block;
  color: var(--gold);
}

.italic-gold {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 420px;
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeInUp 0.8s ease 1s both;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
}

.stat-label {
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero-product-float {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeInRight 1s ease 0.5s both;
}

.tshirt-showcase {
  position: relative;
  width: 340px;
  height: 460px;
}

.tshirt-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.6s ease, transform 0.6s ease;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.8));
  opacity: 0;
  transform: scale(0.97);
}

.tshirt-img.active {
  opacity: 1;
  transform: scale(1);
}

.flip-btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  transition: background var(--transition), border-color var(--transition);
}

.flip-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  animation: fadeInUp 1s ease 1.5s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollAnim 1.5s ease infinite;
}

@keyframes scrollAnim {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ---- MARQUEE ---- */
.marquee-band {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 20s linear infinite;
}

.marquee-track span {
  display: inline-block;
  padding: 0 32px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 2px;
  color: #000;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: none;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

.btn-ghost {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.btn.full-width {
  width: 100%;
  display: flex;
}

.btn.lg {
  padding: 18px 40px;
  font-size: 14px;
}

/* ---- SECTIONS ---- */
#products,
#about,
#contact {
  padding: 100px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 3px;
  line-height: 1;
}

/* ---- PRODUCT GRID ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: none;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), var(--shadow-gold);
  border-color: rgba(201, 168, 76, 0.25);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 100px;
}

.cs-badge {
  background: var(--grey2);
  color: white;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: #111;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  transition: transform 0.6s ease, opacity 0.5s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.prod-front {
  opacity: 0;
}

.product-card:hover .prod-back {
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.05);
}

.product-card:hover .prod-front {
  opacity: 1;
}

.product-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.quick-view-btn {
  background: white;
  color: #000;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition);
}

.quick-view-btn:hover {
  background: var(--gold);
  transform: scale(1.05);
}

.cs-wrap {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}

.cs-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.cs-lock {
  font-size: 48px;
  opacity: 0.3;
}

.product-info {
  padding: 24px;
}

.product-brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.product-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1px;
}

.product-old-price {
  font-size: 14px;
  color: var(--grey);
  text-decoration: line-through;
}

.product-sizes-preview {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.product-sizes-preview span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 3px 8px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--grey);
}

.product-buy-btn {
  width: 100%;
}

/* ---- ABOUT ---- */
#about {
  background: var(--bg2);
}

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-body {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.9;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature span {
  font-size: 24px;
}

.feature strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature p {
  font-size: 13px;
  color: var(--grey);
  margin: 0;
}

.about-visual {
  position: relative;
}

.about-img-stack {
  position: relative;
  height: 500px;
}

.about-img {
  position: absolute;
  border-radius: var(--radius-lg);
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
}

.a1 {
  width: 70%;
  right: 0;
  top: 0;
  z-index: 1;
}

.a2 {
  width: 60%;
  left: 0;
  bottom: 0;
  z-index: 2;
  border: 2px solid rgba(201, 168, 76, 0.2);
  background: rgba(255, 255, 255, 0.02);
  padding: 12px;
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-icon {
  font-size: 24px;
}

.contact-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 14px;
  color: var(--grey);
  margin: 0;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-form h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* ---- FORMS ---- */
.form-group {
  margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: white;
  padding: 14px 16px;
  font-size: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

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

/* ---- FOOTER ---- */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 60px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-logo p {
  font-size: 12px;
  color: var(--grey);
  margin-top: 12px;
}

.footer-links {
  display: flex;
  gap: 60px;
  flex: 1;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: white;
}

/* ---- MODALS ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

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

.modal {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform var(--transition);
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.modal-overlay.open .modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
  transition: background var(--transition);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* ---- PRODUCT MODAL ---- */
.product-modal-inner {
  max-width: 900px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.pm-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pm-main-img-wrap {
  background: #111;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pm-main-img {
  width: 85%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.pm-main-img:hover {
  transform: scale(1.05);
}

.pm-thumbs {
  display: flex;
  gap: 10px;
}

.pm-thumb {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: #111;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: none;
  transition: border-color var(--transition);
  padding: 4px;
}

.pm-thumb.active,
.pm-thumb:hover {
  border-color: var(--gold);
}

.pm-brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pm-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
}

.pm-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.pm-price {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 1px;
}

.pm-old {
  font-size: 16px;
  color: var(--grey);
  text-decoration: line-through;
}

.pm-discount {
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

.pm-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 24px;
}

.pm-desc ul {
  padding-left: 16px;
  list-style: disc;
}

.pm-desc ul li {
  margin-bottom: 4px;
}

.pm-size-section {
  margin-bottom: 24px;
}

.pm-size-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.size-guide-link {
  color: var(--gold);
  font-size: 11px;
}

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

.size-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  background: var(--bg3);
}

.size-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.size-btn.selected {
  border-color: var(--gold);
  background: var(--gold);
  color: #000;
}

.size-error {
  font-size: 12px;
  color: var(--red);
  margin-top: 8px;
  display: none;
}

.size-error.visible {
  display: block;
}

.pm-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.pm-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.pm-meta span {
  font-size: 12px;
  color: var(--grey);
}

/* ---- ORDER MODAL ---- */
.order-modal-inner {
  max-width: 560px;
  width: 100%;
}

.om-header h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
}

.om-product-summary {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 28px;
}

.om-thumb {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
  background: #111;
  padding: 4px;
}

.om-pname {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.om-pdetail {
  font-size: 13px;
  color: var(--grey);
}

.om-step-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-num {
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: #000;
  font-size: 14px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hidden {
  display: none !important;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg3);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  cursor: none;
  transition: border-color var(--transition), background var(--transition);
  position: relative;
}

.payment-option:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.payment-option.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.po-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--grey);
  flex-shrink: 0;
  transition: all var(--transition);
}

.payment-option.selected .po-radio {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: inset 0 0 0 3px var(--bg3);
}

.po-content {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 1;
}

.po-icon {
  font-size: 22px;
}

.po-title {
  font-size: 14px;
  font-weight: 700;
}

.po-desc {
  font-size: 12px;
  color: var(--grey);
}

.po-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 100px;
}

.cod-badge {
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
}

.online-badge {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
}

.cod-warning {
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 13px;
}

.cod-warning strong {
  display: block;
  margin-bottom: 4px;
}

.cod-warning p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 12px;
}

.upi-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  margin-bottom: 20px;
  align-items: start;
}

.upi-qr-area {
  position: relative;
  width: 160px;
  flex-shrink: 0;
}

.upi-qr-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: 12px;
  border: 4px solid white;
  background: white;
}

.upi-id-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  margin-bottom: 12px;
}

.upi-id-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--grey);
  text-transform: uppercase;
  white-space: nowrap;
}

.upi-id-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  flex: 1;
}

.copy-btn {
  color: var(--grey);
  transition: color var(--transition);
  padding: 4px;
}

.copy-btn:hover {
  color: var(--gold);
}

.upi-amount-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  padding: 10px 14px;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.upi-amount {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
}

.upi-steps {
  padding-left: 18px;
  list-style: decimal;
}

.upi-steps li {
  font-size: 12px;
  color: var(--grey);
  margin-bottom: 6px;
  line-height: 1.5;
}

.utr-group {}

.utr-hint {
  font-size: 11px;
  color: var(--grey);
  margin-top: 6px;
}

.payment-error {
  color: var(--red);
  font-size: 13px;
  margin-bottom: 12px;
}

.om-step2-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-top: 20px;
}

/* ---- CART MODAL ---- */
.cart-modal-inner {
  max-width: 420px;
  width: 100%;
}

.cart-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
}

.cart-empty {
  text-align: center;
  padding: 40px 0;
}

.cart-empty-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.cart-empty p {
  color: var(--grey);
  margin-bottom: 20px;
}

.cart-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: #111;
  border-radius: 8px;
  padding: 4px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 700;
}

.cart-item-meta {
  font-size: 12px;
  color: var(--grey);
}

.cart-item-price {
  font-family: var(--font-display);
  font-size: 18px;
}

.cart-item-remove {
  color: var(--grey);
  font-size: 18px;
  cursor: none;
  transition: color var(--transition);
}

.cart-item-remove:hover {
  color: var(--red);
}

.cart-footer {
  margin-top: 20px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

#cartTotal {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold);
}

/* ---- SIZE GUIDE ---- */
.size-modal-inner {
  max-width: 540px;
  width: 100%;
}

.size-modal-inner h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.size-note {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 24px;
}

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

.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.size-table th {
  padding: 10px 16px;
  text-align: left;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
}

.size-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.size-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* ---- NOTIFY MODAL ---- */
.notify-modal-inner {
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.notify-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.notify-modal-inner h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.notify-modal-inner>p {
  color: var(--grey);
  font-size: 14px;
  margin-bottom: 28px;
}

.notify-modal-inner .form-group {
  text-align: left;
}

/* ---- POLICY MODAL ---- */
.policy-modal-inner {
  max-width: 540px;
  width: 100%;
}

.policy-modal-inner h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
}

.policy-modal-inner h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 20px 0 8px;
  color: var(--gold);
}

.policy-modal-inner p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ---- SUCCESS MODAL ---- */
.success-modal-inner {
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.success-animation {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.success-circle {
  animation: scaleIn 0.4s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

.success-ring {
  stroke-dasharray: 176;
  stroke-dashoffset: 176;
  animation: drawRing 0.5s ease 0.3s forwards;
}

@keyframes drawRing {
  to {
    stroke-dashoffset: 0;
  }
}

.success-check {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawCheck 0.4s ease 0.7s forwards;
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

.success-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.success-msg {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  line-height: 1.7;
}

.success-order-id {
  font-size: 12px;
  color: var(--grey);
  margin-bottom: 28px;
}

.success-order-id strong {
  color: var(--gold);
}

/* ---- TOAST ---- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  z-index: 99999;
  white-space: nowrap;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
}

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

.toast.success {
  border-color: rgba(34, 197, 94, 0.4);
  color: var(--green);
}

.toast.error {
  border-color: rgba(230, 57, 70, 0.4);
  color: var(--red);
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- COUPON SECTION ---- */
.coupon-section {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 16px;
}

.coupon-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.coupon-icon {
  font-size: 18px;
}

.coupon-label {
  font-size: 13px;
  font-weight: 600;
  flex: 1;
}

.coupon-toggle {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 5px 14px;
  border-radius: 100px;
  transition: all var(--transition);
}

.coupon-toggle:hover {
  background: rgba(201, 168, 76, 0.2);
}

.coupon-input-wrap {
  margin-top: 14px;
}

.coupon-row {
  display: flex;
  gap: 10px;
}

.coupon-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: white;
  padding: 11px 14px;
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: border-color var(--transition);
}

.coupon-input:focus {
  border-color: var(--gold);
}

.coupon-apply-btn {
  padding: 11px 20px;
  font-size: 12px;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.coupon-msg {
  font-size: 12px;
  margin-top: 8px;
}

.coupon-msg.success {
  color: var(--green);
}

.coupon-msg.error {
  color: var(--red);
}

/* ---- ORDER SUMMARY ---- */
.order-summary {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 16px;
}

.os-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 12px;
}

.os-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 8px;
}

.os-row:last-child {
  margin-bottom: 0;
}

.os-total {
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 8px;
  font-weight: 700;
  font-size: 15px;
}

.os-total span:last-child {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
}

.discount-green {
  color: var(--green);
  font-weight: 700;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  #hero {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-product-float {
    order: -1;
  }

  .tshirt-showcase {
    width: 250px;
    height: 340px;
  }

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

  .about-wrap {
    grid-template-columns: 1fr;
  }

  .about-visual {
    display: none;
  }

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

  .upi-box {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

@media (max-width: 680px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

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

  .footer-links {
    flex-direction: column;
    gap: 32px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }
}