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

:root {
  /* Colors */
  --color-primary: #200023;
  --color-primary-container: #3D103F; /* ZORD Signature Deep Plum */
  --color-on-primary: #ffffff;
  --color-background: #f9f9f9;
  --color-on-background: #1a1c1c;
  --color-surface: #f9f9f9;
  --color-surface-container: #eeeeee;
  --color-surface-container-low: #f3f3f3;
  --color-surface-container-lowest: #ffffff;
  --color-on-surface-variant: #4e444c;
  --color-outline-variant: rgba(209, 194, 204, 0.15);

  /* Typography */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  
  /* Spacing & Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-main);
  background-color: var(--color-background);
  color: var(--color-on-background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-on-background);
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* Premium Button Component */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-container));
  color: var(--color-on-primary);
  box-shadow: 0 4px 15px rgba(61, 16, 63, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61, 16, 63, 0.3);
  filter: brightness(1.1);
}

.btn-secondary {
  background: transparent;
  color: var(--color-on-background);
  border-bottom: 2px solid transparent;
  padding: 0.5rem 0;
  border-radius: 0;
}

.btn-secondary:hover {
  border-bottom-color: var(--color-primary-container);
  color: var(--color-primary-container);
}

.btn-sm {
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  text-transform: capitalize;
  letter-spacing: normal;
}

/* Utility Classes */

.text-plum { color: var(--color-primary-container); }

.bg-plum { background-color: var(--color-primary-container); }

.py-section { padding-top: 5rem; padding-bottom: 5rem; }

/* Premium Splash Screen */

.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* Fallback for older browsers */
  height: 100dvh; /* Perfectly fit mobile viewport without address bar jumps */
  background: radial-gradient(circle at center, #ffffff 0%, #f4f0f4 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.splash-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(61, 16, 63, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.splash-screen.fade-out {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03); /* Subtle zoom out effect when dismissing */
}

