@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* DESIGN SYSTEM & CONSTANTS */
:root {
  /* Colors */
  --bg-color: #08080c;
  --bg-card: rgba(20, 20, 28, 0.7);
  --bg-card-hover: rgba(30, 30, 42, 0.9);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-neon-orange: #ff5e00;
  --border-neon-pink: #ff007f;
  --text-primary: #ffffff;
  --text-secondary: #9ea0ab;
  --text-muted: #62646c;
  --accent-orange: #ff5e00;
  --accent-pink: #ff007f;
  --accent-green: #39ff14;
  --glow-orange: 0 0 15px rgba(255, 94, 0, 0.4);
  --glow-pink: 0 0 15px rgba(255, 0, 127, 0.4);
  --glass-bg: rgba(8, 8, 12, 0.75);
  --glass-blur: blur(16px);
  --glass-border: rgba(255, 255, 255, 0.06);

  /* Fonts */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Layout */
  --header-height: 80px;
  --container-max-width: 1280px;
}

/* RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-orange) var(--bg-color);
}

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

/* Scrollbar customization */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-orange);
  border-radius: 3px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

button, input, select {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
  outline: none;
}

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

.text-gradient {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.neon-btn-orange {
  background: var(--accent-orange);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 32px;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--glow-orange);
}

.neon-btn-orange:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.neon-btn-outline {
  border: 1px solid var(--accent-orange);
  color: var(--accent-orange);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 15px 30px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.neon-btn-outline:hover {
  background: rgba(255, 94, 0, 0.1);
  box-shadow: var(--glow-orange);
  transform: translateY(-2px);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-title::after {
  content: '';
  height: 2px;
  flex-grow: 1;
  background: linear-gradient(90deg, var(--accent-orange), transparent);
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 2px;
}

.badge-limited {
  background: var(--accent-pink);
  color: #fff;
  box-shadow: var(--glow-pink);
}

.badge-new {
  background: var(--accent-orange);
  color: #000;
  box-shadow: var(--glow-orange);
}

.badge-custom {
  background: var(--accent-green);
  color: #000;
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
}

/* ANNOUNCEMENT BAR */
.announcement-bar {
  background: linear-gradient(90deg, #ff5e00, #ff007f);
  color: #fff;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 8px 16px;
  text-transform: uppercase;
  z-index: 1000;
  position: relative;
}

/* HEADER & NAVIGATION */
.main-header {
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--accent-orange);
  text-shadow: var(--glow-orange);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-pink));
  transition: width 0.3s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.action-btn {
  color: var(--text-secondary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
}

.action-btn:hover {
  color: var(--text-primary);
  filter: drop-shadow(0 0 5px var(--accent-orange));
}

.cart-count-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent-pink);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-pink);
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(255, 94, 0, 0.08), transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(255, 0, 127, 0.08), transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.hero-content {
  z-index: 10;
}

.hero-tagline {
  font-family: var(--font-heading);
  color: var(--accent-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  display: block;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-pink));
  filter: blur(80px);
  opacity: 0.25;
  border-radius: 50%;
  z-index: 1;
}

.hero-image {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  transform: rotate(2deg);
  transition: transform 0.5s ease;
  max-width: 460px;
}

.hero-image:hover {
  transform: rotate(0deg) scale(1.02);
}

/* BRAND USPs SECTION */
.usps-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.01);
}

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

.usp-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.usp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-orange), var(--accent-pink));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.usp-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 94, 0, 0.2);
  transform: translateY(-4px);
}

.usp-card:hover::before {
  opacity: 1;
}

.usp-icon {
  font-size: 2rem;
  color: var(--accent-orange);
  margin-bottom: 20px;
}

.usp-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.usp-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* CATEGORIES SECTION */
.categories-section {
  padding: 100px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}

.category-card {
  position: relative;
  height: 480px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  cursor: pointer;
}

.category-card.small {
  height: 480px;
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 8, 12, 0.95));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  transition: background 0.3s ease;
}

.category-card:hover .category-image {
  transform: scale(1.08);
}

.category-card:hover .category-overlay {
  background: linear-gradient(180deg, rgba(255, 94, 0, 0.05) 10%, rgba(8, 8, 12, 0.98));
}

.category-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.category-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-card:hover .category-link {
  color: #fff;
  text-shadow: 0 0 8px rgba(255,255,255,0.5);
}

/* PRODUCT GRID & CARDS */
.products-section {
  padding: 0 0 100px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 94, 0, 0.25);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
}