.splash-content {
  text-align: center;
  padding: 2rem;
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Staggered Element Animations ─────────────────────── */

/* 1. Logo: zooms + fades in from above (0ms delay) */

.splash-logo {
  width: clamp(120px, 30vw, 160px);
  height: auto;
  margin: 0 auto 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(61, 16, 63, 0.15), 0 5px 15px rgba(0,0,0,0.05);
  opacity: 0;
  animation:
    splash-logo-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0ms forwards,
    float 6s ease-in-out 0.8s infinite;
}

@keyframes splash-logo-in {
  0%   { opacity: 0; transform: scale(0.6) translateY(-30px); }
  60%  { opacity: 1; transform: scale(1.08) translateY(4px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

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

/* 2. Title: slides up from below (300ms delay) */

.splash-title {
  font-size: clamp(2rem, 8vw, 3.5rem);
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.05);
  opacity: 0;
  animation: splash-slide-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 300ms forwards;
}

@keyframes splash-slide-up {
  0%   { opacity: 0; transform: translateY(35px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* 3. Subtitle: fades in softly (500ms delay) */

.splash-subtitle {
  font-size: clamp(0.85rem, 3vw, 1.1rem);
  color: var(--color-on-surface-variant);
  margin-bottom: 3.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0;
  animation: splash-fade-in 0.9s ease 500ms forwards;
}

@keyframes splash-fade-in {
  0%   { opacity: 0; letter-spacing: 0.3em; }
  100% { opacity: 0.8; letter-spacing: 0.15em; }
}

/* 4. Button: bounces in with spring (700ms delay) */

.splash-btn {
  padding: clamp(1rem, 3vw, 1.2rem) clamp(2.5rem, 8vw, 4rem);
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-container));
  color: var(--color-on-primary);
  box-shadow: 0 10px 25px rgba(61, 16, 63, 0.25);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: splash-bounce-in 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.275) 700ms forwards;
}

@keyframes splash-bounce-in {
  0%   { opacity: 0; transform: scale(0.5) translateY(20px); }
  60%  { opacity: 1; transform: scale(1.08) translateY(-5px); }
  80%  { transform: scale(0.97) translateY(2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.splash-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: shimmer 3s infinite; /* Premium shimmer effect on button */
}

@keyframes shimmer {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.splash-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(61, 16, 63, 0.35);
  color: var(--color-on-primary);
}

.splash-btn:active {
  transform: translateY(2px);
}
.trust-bar-container {
  background: linear-gradient(90deg, #2D1B2E 0%, #4A1A3E 50%, #2D1B2E 100%);
  color: white;
  padding: 10px 0;
  font-size: 13px;
  position: relative;
  width: 100%;
  z-index: 5000;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trust-bar-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24px;
  position: relative;
  width: 100%;
}

.trust-item-slide {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.trust-item-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.trust-icon {
  font-size: 16px;
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}


.trust-bar-dismiss {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.3s ease;
  z-index: 10;
}

.trust-bar-dismiss:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-50%) rotate(90deg);
}

@keyframes fade-in-down {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-trust-bar {
  animation: fade-in-down 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .trust-bar-container {
    padding: 8px 0;
    font-size: 12px;
  }
  
  .trust-item-slide {
    width: 80%;
    text-align: center;
  }
}

/* Login Page */
.login-page {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-container));
}

.login-card {
  background: #fff;
  padding: 3rem;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.login-card h1 {
  margin-bottom: 0.5rem;
}

.login-card p {
  color: var(--color-on-surface-variant);
  margin-bottom: 2rem;
}

.login-card form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.login-card input {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
}

.text-plum {
  color: var(--color-primary-container) !important;
}

/* Admin Enhancements */
.section-header-admin {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.preview-container {
  position: relative;
}

.btn-remove-float {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 77, 79, 0.9);
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.btn-remove-float:hover {
  background: #d9363e;
  transform: scale(1.1);
}

.edit-fields label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary-container);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.asset-previews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem;
  background: #f9f9f9;
  border-radius: 4px;
}

.asset-thumb {
  text-align: center;
}

.asset-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
}

.asset-thumb span {
  font-size: 0.7rem;
  color: var(--color-on-surface-variant);
  display: block;
  margin-top: 0.25rem;
  word-break: break-all;
}

/* Category Chips */
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.category-chip {
  background: var(--color-surface-container);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.category-chip button {
  background: none;
  border: none;
  color: #ff4d4f;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Shipping & Contact */
.card-styled {
  background: #fff;
  padding: 3rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.shipping-icon {
  font-size: 3rem;
  color: var(--color-primary-container);
  margin-bottom: 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-item i {
  color: var(--color-primary-container);
  font-size: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input, .contact-form textarea {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: inherit;
}

.social-links.dark a {
  color: var(--color-primary-container);
  font-size: 1.8rem;
}

.footer-grid-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.footer-col ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

.social-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 40px);
  gap: 1rem;
}

.social-links-grid a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
}

.social-links-grid a:hover {
  background: var(--color-primary-container);
}

.payment-icons-grid {
  display: flex;
  gap: 1.5rem;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.5);
}

.mt-2 { margin-top: 2rem; }

.footer-bottom-detailed {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  text-align: left;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.save-indicator {
  margin-left: 1rem;
  font-size: 0.9rem;
  color: #52c41a;
  font-weight: 600;
  animation: fade-in 0.3s ease;
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--color-primary-container);
  color: white;
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Modals & Overlays */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  z-index: 6000;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 2rem;
  overflow-y: auto;
}

.product-modal {
  width: 100%;
  max-width: 1000px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

/* Modal Image Gallery */
.modal-image-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #f8f8f8;
  padding: 2rem;
  border-radius: var(--radius-md);
  position: relative;
}

.main-image-container {
  width: 100%;
  position: relative;
}

.mobile-gallery-dots {
  display: none;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.mobile-gallery-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-gallery-dots .dot.active {
  background: var(--color-primary-container);
  transform: scale(1.2);
}

@media (min-width: 769px) {
  .mobile-gallery-dots {
    display: none !important;
  }
}

.main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.thumbnail-grid-wrapper {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.thumbnail-grid-wrapper::-webkit-scrollbar {
  display: none;
}

.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  gap: 0.5rem;
  min-width: 100%;
}

.thumbnail {
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.thumbnail.active {
  border-color: var(--color-primary-container);
  opacity: 1;
}

.thumbnail:hover {
  opacity: 1;
}

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

.price-tag {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary-container);
  margin-bottom: 1.5rem;
}

.badge-exclusive {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #000;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
}

.modal-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.multi-image-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: #4A1A3E;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(74, 26, 62, 0.1);
}

@media (max-width: 768px) {
  .modal-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .modal-image-gallery {
    padding: 1rem;
    background: #fff;
  }
  
  .thumbnail-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 5px;
    gap: 8px;
  }
  
  .thumbnail {
    flex: 0 0 60px;
    height: 60px;
  }
  
  .mobile-gallery-dots {
    display: flex;
  }
}

/* Admin File Input */
.file-upload-wrapper {
  background: #fff;
  border: 1px dashed #ddd;
  padding: 1rem;
  border-radius: var(--radius-sm);
}

.file-input {
  width: 100%;
  font-size: 0.9rem;
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  z-index: 5500;
  overflow-y: auto;
}

.search-header {
  border-bottom: 1px solid #eee;
  padding: 1.5rem 0;
}

.search-bar-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f8f8f8;
  border-radius: var(--radius-lg);
  padding: 0 1.5rem;
  height: 60px;
}

.search-icon-left {
  color: #999;
  font-size: 1.2rem;
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  font-size: 1.25rem;
  color: #000;
  padding: 0;
}

.search-input:focus {
  outline: none;
}

.btn-clear-search {
  background: #e0e0e0;
  color: #666;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
}

.btn-close-search {
  background: none;
  border: none;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  font-size: 1rem;
  margin-left: 1rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .search-header {
    padding: 1rem 0;
  }
  .search-bar-container {
    padding: 0 0.75rem;
    height: 50px;
    gap: 0.5rem;
  }
  .search-input {
    font-size: 1rem;
  }
  .btn-close-search {
    font-size: 0.9rem;
    margin-left: 0.5rem;
  }
  .smart-options-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.search-results-container {
  padding: 3rem 0;
}

.smart-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.search-group-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 1.5rem;
}

.search-list {
  list-style: none;
}

.search-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.2s;
}

.search-list li:hover {
  padding-left: 10px;
  color: var(--color-primary-container);
}

.auto-suggestions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.suggestion-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.suggestion-item:hover {
  background: #f8f8f8;
}

.suggestion-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.suggestion-info h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.text-plum { color: var(--color-primary-container); }

/* ======================================
   CHECKOUT — Premium Mobile-First Design
   ====================================== */
.checkout-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 110px 1.25rem 4rem;
}

.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #bbb;
}

.step span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #eee;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.step.active {
  color: #4A1A3E;
}

.step.active span {
  background: #4A1A3E;
  color: #fff;
}

.step-line {
  flex: 1;
  max-width: 60px;
  height: 2px;
  background: #eee;
  margin: 0 0.5rem;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.checkout-section-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #4A1A3E;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f0e6ef;
}

/* Form Fields */
.checkout-form-new {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid #e5e5e5;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  background: #fafafa;
  color: #222;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #4A1A3E;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(74,26,62,0.08);
}

.form-field textarea {
  resize: vertical;
  min-height: 80px;
}

/* Payment Options */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1.5px solid #e5e5e5;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: #fafafa;
}

.payment-option input[type="radio"] {
  display: none;
}

.payment-option i {
  font-size: 1.3rem;
  color: #bbb;
  width: 28px;
  text-align: center;
}

.payment-option div strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #222;
}

.payment-option div p {
  font-size: 0.75rem;
  color: #999;
  margin: 0;
}

.payment-option.selected {
  border-color: #4A1A3E;
  background: #fdf5fc;
}

.payment-option.selected i {
  color: #4A1A3E;
}

/* Order Summary */
.order-summary-new {
  background: #fff;
  border: 1.5px solid #f0e6ef;
  border-radius: 16px;
  padding: 1.5rem;
  position: sticky;
  top: 100px;
}

.order-items-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.order-item-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.order-item-row img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
  background: #f5f5f5;
  flex-shrink: 0;
}

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

.order-item-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 2px;
}

.order-item-meta {
  font-size: 0.75rem;
  color: #999;
  margin: 0;
}

.order-item-price {
  font-size: 0.88rem;
  font-weight: 800;
  color: #4A1A3E;
  white-space: nowrap;
}

.order-total-block {
  border-top: 1.5px solid #f0e6ef;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #555;
}

.order-total-row.grand-total {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111;
  border-top: 1.5px solid #eee;
  padding-top: 0.5rem;
  margin-top: 0.25rem;
}

.checkout-place-order-btn {
  width: 100%;
  padding: 0.8rem;
  background: linear-gradient(135deg, #4A1A3E, #7a2860);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.1s;
  box-shadow: 0 6px 20px rgba(74,26,62,0.3);
}

.checkout-place-order-btn:active {
  transform: scale(0.98);
  opacity: 0.9;
}

.checkout-trust {
  text-align: center;
  font-size: 0.72rem;
  color: #999;
  margin-top: 0.75rem;
}

/* Mobile overrides */
@media (max-width: 768px) {
  .checkout-wrapper {
    padding: 90px 1rem 6rem;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .order-summary-new {
    position: static;
    order: -1; /* Show summary ABOVE form on mobile */
  }

  .checkout-place-order-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    padding: 1.1rem;
    z-index: 200;
    box-shadow: 0 -4px 20px rgba(74,26,62,0.25);
  }

  .checkout-trust {
    margin-bottom: 4rem; /* room for fixed button */
  }
}

.cart-item-summary {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.btn-remove-sm {
  background: none;
  border: none;
  color: #ff4d4f;
  font-size: 1.5rem;
  cursor: pointer;
}

.total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
  font-weight: 800;
}

/* Success Page */
.success-icon {
  font-size: 5rem;
  color: #52c41a;
  margin-bottom: 2rem;
}

/* Admin Orders */
.status-select {
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid #ddd;
  font-weight: 600;
}

/* Navbar Dropdown */
.nav-item-dropdown {
  position: relative;
}

.dropdown-trigger i {
  font-size: 0.7rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-trigger i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 4px;
  padding: 1rem 0;
  list-style: none;
  z-index: 1000;
  margin-top: 10px;
}

.dropdown-menu li a {
  padding: 0.75rem 1.5rem;
  display: block;
  font-size: 0.85rem !important;
  color: #333 !important;
  text-transform: none !important;
  font-weight: 500 !important;
  transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
  background: #f8f8f8;
  color: var(--color-primary-container) !important;
  padding-left: 2rem;
}

.dropdown-menu .divider {
  height: 1px;
  background: #eee;
  margin: 0.5rem 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {

  .desktop-only { display: none; }
  .mobile-only { display: block; }
  
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .hero-carousel { aspect-ratio: 16 / 9; height: auto; }
  .slide-title { 
    font-size: 2.8rem; 
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .slide-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
  }

  .slide-content {
    padding: 0 1.5rem;
    text-align: center;
  }

  .slide-subtitle { font-size: 1rem; margin-bottom: 1.5rem; }
  
  .collections-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
}

@media (max-width: 480px) {
  .slide-title { font-size: 2.2rem !important; }
  .logo-text { font-size: 1.2rem; }
  .products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid-detailed { grid-template-columns: 1fr; }
}

.mobile-only { display: none; }
.desktop-only { display: block; }

/* Product Modal Mobile Optimization */
@media (max-width: 768px) {
  .modal-overlay {
    padding: 0;
    align-items: flex-end; /* Slide up from bottom on mobile */
  }

  .product-modal {
    max-height: 90vh;
    border-radius: 20px 20px 0 0;
    overflow-y: auto;
    padding: 0 !important; /* Reset padding to prevent negative margin overflow */
  }

  .modal-header-nav {
    margin: 0 !important;
    padding: 1.25rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  }

  .btn-minimal-back {
    font-size: 0.9rem !important;
    padding: 0.5rem;
    font-weight: 700;
    color: #111;
  }
  
  .btn-minimal-back i {
    font-size: 1rem !important;
    color: #3D103F;
  }

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

  .modal-image-gallery {
    padding: 1.5rem;
    background: #fdfdfd;
    gap: 0.5rem;
  }

  .main-image {
    border-radius: var(--radius-sm);
  }

  .modal-info {
    padding: 2rem 1.5rem;
  }

  .size-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 buttons per row */
    display: grid;
    gap: 0.5rem;
  }

  .size-btn {
    width: 100%;
    height: 50px;
  }

  .modal-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .modal-actions .btn {
    width: 100% !important;
    padding: 1.25rem;
    font-size: 1.1rem;
  }

  .story-text {
    margin: 1.5rem 0;
    line-height: 1.6;
  }
  /* Premium Mobile Tile Grid (Bata Style) */
  .py-section {
    padding: 2rem 0; /* Compact sections */
  }

  .section-header {
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }

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

  /* Product Tiles */
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
    padding: 0 !important;
    width: 100%;
    justify-items: stretch;
  }

  .product-card {
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    width: 100% !important;
  }

  .product-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  .product-image {
    aspect-ratio: 1 / 1;
    height: auto !important;
    border-radius: 4px;
    margin-bottom: 8px !important;
    background: #f8f8f8;
  }

  .product-image img {
    object-fit: cover !important;
    padding: 0 !important; /* Full width image */
    width: 100%;
    height: 100%;
  }

  .product-details {
    padding: 0 4px;
    text-align: left;
  }

  .product-name {
    font-size: 0.85rem !important;
    font-weight: 500;
    margin-bottom: 2px !important;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .product-category, .rating, .quick-add {
    display: none !important; /* Ultra-minimalist */
  }

  .product-price-row {
    justify-content: flex-start;
  }

  .price {
    font-size: 0.95rem !important;
    font-weight: 700;
    color: #000;
  }

  /* Collection Image Tiles */
  .collections-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    padding: 0 8px;
  }

  .collection-card {
    height: 160px !important;
    border-radius: 4px;
    display: flex; /* Ensure centering works */
  }

  .collection-info {
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.3); /* Slightly darker for text contrast */
    width: 100%;
    display: flex;
  }

  .collection-info .subtitle, 
  .collection-info .btn {
    display: none !important; /* Hide extra UI for clean tile */
  }

  .collection-info h3 {
    font-size: 1.1rem !important; /* Slightly smaller to prevent cutoff */
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    text-align: center;
    width: 100%;
  }

  .smart-options-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Checkout Responsive */
  .checkout-page {
    overflow-x: hidden;
  }

  .checkout-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .checkout-form-container {
    padding: 0 !important;
  }

  .checkout-form-container form input,
  .checkout-form-container form select,
  .checkout-form-container form textarea,
  .checkout-form-container form .btn {
    width: 100% !important;
    max-width: 100%;
  }

  .order-summary {
    margin-top: 2rem;
    padding: 2rem 1.5rem !important;
  }
}