.product-wishlist {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  background: rgba(8, 8, 12, 0.7);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.product-wishlist:hover {
  color: var(--accent-pink);
  background: #fff;
}

.product-image-container {
  position: relative;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  background: #14141c;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-img.hover-img {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-card:hover .product-img.main-img {
  opacity: 0;
}

.product-card:hover .product-img.hover-img {
  opacity: 1;
  transform: scale(1.05);
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.3;
}

.product-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.product-price .original {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: var(--text-muted);
  margin-left: 8px;
}

.quick-add-btn {
  width: 40px;
  height: 40px;
  background: var(--accent-orange);
  color: #000;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quick-add-btn:hover {
  background: #fff;
  transform: scale(1.05);
}

/* SOCIAL WALL (INSTAGRAM FEED) */
.social-section {
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
  background: radial-gradient(circle at 50% 50%, rgba(255, 0, 127, 0.03), transparent 70%);
}

.social-header {
  text-align: center;
  margin-bottom: 48px;
}

.social-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.social-header p {
  color: var(--accent-pink);
  font-weight: 700;
  letter-spacing: 0.1em;
}

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

.social-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  cursor: pointer;
}

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

.social-hover {
  position: absolute;
  inset: 0;
  background: rgba(255, 0, 127, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
}

.social-hover i {
  font-size: 2rem;
  margin-bottom: 12px;
}

.social-hover span {
  font-family: var(--font-heading);
  font-weight: 700;
}

.social-card:hover .social-img {
  transform: scale(1.06);
}

.social-card:hover .social-hover {
  opacity: 1;
}

/* NEWSLETTER */
.newsletter-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-color);
  position: relative;
  background: #0c0d14;
}