.admin-dashboard {
  background-color: #f0f2f5;
  min-height: 100vh;
  padding-bottom: 5rem;
}

.admin-nav {
  background: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 3rem;
}

.admin-section {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.admin-section h2 {
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--color-surface-container);
  padding-bottom: 1rem;
}

.admin-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.admin-edit-card {
  border: 1px solid var(--color-surface-container);
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding: 1rem;
}

.preview-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.edit-fields input, .edit-fields textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.add-product-form {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.add-product-form input, .add-product-form select {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th, .admin-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.table-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
}

.inline-input {
  width: 80px;
  padding: 0.5rem;
  border: 1px solid #ddd;
}

.btn-remove {
  background: #ff4d4f;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}

.btn-remove:hover {
  background: #d9363e;
}

.admin-link {
  background: none;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  color: var(--color-on-background);
}

.admin-link:hover {
  color: var(--color-primary-container);
}

.app {
  overflow-x: hidden;
  padding-top: 98px; /* 64px navbar + 34px announcement bar */
}

@media (max-width: 768px) {
  .app {
    padding-top: 94px; /* Adjusted for mobile navbar height */
  }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4000;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-right: 2rem;
}

.size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.size-btn {
  width: 45px;
  height: 45px;
  border: 1px solid #ddd;
  background: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.size-btn.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

.size-btn.out-of-stock {
  opacity: 0.4;
  cursor: not-allowed;
  background: #f8f8f8;
}

.oos-label {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4d4f;
  color: #fff;
  font-size: 0.5rem;
  padding: 2px 4px;
  border-radius: 2px;
}

.logo-img {
  height: 32px;
  width: auto;
  border-radius: 50%;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-primary-container);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-on-background);
}

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

.nav-actions {
  display: flex;
  gap: 1.5rem;
}

.icon-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--color-on-background);
  transition: var(--transition-smooth);
}

.icon-btn:hover {
  color: var(--color-primary-container);
  transform: scale(1.1);
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #000;
}

@media (max-width: 992px) {
  .hero-carousel {
    aspect-ratio: 16 / 9;
    height: auto;
  }
}



.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center; /* Centering content horizontally */
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.15); /* Lightened for vibrant colors */
  z-index: 2;
}

@media (max-width: 768px) {
  .slide-overlay {
    background: rgba(0,0,0,0.4); /* Full even wash for centered mobile text */
  }
}

.slide-content {
  position: relative;
  z-index: 3;
  color: #fff;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
  padding: 2rem;
}

.slide-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 4px 15px rgba(0,0,0,0.3); /* Pop against light overlay */
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease-out 0.3s;
}

.active .slide-title {
  transform: translateY(0);
  opacity: 1;
}

.slide-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.5s;
  max-width: 600px;
}

.active .slide-subtitle {
  transform: translateY(0);
  opacity: 0.9;
}

.slide-btns {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.7s;
}

.active .slide-btns {
  transform: translateY(0);
  opacity: 1;
}

/* Carousel Indicators & Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  border-color: #fff;
}

.carousel-arrow.left {
  left: 2rem;
}

.carousel-arrow.right {
  right: 2rem;
}

@media (max-width: 768px) {
  .carousel-arrow {
    display: none; /* Hide arrows on mobile to save space, rely on swipe/dots */
  }
}

.carousel-indicators {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.5rem;
  z-index: 10;
}

.indicator {
  width: 60px;
  height: 3px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.indicator.active {
  background: rgba(255,255,255,0.3);
}

.indicator-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #fff;
}

.indicator.active .indicator-progress {
  animation: progress 5s linear forwards;
}

@keyframes progress {
  from { width: 0; }
  to { width: 100%; }
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Smaller title specifically for product modal */
.modal-info .section-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.section-subtitle {
  color: var(--color-on-surface-variant);
}

.bg-white { background-color: #ffffff; }
.bg-gray { background-color: var(--color-surface-container-low); }

/* Collections */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.collection-card {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover img {
  transform: scale(1.1);
}

.collection-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #ffffff;
}

.collection-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.collection-info .btn-secondary {
  color: #ffffff;
  border-bottom-color: rgba(255,255,255,0.5);
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--color-surface-container-lowest);
  border-radius: var(--radius-md);
  padding: 1rem;
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.product-image {
  position: relative;
  height: 300px;
  background-color: var(--color-surface-container-low);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

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

.product-card:hover .product-image img {
  transform: scale(1.1) rotate(-5deg);
}

.quick-add {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary-container);
  color: white;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.product-card:hover .quick-add {
  opacity: 1;
  transform: translateY(0);
}

.product-category {
  font-size: 0.8rem;
  color: var(--color-on-surface-variant);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.product-name {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

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

.price {
  font-weight: 700;
  font-size: 1.2rem;
}

.rating {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.rating i {
  color: #ffc107;
}

/* Features */
.why-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  width: 100%;
  margin-top: 2rem;
}

.feature {
  text-align: center;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--color-primary-container);
  margin-bottom: 1.5rem;
}

.feature h3 {
  margin-bottom: 1rem;
}

.feature p {
  color: var(--color-on-surface-variant);
}

/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-container));
  color: #ffffff;
  text-align: center;
}

.newsletter h2 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.newsletter p {
  margin-bottom: 2.5rem;
  opacity: 0.8;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  border: none;
  font-family: inherit;
}

/* Footer */
.footer {
  background-color: #1a1c1c;
  color: #ffffff;
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand .logo-text {
  color: #ffffff;
}

.footer-brand p {
  opacity: 0.6;
  margin-bottom: 2rem;
  line-height: 1.8;
}

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

.social-links a {
  font-size: 1.5rem;
  opacity: 0.6;
}

.social-links a:hover {
  opacity: 1;
  color: var(--color-primary-container);
}

.footer-links h4 {
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

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

.footer-links ul li a {
  opacity: 0.6;
}

.footer-links ul li a:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.4;
}

/* Brand Story */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.story-image .main-story-img {
  width: 100%;
  height: auto;
  display: block;
}

.story-logo-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.story-logo-overlay img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.story-text {
  font-size: 1.1rem;
  color: var(--color-on-surface-variant);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* Instagram Feed */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
}

/* Product Card Image Hover Effect */
.product-image {
  position: relative;
  overflow: hidden;
  background-color: #f5f5f5;
  aspect-ratio: 1/1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-image .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
}

.product-image .primary-img {
  position: relative;
  z-index: 2;
}

/* Only trigger on devices that support hover (desktop) */
@media (hover: hover) {
  .product-card:hover .primary-img {
    opacity: 0;
    transform: scale(1.05);
  }
  
  .product-card:hover .hover-img {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* Fallback for mobile/touch */
@media (hover: none) {
  .hover-img {
    display: none;
  }
}

.quick-add {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-card:hover .quick-add {
  opacity: 1;
  transform: translateY(0);
}

.quick-add:hover {
  background: var(--color-primary-container);
  color: #fff;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.insta-item:hover img {
  transform: scale(1.1) rotate(2deg);
  filter: brightness(0.8);
}

/* Minimalist Back Navigation */
.back-navigation-container {
  margin-top: 100px;
  padding-bottom: 1rem;
}

.btn-minimal-back {
  background: transparent;
  border: none;
  color: #333;
  padding: 0.5rem 0;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-minimal-back i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.btn-minimal-back:hover {
  color: #000;
}

.btn-minimal-back:hover i {
  transform: translateX(-4px);
}

.modal-header-nav {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 20;
  padding: 1.5rem 2rem;
  margin: -2rem -2rem 2rem -2rem; /* Pull out of card-styled padding */
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-close-minimal {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
}

.btn-close-minimal:hover {
  color: #000;
}

@media (max-width: 992px) {
  .back-navigation-container {
    margin-top: 80px;
    padding-left: 1.5rem;
  }
}

/* Responsive Consolidated */
@media (max-width: 992px) {
  .menu-trigger-btn {
    background: none !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: none;
    color: #000 !important;
    font-size: 1.4rem !important;
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .menu-trigger-btn:active {
    opacity: 0.6;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 2rem 1.5rem;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -20px 0 50px rgba(0,0,0,0.15);
    z-index: 3500;
    display: flex !important;
    overflow-y: auto;
    pointer-events: all;
  }

  .nav-links.mobile-active {
    right: 0;
  }

  .nav-links li { width: 100%; border: none; }

  .menu-close-btn-item {
    display: flex !important;
    justify-content: flex-end;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee !important;
    margin-bottom: 1rem;
    pointer-events: all;
    z-index: 3001;
    position: relative;
  }
  .nav-links a {
    font-size: 1.1rem !important;
    font-weight: 600;
    padding: 1rem 0;
    display: block;
    color: #222 !important;
    text-transform: capitalize !important;
    border-bottom: 1px solid #f5f5f5;
  }

  .mobile-category-title {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #999;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
  }

  .mobile-category-item a {
    font-size: 1rem !important;
    padding: 0.5rem 0 0.5rem 1rem !important;
    border-left: 2px solid #eee;
    margin-bottom: 0 !important;
  }

  .mobile-divider {
    height: 1px;
    background: #eee;
    margin: 1.5rem 0;
  }

  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }
  
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-carousel { aspect-ratio: 16 / 9; height: auto; }
  .slide-title { 
    font-size: 2.8rem !important; 
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .slide-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 100%);
  }

  .slide-content {
    padding: 0 1.5rem;
    text-align: center;
  }

  .collections-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; padding: 0; justify-items: stretch; }
  
  .icon-btn { color: #000 !important; }
}

@media (max-width: 480px) {
  .slide-title { font-size: 2.2rem !important; }
  .logo-text { font-size: 1.2rem; }
  .products-grid { 
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important; 
    gap: 8px !important; 
    padding: 0 5px !important;
  }
  .na-name { font-size: 0.65rem !important; margin-bottom: 2px !important; }
  .na-price { font-size: 0.75rem !important; }
  .na-category { font-size: 0.55rem !important; margin-bottom: 2px !important; }
  .na-image-wrap { margin-bottom: 0.5rem !important; border-radius: 6px !important; }
  .na-discount-badge, .na-new-pill { font-size: 0.45rem !important; padding: 2px 4px !important; top: 4px !important; left: 4px !important; }
  .footer-grid-detailed { grid-template-columns: 1fr; }
}

@media (min-width: 993px) {
  .mobile-only { display: none !important; }
  .desktop-only { display: block; }
}
/* Progress Bar & Toast */
.upload-progress-container {
  width: 100%;
  background: #eee;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--color-primary-container);
  transition: width 0.3s ease;
  z-index: 1;
}

.upload-progress-text {
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  mix-blend-mode: difference;
}

.toast-notification {
  position: fixed;
  top: 80px;
  right: 16px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  max-width: 280px;
  line-height: 1.2;
}

/* Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 6000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 450px;
  height: 100vh;
  background: #ffffff;
  z-index: 6001;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

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

.cart-drawer-header {
  padding: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-close-drawer {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
}

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.empty-cart-state {
  text-align: center;
  margin-top: 4rem;
  color: #999;
}

.empty-cart-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.cart-drawer-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f9f9f9;
}

.cart-drawer-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: #f5f5f5;
}

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

.cart-drawer-item-info h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.item-price {
  font-weight: 700;
  color: #000;
  margin-top: 0.25rem;
}

.btn-remove-drawer {
  background: none;
  border: none;
  color: #ff4d4f;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.5rem;
}

.cart-drawer-footer {
  padding: 1.5rem;
  background: #fcfcfc;
  border-top: 1px solid #eee;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

/* Ensure mobile overrides happen LAST in the cascade */
@media (max-width: 768px) {
  .navbar {
    padding-top: 15px !important;
  }

  .hero-carousel {
    height: auto !important;
    aspect-ratio: 16 / 9 !important; 
    min-height: 200px;
  }

  .story-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .story-image {
    order: -1; /* Keep image on top */
    width: 100% !important;
  }

  .story-logo-overlay {
    width: 45px;
    height: 45px;
    top: 10px;
    right: 10px;
    padding: 6px;
  }

  .story-text {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    text-align: center;
  }

  .brand-story .section-title {
    text-align: center;
  }

  .brand-story .btn {
    width: 100%;
  }

  .slide {
    height: 100% !important;
    position: absolute !important;
  }

  .slide-bg {
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    object-fit: cover !important;
    object-position: center !important;
    z-index: 1;
  }

  .slide-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%) !important;
    z-index: 2;
  }

  .slide-content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important; /* Push text to BOTTOM of image */
    align-items: center !important;
    text-align: center !important;
    height: 100% !important;
    width: 100% !important;
    padding: 0 1rem 1rem !important; /* Bottom padding only */
    z-index: 3;
    position: relative;
  }

  .slide-title {
    font-size: 0.75rem !important; /* Very small, clean, readable */
    color: #fff !important;
    margin-bottom: 0.25rem !important;
    padding-bottom: 4px !important;
    border-bottom: 1px solid rgba(255,255,255,0.7) !important;
    line-height: 1.3 !important;
    font-weight: 500 !important;
    text-transform: none;
    letter-spacing: 0;
    transform: none !important;
    opacity: 1 !important;
  }

  .active .slide-title {
    transform: none !important;
    opacity: 1 !important;
  }

  .slide-title span {
    color: #d161ff !important;
    font-weight: 700;
  }

  .slide-subtitle {
    font-size: 0.7rem !important;
    margin-bottom: 0.75rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.3;
    transform: none !important;
    opacity: 1 !important;
  }

  .active .slide-subtitle {
    transform: none !important;
    opacity: 1 !important;
  }

  .slide-btns {
    width: 100% !important;
    display: flex;
    justify-content: center;
    transform: none !important;
    opacity: 1 !important;
  }

  .active .slide-btns {
    transform: none !important;
    opacity: 1 !important;
  }

  .slide-btns .btn-primary {
    width: auto !important;
    padding: 0.3rem 1.2rem !important;
    border: none !important;
    font-size: 0.6rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 3px;
    background: #5c1b52 !important;
    color: #fff !important;
  }
}

/* ==========================================
   GRAND OPENING FEATURES
   ========================================== */

/* Scrolling Announcement Bar */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 34px;
  background: linear-gradient(90deg, #1a0015, #3D103F, #1a0015);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  z-index: 5001;
  overflow: hidden;
  display: flex;
  align-items: center;
  letter-spacing: 0.04em;
}

.announcement-track {
  display: inline-block;
  white-space: nowrap;
  animation: marquee-scroll 14s linear infinite;
  padding-left: 100%;
}

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

/* Push navbar down below announcement bar */
.navbar {
  top: 34px !important;
}

/* SALE Badge on Product Cards */
.product-image {
  position: relative;
}

.sale-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #ff4d4f;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(255, 77, 79, 0.2);
}

.countdown-timer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 6px 0;
  font-size: 0.7rem;
  z-index: 5;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.countdown-val {
  font-weight: 800;
  font-size: 0.85rem;
}

.countdown-label {
  font-size: 0.5rem;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 2px;
}

.original-price {
  text-decoration: line-through;
  color: #aaa;
  font-size: 0.75rem;
  font-weight: 500;
}

.price-container {
  display: flex;
  align-items: center;
}

.price-tag-wrapper {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.discount-pill {
  background: #fff1f0;
  color: #ff4d4f;
  border: 1px solid #ffa39e;
  padding: 1px 8px;
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 700;
}

/* Grand Opening Welcome Modal */
.welcome-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.welcome-modal {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  animation: modal-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modal-pop {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.welcome-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #f0f0f0;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.welcome-modal-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35, #f7c59f);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.welcome-modal-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.welcome-modal-title span {
  color: #3D103F;
}

.welcome-modal-subtitle {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.welcome-modal-offer {
  background: linear-gradient(135deg, #1a0015, #3D103F);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.offer-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.offer-percent {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.offer-code {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.15);
  padding: 0.4rem 1rem;
  border-radius: 6px;
  border: 1px dashed rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

/* ==========================================
   ORDER SUCCESS - ORDER ID BOX
   ========================================== */
.order-id-box {
  background: linear-gradient(135deg, #1a0015, #3D103F);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin: 1.5rem auto;
  max-width: 420px;
  text-align: center;
}
.order-id-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}
.order-id-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
  font-family: monospace;
  background: rgba(255,255,255,0.1);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  margin: 0.5rem 0;
  word-break: break-all;
}
.order-id-hint {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
}

/* ==========================================
   TRACK ORDER PAGE
   ========================================== */
.track-order-page {
  min-height: 100vh;
  background: #f5f5f7;
}

.track-order-container {
  padding-top: 120px;
  padding-bottom: 4rem;
  max-width: 800px;
}

.track-order-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.track-order-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1a0015, #3D103F);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.8rem;
  color: #fff;
}

.track-order-header h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 0.5rem;
}

.track-order-header p {
  color: #666;
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.5;
}

.track-search-box {
  display: flex;
  gap: 1rem;
  background: #fff;
  padding: 1.25rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  margin-bottom: 1.5rem;
}

.track-input-group {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.track-search-icon {
  position: absolute;
  left: 1rem;
  color: #999;
  font-size: 0.9rem;
}

.track-input {
  width: 100%;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}

.track-input:focus {
  border-color: #3D103F;
}

.track-btn {
  white-space: nowrap;
  padding: 0.85rem 1.75rem !important;
  font-size: 0.9rem !important;
}

.track-error {
  background: #fff0f0;
  border: 1px solid #ffcdd2;
  border-radius: 8px;
  padding: 0.85rem 1.25rem;
  color: #c00;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

/* Track Result */
.track-result {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  overflow: hidden;
}

.track-result-header {
  background: linear-gradient(135deg, #1a0015, #3D103F);
  padding: 1.5rem 2rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.track-result-header > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.track-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
}

.track-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.track-status-pill {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status-pending       { background: #fff3cd; color: #856404; }
.status-confirmed     { background: #d1ecf1; color: #0c5460; }
.status-processing    { background: #d4edda; color: #155724; }
.status-shipped       { background: #cce5ff; color: #004085; }
.status-out-for-delivery { background: #e2d9f3; color: #4a235a; }
.status-delivered     { background: #d4edda; color: #155724; }

/* Progress Steps */
.track-steps-wrapper {
  padding: 2rem;
  overflow-x: auto;
}

.track-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-width: 560px;
  position: relative;
}

.track-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}

.track-step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #999;
  z-index: 2;
  transition: all 0.3s;
}

.track-step.done .track-step-circle {
  background: #3D103F;
  border-color: #3D103F;
  color: #fff;
}

.track-step.active .track-step-circle {
  background: #3D103F;
  border-color: #3D103F;
  color: #fff;
  box-shadow: 0 0 0 4px rgba(61,16,63,0.2);
}

.track-step-line {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #eee;
  z-index: 1;
}

.track-step.done .track-step-line { background: #3D103F; }
.track-step:last-child .track-step-line { display: none; }

.track-step-label {
  font-size: 0.7rem;
  text-align: center;
  margin-top: 0.5rem;
  color: #999;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  max-width: 70px;
  line-height: 1.3;
}

.track-step.done .track-step-label,
.track-step.active .track-step-label { color: #3D103F; }

/* Details Grid */
.track-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid #f0f0f0;
}

.track-details-card {
  padding: 1.5rem 2rem;
  border-right: 1px solid #f0f0f0;
}

.track-details-card:last-child { border-right: none; }

.track-details-card h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #3D103F;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.track-details-card p {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.track-item-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f5f5f5;
}

.track-item-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 6px;
  background: #f0f0f0;
}

.track-item-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #111;
}

.track-item-meta {
  font-size: 0.78rem;
  color: #888;
  margin-top: 0.15rem;
}

.track-help {
  padding: 1.25rem 2rem;
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #555;
  background: #fafafa;
}

.track-help a {
  color: #3D103F;
  font-weight: 700;
  text-decoration: underline;
}

/* Mobile track order */
@media (max-width: 768px) {
  .track-order-container { padding-top: 140px; }
  .track-search-box { flex-direction: column; }
  .track-btn { width: 100% !important; }
  .track-result-header { gap: 1rem; }
  .track-details-grid { grid-template-columns: 1fr; }
  .track-details-card { border-right: none; border-bottom: 1px solid #f0f0f0; }
}

/* Image Fallback Placeholders */
.image-placeholder {
  object-fit: contain !important;
  padding: 2.5rem !important;
  background-color: #f8f8f8 !important;
  filter: grayscale(1) opacity(0.5); /* Subtle branded look */
}

/* Modal thumbnails fallback */
.thumbnail .image-placeholder {
  padding: 0.5rem !important;
}

/* Reviews Section */
.reviews-section {
  background: #fff;
  padding: 6rem 0;
}

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

.review-card {
  background: #fff;
  padding: 1.75rem;
  border-radius: 20px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  border-color: #3D103F;
}

.review-stars {
  color: #FFD700;
  margin-bottom: 1rem;
  font-size: 0.8rem;
}

.review-comment {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-family: inherit;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f5f5f5;
}

.author-avatar {
  width: 38px;
  height: 38px;
  background: #3D103F;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.author-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.1rem;
}

.author-info p {
  font-size: 0.85rem;
  color: #888;
}

@media (max-width: 768px) {
  .reviews-section { padding: 4rem 0; }
  .reviews-grid { 
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.25rem;
    padding: 1rem 1.25rem 2.5rem;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar Firefox */
  }
  .reviews-grid::-webkit-scrollbar { display: none; } /* Hide scrollbar Chrome/Safari */

  .review-card {
    min-width: 85%;
    max-width: 85%;
    scroll-snap-align: center;
    padding: 1.5rem !important;
    border-radius: 16px;
  }
  
  .toast-notification {
    top: 80px;
    right: 12px;
    left: 12px;
    padding: 0.45rem 0.8rem;
    font-size: 0.75rem;
    justify-content: center;
    border-radius: 8px;
    max-width: none;
  }
  
  .welcome-modal {
    padding: 2.5rem 1.5rem;
    max-height: 90vh;
    overflow-y: auto;
    width: 95%;
  }
  
  .welcome-modal-title {
    font-size: 1.5rem;
  }
  
  .welcome-modal-subtitle {
    font-size: 0.8rem;
  }
}

/* WhatsApp Inquiry Section */
.whatsapp-inquiry-section {
  padding: 1.5rem 0;
  border-top: 1px solid #f0f0f0;
}

.whatsapp-inquiry-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  width: 100%;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.whatsapp-inquiry-btn:hover {
  background-color: #128C7E;
  color: white;
  transform: translateY(-2px);
}

.whatsapp-inquiry-btn i {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .whatsapp-inquiry-section {
    padding: 1.25rem 0;
  }
}


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

/* =============================================
   INFO PAGE — Premium Redesign
   ============================================= */

.info-page-view {
  min-height: 100vh;
  background: #f7f7f9;
}

/* Hero Banner */
.info-hero {
  background: linear-gradient(135deg, #1a0a16 0%, #4A1A3E 60%, #7b2d6e 100%);
  padding: 6rem 0 4rem;
  margin-top: 68px;
  position: relative;
  overflow: hidden;
}

.info-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.info-hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.info-breadcrumb {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.info-breadcrumb span:hover { color: #fff; }

.info-hero-icon-wrap {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  color: #fff;
  backdrop-filter: blur(8px);
}

.info-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.info-hero-sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Body */
.info-body {
  padding: 1.5rem 0 5rem;
}

/* Two-col layout */
.info-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}

/* Main Content Card */
.info-main-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  overflow: hidden;
}

.info-main-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, #4A1A3E 0%, #7b2d6e 100%);
  color: #fff;
}

.info-main-card-header i {
  font-size: 1.4rem;
  opacity: 0.9;
}

.info-main-card-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

.info-main-card-body {
  padding: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #444;
}

/* Bullet list inside info pages (parsed from "> item" syntax) */
.info-bullet-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.info-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: #faf6fa;
  border: 1px solid #f0e8ef;
  margin-bottom: 0.6rem;
  font-size: 0.98rem;
  color: #333;
  line-height: 1.5;
  transition: background 0.2s;
}

.info-bullet-list li:hover { background: #f3eaf3; }

.info-bullet-list li i {
  color: #4A1A3E;
  font-size: 0.9rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.info-bullet-list li span { flex: 1; }

.info-main-card-body p {
  margin-bottom: 0.75rem;
}

.info-main-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  border-top: 1px solid #f0f0f0;
  background: #fafafa;
  flex-wrap: wrap;
  gap: 1rem;
}

.info-last-updated {
  font-size: 0.8rem;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Sidebar */
.info-sidebar { position: sticky; top: 100px; }

.info-sidebar-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 1.75rem;
}

.info-sidebar-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #222;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-sidebar-card h4 i { color: #4A1A3E; }

.info-sidebar-card p {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.info-sidebar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 0.75rem;
}

.info-sb-whatsapp {
  background: #25D366;
  color: #fff;
}
.info-sb-whatsapp:hover { background: #1ebe5d; transform: translateY(-1px); }

.info-sb-email {
  background: #f0e8ef;
  color: #4A1A3E;
}
.info-sb-email:hover { background: #e6d5e4; transform: translateY(-1px); }

/* Quick Links */
.info-quick-links { list-style: none; padding: 0; margin: 0.5rem 0 0; }

.info-quick-links li { border-bottom: 1px solid #f5f5f5; }

.info-quick-links li:last-child { border-bottom: none; }

.info-quick-links a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0;
  font-size: 0.88rem;
  color: #555;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

.info-quick-links a i {
  font-size: 0.65rem;
  color: #4A1A3E;
  transition: transform 0.2s;
}

.info-quick-links a:hover {
  color: #4A1A3E;
  padding-left: 4px;
}

.info-quick-links a:hover i { transform: translateX(3px); }

/* Responsive */
@media (max-width: 900px) {
  .info-layout {
    grid-template-columns: 1fr;
  }
  .info-sidebar { position: static; }
  .info-hero-title { font-size: 1.75rem; }
}

/* ══════════════════════════════════════════════════════════════
   ★  MODERN NEW ARRIVALS SECTION  ★
══════════════════════════════════════════════════════════════ */

.new-arrivals-section {
  background: #f9f9f9;
  position: relative;
  overflow: hidden;
}

/* Ambient glow in background - Disabled for light theme */
.new-arrivals-section::before {
  display: none;
}

.new-arrivals-section .container {
  position: relative;
  z-index: 1;
}

/* ── Section Header ──────────────────────────────────────── */
.new-arrivals-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* Live-dot pill badge */
.na-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(32, 0, 35, 0.05);
  border: 1px solid rgba(32, 0, 35, 0.15);
  color: #200023;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.na-badge-dot {
  width: 7px;
  height: 7px;
  background: #200023;
  border-radius: 50%;
  animation: na-pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes na-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(32, 0, 35, 0.3); }
  50%       { opacity: 0.6; box-shadow: 0 0 0 5px rgba(32, 0, 35, 0); }
}

.na-title {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 800;
  color: #1a1c1c;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 1rem;
}

.na-subtitle {
  color: #666666;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  font-weight: 400;
}

/* ── Product Cards ───────────────────────────────────────── */
.na-card {
  cursor: pointer;
  position: relative;
}

/* Image wrapper */
.na-image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 12px;
  background: #eeeeee;
  margin-bottom: 0.9rem;
}

/* Primary & hover images */
.na-primary-img,
.na-hover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.na-primary-img {
  z-index: 2;
  opacity: 1;
}

.na-hover-img {
  z-index: 1;
  opacity: 0;
}

@media (hover: hover) {
  .na-card:hover .has-hover .na-primary-img {
    opacity: 0;
  }
  .na-card:hover .na-hover-img {
    opacity: 1;
    transform: scale(1.06);
  }
  .na-card:hover .na-image-wrap img {
    transform: scale(1.06);
  }
}

/* Hover CTA overlay */
.na-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1rem 1.1rem;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 10;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (hover: hover) {
  .na-card:hover .na-overlay {
    transform: translateY(0);
  }
}

.na-quick-view-btn {
  background: #200023;
  color: #ffffff;
  border: none;
  padding: 0.6rem 1.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.na-quick-view-btn:hover {
  background: #3D103F;
  color: #fff;
}

/* Badges */
.na-discount-badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  background: #200023;
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 50px;
  z-index: 15;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.na-new-pill {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  background: #ffffff;
  color: #200023;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 50px;
  z-index: 15;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Info below image */
.na-info {
  padding: 0 0.15rem;
}

.na-category {
  font-size: 0.68rem;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.na-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1a1c1c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.na-price-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.na-price {
  font-size: 0.98rem;
  font-weight: 800;
  color: #200023;
  letter-spacing: -0.01em;
}

.na-original-price {
  font-size: 0.78rem;
  color: #999999;
  text-decoration: line-through;
}

/* ── Mobile overrides ────────────────────────────────────── */
@media (max-width: 768px) {
  .new-arrivals-header {
    margin-bottom: 2rem;
  }
  .na-title {
    font-size: 2rem;
  }
  /* Always show overlay on touch devices */
  .na-overlay {
    transform: translateY(0);
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9) 0%, transparent 100%);
  }
  .na-quick-view-btn {
    font-size: 0.65rem;
    padding: 0.45rem 0.9rem;
  }
  .na-name {
    font-size: 0.78rem;
  }
  .na-price {
    font-size: 0.85rem;
  }
  .na-discount-badge,
  .na-new-pill {
    font-size: 0.5rem;
    padding: 0.2rem 0.5rem;
  }
  .na-image-wrap {
    border-radius: 8px;
  }
}