.newsletter-container {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.newsletter-desc {
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.newsletter-form {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 8px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.newsletter-input {
  flex-grow: 1;
  padding: 16px;
  font-size: 1rem;
}

.newsletter-form:focus-within {
  border-color: var(--accent-orange);
  box-shadow: var(--glow-orange);
}

/* FOOTER */
.main-footer {
  background: #050508;
  padding: 80px 0 40px 0;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer-brand h3 span {
  color: var(--accent-orange);
}

.footer-brand p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--accent-orange);
  color: #000;
  box-shadow: var(--glow-orange);
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-orange);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-contact i {
  color: var(--accent-orange);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.payment-methods {
  display: flex;
  gap: 12px;
  color: var(--text-muted);
  font-size: 1.5rem;
}

/* PRODUCT DETAIL PAGE LAYOUT */
.product-detail-section {
  padding: 60px 0 100px 0;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Product Gallery */
.gallery-container {
  display: flex;
  gap: 20px;
}

.gallery-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.thumb-btn {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--bg-card);
  transition: all 0.3s ease;
}

.thumb-btn.active, .thumb-btn:hover {
  border-color: var(--accent-orange);
  box-shadow: var(--glow-orange);
}

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

.main-preview-wrapper {
  flex-grow: 1;
  position: relative;
  aspect-ratio: 1 / 1.15;
  border-radius: 8px;
  overflow: hidden;
  background: #14141c;
  border: 1px solid var(--border-color);
}

.main-preview-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Options & Buy Area */
.product-buy-column {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.p-header {
  margin-bottom: 24px;
}

.p-status {
  margin-bottom: 12px;
}

.p-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 12px;
}

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

.p-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}

.p-price-old {
  font-size: 1.25rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.p-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.stars {
  color: #ffb800;
  font-size: 0.95rem;
}

.stars-count {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.p-social-proof {
  background: rgba(255, 94, 0, 0.05);
  border: 1px solid rgba(255, 94, 0, 0.15);
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--accent-orange);
}

.p-social-proof i {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

.option-group {
  margin-bottom: 28px;
}

.option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.option-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.size-guide-link {
  font-size: 0.85rem;
  color: var(--accent-pink);
  font-weight: 600;
  cursor: pointer;
}

.size-guide-link:hover {
  text-shadow: var(--glow-pink);
}

.size-options {
  display: flex;
  gap: 12px;
}

.size-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.size-btn:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.size-btn.active {
  background: var(--accent-orange);
  color: #000;
  border-color: var(--accent-orange);
  box-shadow: var(--glow-orange);
}

.qty-input-group {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  border-radius: 4px;
  width: 130px;
  height: 50px;
}

.qty-btn {
  width: 40px;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.qty-btn:hover {
  color: var(--accent-orange);
}

.qty-val {
  flex-grow: 1;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.buy-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.buy-actions .neon-btn-orange {
  flex-grow: 1;
  height: 50px;
}

.wishlist-btn {
  width: 50px;
  height: 50px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--bg-card);
}

.wishlist-btn:hover {
  border-color: var(--accent-pink);
  color: var(--accent-pink);
  background: rgba(255, 0, 127, 0.05);
}

.p-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
}

.p-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.p-feature-item i {
  color: var(--accent-green);
  font-size: 1rem;
}

/* Accordion details */
.details-accordion {
  border-top: 1px solid var(--border-color);
}

.accordion-item {
  border-bottom: 1px solid var(--border-color);
}

.accordion-trigger {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.accordion-trigger:hover {
  color: var(--accent-orange);
}

.accordion-content {
  padding-bottom: 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: none;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-item.active .accordion-trigger i {
  transform: rotate(180deg);
}

.accordion-trigger i {
  transition: transform 0.3s ease;
}

/* COMPLETE THE LOOK Section (Cross-sell) */
.cross-sell-section {
  margin-top: 100px;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
}

.cross-sell-header {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.cross-sell-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.look-bundle {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bundle-item {
  display: flex;
  gap: 20px;
  align-items: center;
}

.bundle-img {
  width: 90px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

.bundle-info {
  flex-grow: 1;
}

.bundle-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.bundle-meta {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.bundle-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 4px;
}

.look-checkout-card {
  padding: 32px;
  background: rgba(8, 8, 12, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bundle-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.bundle-total-label {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
}

.bundle-total-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-orange);
}

.bundle-savings {
  color: var(--accent-green);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
}

/* SIDEBAR MINI CART */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100vh;
  background: var(--bg-color);
  border-left: 1px solid var(--glass-border);
  box-shadow: -20px 0 40px rgba(0,0,0,0.8);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cart-sidebar.open {
  right: 0;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
}

.cart-backdrop.show {
  display: block;
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
}

.close-cart-btn {
  font-size: 1.5rem;
  cursor: pointer;
}

.close-cart-btn:hover {
  color: var(--accent-orange);
}

.cart-items-list {
  flex-grow: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart-item {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  padding-bottom: 20px;
}

.cart-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cart-item-img {
  width: 70px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

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

.cart-item-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cart-item-meta {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.cart-item-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-item-price {
  font-family: var(--font-heading);
  font-weight: 700;
}

.cart-item-remove {
  font-size: 0.85rem;
  color: var(--accent-pink);
  cursor: pointer;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-card);
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cart-summary-line.total {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
}

.cart-summary-line.total span:last-child {
  color: var(--accent-orange);
}

.checkout-btn {
  width: 100%;
  margin-top: 16px;
}

/* SIZE GUIDE MODAL */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: var(--bg-color);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  padding: 40px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8), var(--glow-orange);
}

.close-modal-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
}

.close-modal-btn:hover {
  color: var(--accent-orange);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.size-table th, .size-table td {
  border: 1px solid var(--border-color);
  padding: 12px;
  text-align: center;
}

.size-table th {
  background: var(--bg-card);
  font-family: var(--font-heading);
  font-weight: 700;
}

/* CUSTOM MODAL LAB / NOTIFICATION SYSTEM */
.notification-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--bg-card);
  border-left: 4px solid var(--accent-orange);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
  border-radius: 4px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 3000;
}

.notification-toast.show {
  transform: translateY(0);
}

.notification-toast i {
  color: var(--accent-orange);
  font-size: 1.25rem;
}

.notification-text {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* RESPONSIVE DESIGN - MEDIA QUERIES */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .categories-grid {
    grid-template-columns: 1fr 1fr;
  }
  .category-card.large {
    grid-column: span 2;
    height: 380px;
  }
  .category-card {
    height: 300px;
  }
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-buy-column {
    position: static;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .hero-desc {
    margin: 0 auto 32px auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-image {
    max-width: 400px;
    margin: 0 auto;
  }
  .usps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .nav-menu {
    display: none; /* Mobile menu logic in a real application */
  }
  .social-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .gallery-container {
    flex-direction: column-reverse;
  }
  .gallery-thumbnails {
    flex-direction: row;
    justify-content: center;
  }
  .thumb-btn {
    width: 64px;
    height: 64px;
  }
  .cross-sell-grid {
    grid-template-columns: 1fr;
  }
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
}

/* LOGIN MODAL STYLING */
.auth-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.auth-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.auth-modal-container {
  background: var(--bg-color);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  width: 90%;
  max-width: 460px;
  padding: 40px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8), var(--glow-orange);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateY(-20px);
}

.auth-modal-backdrop.open .auth-modal-container {
  transform: translateY(0);
}

.auth-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 30px;
}

.auth-tab-btn {
  flex: 1;
  text-align: center;
  padding: 12px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.auth-tab-btn:hover {
  color: var(--text-primary);
}

.auth-tab-btn.active {
  color: var(--accent-orange);
  border-bottom-color: var(--accent-orange);
  text-shadow: var(--glow-orange);
}

.auth-form-wrapper {
  display: none;
}

.auth-form-wrapper.active {
  display: block;
}

.auth-input-group {
  margin-bottom: 20px;
}

.auth-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.auth-input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 14px;
  border-radius: 4px;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.auth-input:focus {
  border-color: var(--accent-orange);
  box-shadow: var(--glow-orange);
  background: var(--bg-card-hover);
}

.auth-submit-btn {
  width: 100%;
  height: 50px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.social-login-separator {
  text-align: center;
  position: relative;
  margin: 24px 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.social-login-separator::before, .social-login-separator::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 35%;
  height: 1px;
  background: var(--border-color);
}

.social-login-separator::before { left: 0; }
.social-login-separator::after { right: 0; }

.social-login-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.social-login-btn {
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  padding: 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* User Account Icon Glowing indicator */
.action-btn.logged-in {
  color: var(--accent-green);
  filter: drop-shadow(0 0 5px var(--accent-green));
}

.action-btn.logged-in::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-green);
}

