/* ===================================================================
   UX PACIFIC SHOP - MAIN STYLESHEET
   ===================================================================
   This stylesheet contains all styles for the e-commerce platform.
   Sections are organized by page/component with clear comments.
   =================================================================== */

/* ==================== SECTION 1: CSS VARIABLES & RESET ====================
   Purpose: Global design tokens and base reset styles
   Used by: All pages
   =================================================================== */

/* CSS Custom Properties (Design Tokens) */
:root {
  --bg-main: #01010d;
  --card-bg: #050519;
  --card-bg-soft: #07071d;
  --accent: #6f4bff;
  --accent-soft: #9b8cff;
  --accent-dark: #251f33;
  --border-soft: rgba(255, 255, 255, 0.15);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --text-muted: rgba(255, 255, 255, 0.75);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  /* background-color: #01010d; */
  background-color: #000;
  color: #ffffff;
  line-height: 1.4;
}

img {
  max-width: 100%;
  display: block;
}

/* Screen reader only - for accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Skip to content link - visible when focused */
.sr-only:focus {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: auto;
  height: auto;
  padding: 1rem;
  margin: 0;
  background: var(--accent);
  color: white;
  text-decoration: none;
  clip: auto;
  overflow: visible;
}

.page {
  /* min-height: 100vh; */
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1;
}

/* ==================== SECTION 2: NAVIGATION BAR ====================
   Purpose: Site header and navigation bar
   Used by: All pages
   Features: Logo, desktop menu, mobile menu, cart icon, user menu, responsive toggle
   =================================================================== */

.site-header {
  padding: 16px 16px 0;
}

.nav-bar {
  height: 80px;
  max-width: 1240px;
  margin: 0 auto;
  background-color: #000000;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo img {
  height: 35px;
}

/* Desktop links */
.nav-links {
  list-style: none;
  display: none;
  /* mobile first: hidden */
  gap: 28px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline-block;
}

.nav-link {
  display: inline-block;
  padding: 8px 26px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-link.active {
  background-color: var(--accent-dark);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

/* Contact button desktop */
.nav-cta {
  display: inline-flex;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background-color: var(--accent);
  color: #ffffff;
  white-space: nowrap;
  transition: background-color 0.2s ease;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  width: 114px;
}

.nav-cta:hover {
  background-color: #7c59ff;
}

/* Mobile hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: #ffffff;
}

/* Mobile menu dropdown */
.nav-mobile-menu {
  max-width: 1200px;
  margin: 12px auto 0;
  background-color: #000000;
  border-radius: 24px;
  border: 1px solid var(--border-soft);
  padding: 16px 24px;
  display: none;
  flex-direction: column;
  gap: 8px;
}

.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-link {
  padding: 8px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-mobile-link:last-child {
  border-bottom: none;
  width: 200px;
  background: #000;
  display: flex;
}

.nav-mobile-cta {
  margin-top: 8px;
  text-align: center;
  border-radius: 999px;
  background-color: var(--accent);
  padding: 10px 0;
  font-weight: 600;
}

/* Desktop breakpoint for nav */
@media (min-width: 768px) {
  .site-header {
    padding: 32px 32px 0;
  }

  .nav-bar {
    padding-inline: 40px;
  }

  .nav-links {
    display: flex;
  }

  .nav-search {
    display: block; /* Show search on desktop */
  }

  .nav-cta {
    display: inline-flex;
  }

  .nav-actions {
    gap: 16px;
  }

  .nav-user {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-mobile-menu {
    display: none !important;
  }
}

/* ==================== SECTION 4: HERO SECTION ====================
   Purpose: Hero/banner section on homepage
   Used by: index.html
   Features: Animated card deck, hero text, CTA buttons
   =================================================================== */

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 16px 72px;
  display: flex;
  flex-direction: column;
  /* mobile: stack */
  gap: 32px;
}

.hero-left,
.hero-right {
  flex: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.1;
}

.hero-title-secondary {
  display: block;
  margin-top: 8px;
  font-style: italic;
  font-weight: 300;
}

.hero-text {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 460px;
}

/* ==================== SECTION 2.1: BUTTON STYLES ====================
   Purpose: Reusable button components
   Used by: All pages
   Features: Primary, ghost, outline button variants, hover effects, responsive sizing
   =================================================================== */

/* Primary button - Purple filled button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 999px;
  background-color: var(--accent);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  transition: background-color 0.2s ease, transform 0.15s ease;
  margin-top: 4px;
  width: 120px;
  height: 35px;
}

.btn-primary:hover {
  background-color: #7c59ff;
  transform: translateY(-1px);
}

.btn-primary:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary:active {
  transform: translateY(0);
}

/* Ghost button - Transparent with border */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background-color: transparent;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: var(--border-soft);
}

.btn-ghost:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Outline button - Border with hover fill effect */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background-color: transparent;
  color: #ffffff;
  font-size: 10px !important;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  width: 122px;
  height: 35px;
}

.btn-outline:hover {
  background-color: #ffffff;
  color: #000000;
}

/* Small button variant for product cards */
.btn-primary.small,
.btn-ghost.small {
  padding: 8px 16px;
  margin-top: 16px;
  font-size: 14.5px;
  width: auto;
  min-width: 100px;
  flex: 1 1 auto;
}

.hero-note {
  margin-top: 10px;
  padding: 16px 24px;
  max-width: 458px;
  border: 1px solid var(--border-soft);
  background-color: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  font-style: italic;
  font-size: 14px;
}

/* HERO IMAGES – mobile first (stacked) */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: auto;
}

/* big image */
.hero-main-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.hero-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* right column images – on mobile side-by-side */
.hero-side-imgs {
  display: flex;
  flex-direction: row;
  gap: 12px;
  width: 100%;
}

.hero-side-img {
  flex: 1;
  height: 160px;
  overflow: hidden;
}

.hero-side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero tablet layout */
@media (min-width: 640px) {
  .hero {
    padding-inline: 24px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-main-img {
    height: 320px;
  }

  .hero-side-img {
    height: 170px;
  }
}

/* Hero desktop layout – match Figma proportions */
@media (min-width: 1024px) {
  .hero {
    flex-direction: row;
    align-items: flex-end;
    gap: 80px;
    padding-inline: 0;
  }

  .hero-title {
    font-size: 60px;
  }

  .hero-right {
    flex-direction: row;
    gap: 16px;
    height: 460px;
    /* total height like Figma */
  }

  .hero-main-img {
    flex: 1;
    height: 100%;
  }

  .hero-side-imgs {
    flex-direction: column;
    width: 278px;
    /* ~278px from Figma */
  }

  .hero-side-img:first-child {
    height: 140px;
    /* 278x140 like Figma */
    margin-bottom: 16px;
  }

  .hero-side-img:last-child {
    flex: 1;
    /* fills remaining height */
    height: auto;
  }
}

/* ==================== SECTION 3: OUR STORY SECTION ====================
   Purpose: About Us/Story section with card layout
   Used by: index.html
   Features: Centered card, story text, section title styling
   =================================================================== */

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin: 16px 0 15px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 40px;
  }
}

.title-accent {
  font-style: italic;
  font-weight: 300;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  max-width: 600px;
  margin: 0 auto 50px;
}

.story {
  padding: 0 16px 64px;
}

.story-card {
  max-width: 1200px;
  margin: 36px auto;
  border: 1px solid var(--border-soft);
  background-color: var(--card-bg);
  padding: 32px 20px 40px;
  text-align: center;
  border-radius: 24px;
}

@media (min-width: 768px) {
  .story-card {
    padding: 40px 32px 48px;
  }
}

.story-text {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==================== SECTION 4: HOW IT WORKS SECTION ====================
   Purpose: Three-step process explanation cards
   Used by: index.html
   Features: Three-column grid, icon cards, responsive layout
   =================================================================== */

.how-it-works {
  padding: 0 16px 72px;
  max-width: 1200px;
  margin: 0 auto;
}

.how-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.how-card {
  flex: 1;
  border-radius: 24px;
  border: 1px solid var(--border-subtle);
  background-color: var(--card-bg-soft);
  padding: 24px 22px;
  text-align: left;
}

.how-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  text-align: center;
}

.how-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

.how-icon {
  width: 50px;
  height: 45px;
  border-radius: 12px;
  background-color: #191934;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  /* centered on all screens */
  font-size: 20px;
}

/* grid on larger screens */
@media (min-width: 768px) {
  .how-cards {
    flex-direction: row;
    margin-top: 25px;
  }
}

/* ==================== SECTION 5: SHOP BY CATEGORY SECTION ====================
   Purpose: Category cards with images and action buttons
   Used by: index.html (currently commented out in HTML)
   Features: Category grid, image cards, pill badges, action buttons
   =================================================================== */

.shop-category {
  padding: 0 16px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

/* Card look like the Figma example */
.category-card {
  position: relative;
  border-radius: 24px;
  background-color: var(--card-bg-soft);
  border: 1px solid var(--border-subtle);
  padding: 10px 10px 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.6);
}

/* Image area */
.category-img {
  position: relative;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Top-left pill (Apparel, Stickers, etc.) */
.category-pill {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
}

/* Text area */
.category-body {
  padding: 18px 14px 0;
}

.category-body h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.category-body p {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Buttons row */
.category-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Inside category cards, first button is purple filled */
.category-card .btn-outline {
  background-color: var(--accent);
  border-color: transparent;
  font-size: 10.7px;
}

.category-card .btn-outline:hover {
  background-color: #7c59ff;
}

/* Second button matches dark “Buy Now” look */
.category-card .btn-ghost {
  border-color: rgba(255, 255, 255, 0.25);
  background-color: transparent;
  font-size: 10.7px;
}

/* ==================== SECTION 5: PRODUCT GRID ====================
   Purpose: Product listing and grid display
   Used by: index.html (top products), shopAll.html (all products)
   Features: Product cards, filters, ratings, prices, action buttons
   =================================================================== */

.top-products {
  padding: 0 16px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 50px;
}

.filter-pill {
  padding: 8px 18px;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  background-color: #fff;
  color: #000;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease,
    color 0.2s ease;
}

.filter-pill.active {
  background-color: #6147bd;
  color: #fff;
}

/* product cards */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start; /* cards stay left, same width */
}

/* Desktop: 4 cards per row */
.product-card {
  flex: 0 0 calc(25% - 15px); /* 4 columns */
  max-width: calc(25% - 15px);
  border-radius: 22px;
  border: 1px solid var(--border-subtle);
  background-color: var(--card-bg-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0; /* Allow flex shrink */
}

/* Ensure product body takes available space and buttons stay at bottom */
.product-card .product-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.product-card .product-actions {
  margin-top: auto; /* Push buttons to bottom */
}

/* 3 cards per row on medium screens */
@media (max-width: 1024px) {
  .product-card {
    flex: 0 0 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
  }
}

/* 2 cards per row on tablets */
@media (max-width: 768px) {
  .product-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

/* 1 card per row on phones */
@media (max-width: 480px) {
  .product-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Ensure buttons fit on mobile */
  .product-actions {
    width: 100%;
    justify-content: space-between;
  }

  .product-actions .btn-primary.small,
  .product-actions .btn-ghost.small {
    flex: 1 1 calc(50% - 3px);
    min-width: 0;
    max-width: calc(50% - 3px);
  }
}

.product-img {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.7);
  font-size: 11px;
}

.product-body {
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
  min-height: 0; /* Allow flex shrink */
}

.product-body h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.3;
}

.product-body p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
  flex-shrink: 0;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-top: 6px;
  flex-shrink: 0;
}

.product-price {
  font-weight: 600;
}

.product-price span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: line-through;
  margin-left: 4px;
}

.product-rating {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #ffc857;
}

/* Product action buttons container */
.product-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
  width: 100%;
  align-items: stretch;
}

/* Ensure buttons fit properly in product cards - index.html and shopAll.html */
.product-actions .btn-primary.small,
.product-actions .btn-ghost.small {
  flex: 1 1 auto;
  min-width: 100px;
  width: auto;
  max-width: calc(50% - 4px);
  white-space: nowrap;
  text-align: center;
  padding: 8px 12px;
  font-size: 10.5px;
  box-sizing: border-box;
}

/* Desktop: Better button sizing */
@media (min-width: 769px) {
  .product-actions .btn-primary.small,
  .product-actions .btn-ghost.small {
    min-width: 110px;
    padding: 9px 14px;
    font-size: 11px;
  }
}

/* Tablet: Ensure buttons fit */
@media (max-width: 1024px) and (min-width: 769px) {
  .product-actions .btn-primary.small,
  .product-actions .btn-ghost.small {
    min-width: 100px;
    padding: 8px 12px;
    font-size: 10.5px;
  }
}

/* Mobile: Ensure both buttons are visible and fit */
@media (max-width: 768px) {
  .product-actions {
    justify-content: space-between;
    gap: 6px;
    width: 100%;
  }

  .product-actions .btn-primary.small,
  .product-actions .btn-ghost.small {
    flex: 1 1 calc(50% - 3px);
    min-width: 90px;
    max-width: calc(50% - 3px);
    font-size: 10px;
    padding: 8px 10px;
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* Very small mobile */
@media (max-width: 480px) {
  .product-actions {
    gap: 4px;
  }

  .product-actions .btn-primary.small,
  .product-actions .btn-ghost.small {
    flex: 1 1 calc(50% - 2px);
    min-width: 75px;
    max-width: calc(50% - 2px);
    font-size: 9.5px;
    padding: 7px 8px;
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* ==================== SECTION 6: CTA (CALL TO ACTION) SECTION ====================
   Purpose: Call-to-action sections with gradient backgrounds
   Used by: index.html, shopAll.html, contact.html
   Features: Gradient cards, centered text, action buttons
   =================================================================== */

.cta-section {
  padding: 0 16px 80px;
}

.cta-card {
  max-width: 1200px;
  margin: 64px auto;
  border-radius: 28px;
  border: 1px solid var(--border-soft);
  background: radial-gradient(
    circle at top left,
    #5f3dff,
    #22104b 40%,
    #0a081a
  );
  padding: 40px 24px 32px;
  text-align: center;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn-shop {
  width: 200px;
}

/* ==================== SECTION 7: FOOTER ====================
   Purpose: Site footer with brand info, social links, contact
   Used by: All pages
   Features: Brand logo, social media icons, contact info, policy links
   =================================================================== */

.site-footer {
  margin-top: auto;
  color: #ffffff;
  background: linear-gradient(120deg, #1a1248, #5629c5);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 16px 24px;
}

/* main container width like 1440 layout */
.footer-main,
.footer-bottom {
  width: 100%;
  max-width: 1100px;
}

/* ===== TOP SECTION ===== */
.footer-main {
  display: flex;
  justify-content: center;
}

.footer-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* ⬅ This ensures proper centering */
  justify-content: center;
  width: 100%;
}

.footer-brand img {
  display: block;
  height: 48px;
  /* Slightly bigger like Figma */
  margin: 0 auto 12px;
  /* ⬅ True centering */
}

.footer-brand p {
  margin: 0;
  font-size: 14px;
  max-width: 620px;
  line-height: 1.7;
  color: rgba(243, 246, 255, 0.9);
  margin-bottom: 15px;
}

/* Social icons row */
.footer-socials {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 28px;
}

/* reset default link styles */
.footer-socials a {
  text-decoration: none;
}

/* the rounded glass boxes */
/* .footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
} */

/* icon inside */
.footer-socials a img {
  width: 46px;
  height: 46px;
  display: block;
}

/* hover effect (same tilt you liked) */
/* .footer-socials a:hover {
  transform: rotateZ(-10deg) scale(1.06);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
} */

/* Contact line */
.footer-contact {
  display: flex;
  flex-direction: column;
  /* mobile: stacked */
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(233, 237, 255, 0.95);
  margin-top: 10px;
}

.footer-contact p {
  margin: 0;
  white-space: nowrap;
}

/* ===== BOTTOM SECTION ===== */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 24px;
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  /* mobile: stacked */
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(230, 235, 255, 0.95);
}

.footer-bottom p {
  margin: 0;
}

/* Links row */
.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 12px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Dot between links */
.footer-links span {
  display: inline-block;
  font-size: 13px;
  transform: translateY(-1px);
}
.footer-socials img:hover {
  transform: rotateZ(-12deg) scale(1.06);
  filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.18));
}

/* ===== TABLET & DESKTOP ===== */
@media (min-width: 768px) {
  .site-footer {
    padding: 50px 24px 28px;
  }

  .footer-contact {
    flex-direction: row;
    /* row on tablet+ */
    gap: 28px;
    margin-top: 16px;
    margin-bottom: 40px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    margin-top: 32px;
  }

  .footer-bottom p {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .site-footer {
    padding: 60px 32px 32px;
    min-height: 474px;
    /* match Figma height on desktop */
  }

  .footer-top {
    gap: 28px;
  }
}

/* ==================== SECTION 8: CONTACT PAGE ====================
   Purpose: Contact form and image layout
   Used by: contact.html
   Features: Two-column layout (image + form), form fields, submit button
   =================================================================== */

.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 16px 80px;
}

.contact-title {
  font-size: 40px;
}

.contact-subtitle {
  max-width: 640px;
}

/* GRID: image + form */
.contact-grid {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* LEFT IMAGE CARD */
.contact-image {
  flex: 1;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT FORM – sits directly on page background */
.contact-form {
  flex: 1.15;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 4px 0; /* just a little spacing */
  background: transparent;
  border: none;
}

/* two-column rows (desktop) */
.contact-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* labels + fields */
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-field label {
  font-size: 16px;
  color: var(--text-muted);
}

.contact-field input,
.contact-field textarea {
  height: 64px;
  width: 100%;
  background: linear-gradient(#121212, #121212) padding-box,
    linear-gradient(to right, #ffffff 0%, #2e2e3e 100%) border-box;
  border: 2px solid transparent;
  border-radius: 6px;
  color: #eee;
  padding: 16px 20px;
  font-size: 1.1rem;
  outline: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(148, 163, 184, 0.7);
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--accent);
}

/* make message big like screenshot */
.contact-field textarea {
  min-height: 180px;
  resize: vertical;
}

/* checkbox row */
.contact-footer {
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.contact-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--text-muted);
}

.contact-checkbox input {
  width: 14px;
  height: 14px;
  accent-color: var(--accent);
}

.contact-link {
  color: var(--accent-soft);
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

/* submit button – centered under form */
.contact-submit {
  margin-top: 24px;
  align-self: center;
  padding: 12px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
  width: 150px;
  height: 40px;
}

.contact-submit:hover {
  background-color: #7c59ff;
  transform: translateY(-1px);
}

.contact-submit:active {
  transform: translateY(0);
}

.contact-submit:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ---------- RESPONSIVE ------------ */

/* tablet / desktop: two columns */
@media (min-width: 900px) {
  .contact-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }

  .contact-row {
    flex-direction: row;
  }

  .contact-field {
    flex: 1;
  }
}

/* small screens tweaks */
@media (max-width: 480px) {
  .contact-title {
    font-size: 32px;
  }

  .contact-submit {
    width: 156px;
    justify-content: center;
  }

  .contact-form {
    gap: 16px;
  }
}

/* ==================== SECTION 9: ANIMATED HERO SECTION ====================
   Purpose: Scroll-animated hero with glass panel and card deck
   Used by: index.html
   Features: Scroll-triggered card animations, glass panel effect, sticky viewport
   =================================================================== */

/* Scroll container - Tall for smooth scroll duration */
.hero-scroll-container {
  position: relative;
  height: 300vh;
  background: #000; /* same as navbar */
}

/* Keeps hero centered while scrolling */
.sticky-viewport {
  position: sticky;
  top: 0;
  height: 85vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* GLASS PANEL THAT HOLDS TEXT + CARDS */
/* GLASS PANEL WITH SOFT GLOW EDGE */
/* HERO GLASS PANEL – refined to look cleaner & more premium */
.hero-glass-box {
  position: relative;
  width: min(1190px, 92vw);
  height: 80vh;
  max-height: 620px;

  padding: 64px 56px 96px;
  border-radius: 40px;

  /* softer, less harsh spotlight */
  background: radial-gradient(
      circle at top,
      rgba(255, 255, 255, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, #050509 0%, #020205 100%);
  background-color: #050509;

  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.9), inset 0 0 48px rgba(0, 0, 0, 0.7);

  overflow: hidden;
}

/* soft top highlight instead of full “sheet” glow */
.hero-glass-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.14),
    transparent 55%
  );
  opacity: 0.6;
  pointer-events: none;
}

/* TEXT BLOCK */
.cards-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  padding: 0 20px;
}

.cards-hero-title {
  font-size: 3.2rem;
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.cards-hero-title span {
  color: #ffffff;
  font-style: italic;
  font-weight: 300;
}

.cards-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.62);
  max-width: 540px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

/* button you already had – kept same behaviour */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 999px;
  background-color: var(--accent);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  background-color: #7c59ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(111, 75, 255, 0.4);
}

/* -------------------------------------------------------------- */
/* CARDS – still controlled by your JS (top:100% + transform)     */
/* -------------------------------------------------------------- */

.hero-card {
  position: absolute;
  top: 100%; /* anchored near bottom area */
  left: 50%;

  width: 190px;
  height: 260px;
  border-radius: 26px;

  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  overflow: hidden;

  /* JS will override transform during scroll */
  transform: translate(-50%, -50%);
  will-change: transform;
  z-index: 5;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* middle card stays above others */
.card-5 {
  z-index: 20;
}

@media (min-width: 1024px) {
  .cards-hero-title {
    font-size: 46px;
  }
  .hero-card {
    width: 220px;
    height: 300px;
  }
}

@media (max-width: 480px) {
  .cards-hero-title {
    font-size: 28px;
  }
  .hero-card {
    width: 160px;
    height: 220px;
  }

  .cards-hero-subtitle {
    font-size: 16px;
  }
}

/* ==================== SECTION 10: SHOP IMAGE HOVER EFFECT ====================
   Purpose: Subtle hover animation for shop images
   Used by: index.html (currently commented out in HTML)
   Features: Slight rotation on hover
   =================================================================== */

.shop-image {
  width: 80px;
  display: flex;
  margin: 80px;
}

/* Rotate half degree on hover */
.shop-image:hover {
  transform: rotate(0.5deg);
  transition: transform 0.3s ease;
}

/* ======================================================
   ShopAll page — unified visual style + responsive rules
   Scoped to body.shopAll (no nesting, ready for browsers)
   ====================================================== */

/* ==================== SECTION 16: SHOP ALL PAGE ====================
   Purpose: Complete product listing page with filters
   Used by: shopAll.html
   Features: Sidebar filters, product grid, category filtering, responsive layout
   =================================================================== */

body.shopAll {
  --accent: #7c59ff; /* purple accent */
  --card-bg: rgba(8, 6, 12, 0.85);
  --card-bg-soft: rgba(12, 10, 18, 0.85);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --text-muted: rgba(255, 255, 255, 0.56);
}

/* ---------- main container ---------- */
body.shopAll .shop-all-main {
  max-width: 1200px;
  margin: 40px auto 80px;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ---------- header ---------- */
body.shopAll .shop-all-header {
  margin-bottom: 32px;
  text-align: center;
}
body.shopAll .shop-all-title {
  font-size: clamp(2.4rem, 3.4vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
body.shopAll .shop-all-title span {
  font-style: italic;
  font-weight: 300;
}
body.shopAll .shop-all-subtitle {
  max-width: 720px;
  margin: 0 auto 26px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ---------- grid layout (sidebar + products) ---------- */
body.shopAll .shop-all-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 46px;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}

/* ---------- filter sidebar: look + interaction ---------- */
body.shopAll .shop-all-filters {
  background: radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.06),
      transparent 55%
    ),
    rgba(8, 8, 12, 0.85);
  border-radius: 24px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.7),
    inset 0 0 40px rgba(255, 255, 255, 0.01);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

/* pill buttons inside sidebar */
body.shopAll .shop-all-filters .filter-pill {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(2, 3, 8, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.18s ease, box-shadow 0.18s ease;
  text-align: left;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

/* hover and active states */
body.shopAll .shop-all-filters .filter-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}
body.shopAll .shop-all-filters .filter-pill.active {
  background: linear-gradient(
    90deg,
    rgba(124, 89, 255, 0.95),
    rgba(115, 72, 255, 0.9)
  );
  border-color: transparent;
  text-align: center;
  box-shadow: 0 18px 40px rgba(124, 89, 255, 0.12),
    0 6px 20px rgba(0, 0, 0, 0.6);
  transform: translateY(-2px);
}

/* ---------- product grid (uses grid to prevent collapse when hiding) ---------- */
body.shopAll .shop-all-grid,
body.shopAll .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  align-items: start;
}

/* ---------- cards (scoped to shopAll) with color + animation ---------- */
body.shopAll .shop-all-grid .product-card,
body.shopAll .product-grid .product-card {
  flex: none !important;
  width: 100% !important;
  max-width: 100% !important;
  border-radius: 22px;
  border: 1px solid var(--border-subtle);
  background: linear-gradient(
    180deg,
    rgba(18, 16, 20, 0.9),
    rgba(10, 8, 12, 0.9)
  );
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px; /* uniform desktop height */
  transition: transform 0.22s cubic-bezier(0.16, 0.9, 0.3, 1),
    box-shadow 0.22s ease;
  will-change: transform, box-shadow;
}

/* card hover lift + glow */
body.shopAll .shop-all-grid .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 90px rgba(6, 4, 12, 0.6), 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* subtle inner border line near top for elegance */
body.shopAll .shop-all-grid .product-card::before {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0)
  );
  margin: 0;
}

/* ---------- image area with gentle zoom on hover ---------- */
body.shopAll .shop-all-grid .product-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
body.shopAll .shop-all-grid .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.25, 1);
}
body.shopAll .shop-all-grid .product-card:hover .product-img img {
  transform: scale(1.06);
}

/* tag badge on the image (top-left) */
body.shopAll .product-img .product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(6, 6, 8, 0.75);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
}

/* ---------- body / meta inside card ---------- */
body.shopAll .shop-all-grid .product-body,
body.shopAll .shop-all-grid .product-info {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
  min-height: 0; /* for proper flex shrink */
}

body.shopAll .product-title,
body.shopAll .shop-all-grid .product-title {
  font-size: 1.05rem;
  margin: 0;
  color: #fff;
}

/* description slightly muted */
body.shopAll .product-desc,
body.shopAll .shop-all-grid .product-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  line-height: 1.35;
}

/* price + meta */
body.shopAll .product-price,
body.shopAll .product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #fff;
}
body.shopAll .product-price .cut {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: line-through;
  margin-left: 8px;
  font-size: 0.9rem;
}

/* actions */
body.shopAll .product-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* small buttons inside cards */
body.shopAll .btn-primary.small,
body.shopAll .btn-ghost.small {
  padding: 11px 14px;
  font-size: 10.5px;
  min-width: 50px;
  border-radius: 999px;
  transition: transform 0.14s ease, box-shadow 0.14s ease;
  margin-left: 18px;
}
body.shopAll .btn-primary.small:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(124, 89, 255, 0.12);
}

/* ---------- hide when filtered (JS toggles .is-hidden or [hidden]) ---------- */
body.shopAll .product-card[hidden],
body.shopAll .product-card.is-hidden {
  display: none !important;
}

/* ---------- CTA card below ---------- */
body.shopAll .cta-card {
  max-width: 1200px;
  margin: 64px auto;
  border-radius: 28px;
  padding: 40px 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  background: linear-gradient(
    120deg,
    rgba(95, 61, 255, 0.06),
    rgba(34, 16, 75, 0.05)
  );
}

/* body.shopAll .shop-all-filters {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00));
    border: 1px solid rgba(255,255,255,0.04);
    box-shadow: 0 14px 30px rgba(0,0,0,0.45);
    justify-content: center;
  } */

/* ==================== SECTION 16.1: SHOP ALL PAGE - RESPONSIVE STYLES ====================
   Purpose: Mobile and tablet responsive adjustments for shopAll page
   Used by: shopAll.html
   Features: Sidebar stacking, filter pills layout, product grid adjustments, button visibility
   =================================================================== */

/* ---------- Responsive: Stack sidebar above products on mobile/tablet ---------- */
@media (max-width: 1000px) {
  /* Layout: Stack filters above products */
  body.shopAll .shop-all-layout {
    grid-template-columns: 1fr; /* stack vertically */
  }

  /* Filters: Horizontal layout on mobile */
  body.shopAll .shop-all-filters {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
    border-radius: 14px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0)
    );
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
    justify-content: center;
  }

  /* Filter pills: Two columns on mobile */
  body.shopAll .shop-all-filters .filter-pill {
    flex: 1 1 calc(50% - 8px);
    min-width: 140px;
    text-align: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
  }
  body.shopAll .shop-all-filters .filter-pill.active {
    background: linear-gradient(
      90deg,
      rgba(124, 89, 255, 0.95),
      rgba(115, 72, 255, 0.9)
    );
    color: #fff;
    box-shadow: 0 12px 30px rgba(124, 89, 255, 0.08);
  }

  /* Product grid: Two columns on mobile/tablet */
  body.shopAll .shop-all-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  /* Product cards: Compact sizing for mobile */
  body.shopAll .shop-all-grid .product-card {
    min-height: auto !important;
    height: auto;
    border-radius: 14px;
  }

  /* Product images: Smaller height on mobile */
  body.shopAll .shop-all-grid .product-img {
    height: 150px !important;
  }

  /* Hide long descriptions for compact mobile look */
  body.shopAll .shop-all-grid .product-desc,
  body.shopAll .shop-all-grid .product-card p,
  body.shopAll .shop-all-grid .product-meta-line,
  body.shopAll .shop-all-grid .product-rating {
    display: none !important;
  }

  /* Product action buttons: Show both buttons on mobile */
  body.shopAll .product-actions {
    justify-content: space-between;
    width: 100%;
    margin-left: 0;
    gap: 8px;
    flex-wrap: wrap;
  }

  /* View Details button (ghost): Ensure visibility on mobile */
  body.shopAll .btn-ghost.small {
    display: inline-flex !important;
    flex: 1 1 calc(50% - 4px);
    min-width: 90px;
    max-width: calc(50% - 4px);
    font-size: 10px;
    padding: 9px 10px;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Add to Cart button (primary): Flexible sizing on mobile */
  body.shopAll .btn-primary.small {
    display: inline-flex !important;
    flex: 1 1 calc(50% - 4px);
    text-align: center;
    min-width: 90px;
    max-width: calc(50% - 4px);
    font-size: 10px;
    padding: 9px 10px;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* ---------- Small desktop windows adjustments (tablet landscape) ---------- */
@media (max-width: 1100px) and (min-width: 769px) {
  body.shopAll .shop-all-grid .product-card {
    min-height: 420px;
    height: auto;
    max-height: none;
  }

  body.shopAll .btn-ghost.small,
  body.shopAll .btn-primary.small {
    min-width: 100px;
    font-size: 10.5px;
    padding: 10px 12px;
  }

  body.shopAll .shop-all-grid .product-img {
    height: 190px;
  }
}

/* fallback for very small phones */
@media (min-width: 769px) and (max-width: 840px) {
  body.shopAll .shop-all-grid {
    grid-template-columns: 2fr !important;
  }
}

/* ==================== SECTION 13: TOP PRODUCTS SECTION ====================
   Purpose: Featured products section on homepage
   Used by: index.html
   Features: Product grid, category box, view all button
   =================================================================== */

/* Horizontal divider line */
.top-products-line {
  width: 100%;
  max-width: 900px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 30px auto 24px;
}

/* View All Products button wrapper */
.top-products-btn-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

/* Purple button */
.view-all-btn {
  display: inline-flex;
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--accent);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease;
}

.view-all-btn:hover {
  background: #7c59ff;
  transform: translateY(-2px);
}

/* Category display box (horizontal list) */
.category-box {
  max-width: 690px;
  margin: 20px auto 0;
  padding: 12px 18px;
  background: rgba(15, 15, 25, 0.85);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  margin-bottom: 36px;
}
/* Category text inside the box */
.category-box span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  user-select: none;
  cursor: default;
  position: relative;
  padding: 0 10px;
}

/* Vertical separator line */
.category-box span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.18);
}

/* Category box - Mobile responsive adjustments */
@media (max-width: 480px) {
  .category-box {
    padding: 12px 14px;
    gap: 8px;
    flex-wrap: wrap; /* allow multiple rows */
    justify-content: center;
    background: rgba(20, 20, 32, 0.9);
    border-radius: 16px;
  }

  /* Each item looks like a small soft pill */
  .category-box span {
    font-size: 12.8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.88);
  }

  /* Remove vertical separator lines for mobile */
  .category-box span::after {
    display: none !important;
  }
}

/* ==================== SECTION 11: POLICIES PAGE ====================
   Purpose: Policy content display with tabs/sections
   Used by: policies.html
   Features: Policy sections, content blocks, responsive typography
   =================================================================== */

.policy-section {
  display: none;
}

.policy-section.active {
  display: block;
}
/* POLICY CONTENT STYLING */
.policy-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.policy-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.policy-intro {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
}

.policy-block {
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-block h2 {
  font-size: 20px;
  margin-bottom: 14px;
}

.policy-block h3 {
  font-size: 16px;
  margin: 18px 0 10px;
  color: rgba(255, 255, 255, 0.85);
}

.policy-block p {
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
}

.policy-block ul {
  padding-left: 18px;
  margin-bottom: 12px;
}

.policy-block ul li {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.policy-note {
  font-size: 13px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}

/* ==================== SECTION 11.1: POLICIES PAGE - RESPONSIVE ====================
   Purpose: Mobile and tablet responsive styles for policies page
   Used by: policies.html
   Features: Stacked layout, adjusted typography, compact spacing
   =================================================================== */

/* Tablet & below */
@media (max-width: 768px) {
  /* Layout: sidebar goes on top */
  .shop-all-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Sidebar → horizontal scroll */
  .shop-all-filters {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .shop-all-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-pill {
    flex-shrink: 0;
    font-size: 13px;
    padding: 8px 14px;
    white-space: nowrap;
  }

  /* Content box */
  .policy-content {
    padding: 22px;
  }

  .policy-title {
    font-size: 26px;
  }

  .policy-meta {
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
  }

  .policy-intro {
    font-size: 14px;
    line-height: 1.7;
  }

  .policy-block {
    margin-top: 22px;
    padding-top: 22px;
  }

  .policy-block h2 {
    font-size: 18px;
  }

  .policy-block h3 {
    font-size: 15px;
  }

  .policy-block p,
  .policy-block li {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .policy-content {
    padding: 18px;
  }

  .policy-title {
    font-size: 22px;
  }

  .policy-intro {
    font-size: 13.5px;
  }

  .policy-block h2 {
    font-size: 17px;
  }

  .policy-block h3 {
    font-size: 14px;
  }

  .policy-block p,
  .policy-block li {
    font-size: 13.5px;
  }
}

/* ==================== SECTION 12: PRODUCT PAGE ====================
   Purpose: Individual product detail page
   Used by: product.html
   Features: Image gallery, product info, size selector, quantity selector, tabs
   =================================================================== */

.product-page {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* IMAGE GALLERY */
.product-gallery {
  position: relative;
}

.main-image {
  position: relative;
  background: #111;
  border-radius: 18px;
  overflow: hidden;
}

.main-image img {
  width: 100%;
  display: block;
  height: 650px;
  object-fit: cover;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 26px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}

.thumbnail-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.thumb {
  width: 70px;
  border-radius: 10px;
  opacity: 0.5;
  cursor: pointer;
  border: 2px solid transparent;
}

.thumb.active {
  opacity: 1;
  border-color: #7c5cff;
}

/* PRODUCT INFO */
.product-info h1 {
  font-size: 34px;
  margin-bottom: 12px;
}

.description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 18px;
}

.rating {
  font-size: 14px;
  color: gold;
  margin-bottom: 14px;
}

.rating span {
  color: rgba(255, 255, 255, 0.6);
}

.price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.price .current {
  font-size: 28px;
  font-weight: 700;
}

.price .old {
  text-decoration: line-through;
  opacity: 0.5;
}

.badge {
  background: #7c5cff;
  padding: 4px 10px;
  border-radius: 14px;
  font-size: 12px;
}

.option {
  margin-bottom: 18px;
}

.option label {
  font-size: 13px;
  display: block;
  margin-bottom: 6px;
}
.icon {
  height: 40px;
  width: 40px;
}

.option select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Product buttons container */
.product-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  width: 100%;
}

.buy-btn {
  flex: 1;
  padding: 14px;
  font-size: 16px;
  background: linear-gradient(135deg, var(--accent), #8b6fff);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(111, 75, 255, 0.2);
}

.buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(111, 75, 255, 0.4);
  background: linear-gradient(135deg, #8b6fff, var(--accent));
}

.buy-btn:active {
  transform: translateY(0);
}

.buy-btn:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.buy-now-btn {
  background: linear-gradient(#01010d);
  box-shadow: 0 2px 8px rgba(111, 75, 255, 0.3);
}

.buy-now-btn:hover {
  box-shadow: 0 8px 24px rgba(111, 75, 255, 0.5);
  background: linear-gradient(135deg, #7c59ff, var(--accent));
}

/* Product buttons responsive */
@media (max-width: 768px) {
  .product-buttons {
    flex-direction: column;
    gap: 30px;
  }

  .buy-btn {
    width: 100%;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .product-page {
    grid-template-columns: 1fr;
  }
}

/* ==================== SECTION 12.1: PRODUCT PAGE - TRUST CARDS ====================
   Purpose: Trust indicators on product page
   Used by: product.html
   Features: Security badges, payment options, refund policy
   =================================================================== */

.right-trust {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  line-height: 0;
}

.trust-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.trust-card h4 {
  font-size: 14px;
}

.trust-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* ==================== SECTION 12.2: PRODUCT PAGE - TABS & DETAILS ====================
   Purpose: Product description tabs and specifications
   Used by: product.html
   Features: Tab navigation, description content, feature lists, file specs
   =================================================================== */

.product-extra {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.product-tabs {
  display: flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.tab-btn {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 12px;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-soft);
  color: rgba(255, 255, 255, 0.9);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--accent), #8b6fff);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 2px 8px rgba(111, 75, 255, 0.3);
}

/* ---------- TAB CONTENT CARD ---------- */
.tab-box {
  display: none;
  padding: 34px 36px;
  border-radius: 22px;
  background: radial-gradient(
      circle at top left,
      rgba(124, 92, 255, 0.12),
      transparent 45%
    ),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.tab-box.active {
  display: block;
}

.tab-box h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

/* ---------- FEATURE LIST ---------- */
.feature-list {
  margin-top: 16px;
  padding-left: 18px;
}

.feature-list li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
}

/* ---------- FILE SPEC ROWS ---------- */
#specs {
  padding: 0;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 36px;
  font-size: 15px;
}

.spec-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-row span {
  color: rgba(255, 255, 255, 0.7);
}

.spec-row strong {
  color: #fff;
  font-weight: 500;
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
  .product-tabs {
    gap: 6px;
  }

  .tab-btn {
    font-size: 13px;
    padding: 7px;
  }

  .spec-row {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ==================== SECTION 12.3: PRODUCT PAGE - RELATED PRODUCTS ====================
   Purpose: Related product recommendations
   Used by: product.html
   Features: Product grid, cards with images, ratings, prices
   =================================================================== */

.related-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.section-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* GRID */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* CARD */
.related-card {
  background: linear-gradient(180deg, #12121c, #0d0d16);
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: all 0.35s ease;
}

.related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(124, 92, 255, 0.18),
    0 0 0 1px rgba(124, 92, 255, 0.35);
}

/* IMAGE */
.card-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

/* WISHLIST */
.wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
}

/* BODY */
.card-body {
  padding: 16px 6px 6px;
}

.title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title-row h4 {
  font-size: 16px;
  font-weight: 500;
}

.rating {
  font-size: 14px;
  color: #ffc75a;
}

/* TEXT */
.desc {
  font-size: 13px;
  color: #b6b6c9;
  margin: 10px 0;
  line-height: 1.5;
}

.size {
  font-size: 13px;
  color: #8f8fb1;
  margin-bottom: 12px;
}

/* PRICE */
.price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.price {
  font-size: 18px;
  font-weight: 600;
}

.old {
  font-size: 13px;
  color: #777;
  text-decoration: line-through;
}

.off {
  font-size: 12px;
  background: rgba(124, 92, 255, 0.2);
  color: #9f8cff;
  padding: 3px 8px;
  border-radius: 8px;
}

/* BUTTON */
/* Related products buy button */
.related-card .buy-btn {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c5cff, #6b7cff);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-weight: 600;
}

.related-card .buy-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(124, 92, 255, 0.4);
}

/* MOBILE */
@media (max-width: 480px) {
  .section-title {
    font-size: 22px;
  }
}

/* ==================== SECTION 12.4: PRODUCT PAGE - SIZE & QUANTITY SELECTORS ====================
   Purpose: Product options (size, quantity)
   Used by: product.html
   Features: Size buttons, quantity selector with +/- buttons
   =================================================================== */

.block {
  margin-top: 28px;
}

.block label {
  display: block;
  font-size: 15px;
  color: #cfd0e8;
  margin-bottom: 12px;
}

/* Size selection buttons */
.sizes {
  display: flex;
  gap: 12px;
}

.sizes button {
  width: 54px;
  height: 54px;
  background: linear-gradient(180deg, #141420, #0c0c14);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e6e6f0;
  font-size: 18px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.sizes button:hover {
  border-color: rgba(124, 92, 255, 0.6);
}

.sizes .active {
  background: linear-gradient(180deg, #3f2f7a, #2a1f55);
  border-color: #7c5cff;
  box-shadow: 0 0 0 2px rgba(124, 92, 255, 0.35);
}

/* Quantity selector with increment/decrement buttons */
.qty {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(180deg, #141420, #0c0c14);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.qty button {
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  color: #e6e6f0;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.qty button:hover {
  background: rgba(124, 92, 255, 0.15);
}

.qty span {
  width: 48px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==================== SECTION 12.5: PRODUCT PAGE - IMAGE SLIDER ====================
   Purpose: Product image gallery with navigation
   Used by: product.html
   Features: Main image display, thumbnail navigation, dot indicators, prev/next buttons
   =================================================================== */

.main-image {
  position: relative;
}

/* Dot indicators for image slider */
.image-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.image-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: 0.3s;
}

.image-dots span.active {
  background: #7c5cff;
  transform: scale(1.2);
}

/* Slider counter indicator */
.slider-indicator {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #aaa;
}

/* Hide UXPacific options initially (if platform selector is used) */
#uxOptions {
  display: none;
}

/* ==================== NEW PAGES STYLES ==================== */

/* Cart Badge in Nav */
/* Search bar in header */
.nav-search {
  position: relative;
  display: none; /* Hidden by default, show on desktop */
  flex: 1;
  max-width: 300px;
  margin: 0 16px;
}

.nav-search-input {
  width: 100%;
  padding: 8px 40px 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}

.nav-search-input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.nav-search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.nav-search-button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.nav-search-button:hover {
  color: var(--accent);
}

.nav-search-button svg {
  width: 18px;
  height: 18px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Wishlist icon in header */
.nav-wishlist {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.2s ease;
  text-decoration: none;
}

.nav-wishlist:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nav-wishlist svg {
  width: 22px;
  height: 22px;
}

.nav-wishlist-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
}

/* Improved Cart Icon - Matches website dark theme */
.nav-cart {
  position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 10px;
    background-color: #000000;
    /* border: 1px solid var(--border-subtle); */
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.nav-cart:hover {
  /* background-color: rgba(111, 75, 255, 0.15); */
  /* border-color: rgba(111, 75, 255, 0.3); */
  transform: translateY(-1px);
  /* box-shadow: 0 4px 12px rgba(111, 75, 255, 0.2); */
}

.nav-cart:active {
  transform: translateY(0);
}

.nav-cart:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-cart img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease, filter 0.2s ease;
  object-fit: contain;
}

.nav-cart:hover img {
  transform: scale(1.1);
  filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(111, 75, 255, 0.5));
}

#cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: linear-gradient(135deg, #ff4444, #ff6666);
  color: white;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 11px;
  font-weight: 700;
  border: 2px solid #000;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(255, 68, 68, 0.4);
  animation: pulse 2s infinite;
  z-index: 10;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Toast animations */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* User Menu - Pill Design */
.nav-user {
  position: relative;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 6px 9px 6px 12px;
  border-radius: 999px;
  background-color: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #fff;
  min-height: 44px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-user:hover {
  background-color: #0d0d0d;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-user:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-user.active {
  /* background-color: #8a8590; */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #2c1b3f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}

.user-avatar svg {
  width: 18px;
  height: 18px;
  stroke: white;
  fill: none;
}

.user-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.user-name {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-role {
  display: none; /* Hide role, show only name like in image */
}

/* Dropdown chevron for user menu */
.nav-user::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255, 255, 255, 0.7);
  margin-left: auto;
  transition: transform 0.2s ease;
}

.nav-user.active::after {
  transform: rotate(180deg);
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 8px;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 1000;
  animation: slideDown 0.2s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-user.active .user-dropdown {
  display: flex;
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.user-dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.user-dropdown-item svg {
  width: 18px;
  height: 18px;
  fill: var(--text-muted);
  flex-shrink: 0;
}

.user-dropdown-item:hover svg {
  fill: var(--accent);
}

.user-dropdown-divider {
  height: 1px;
  background: var(--border-soft);
  margin: 4px 0;
}

.user-dropdown-item.logout {
  color: #ff4444;
}

.user-dropdown-item.logout:hover {
  background-color: rgba(255, 68, 68, 0.1);
}

.user-dropdown-item.logout svg {
  fill: #ff4444;
}

/* Mobile: Hide user name on small screens, show only avatar */
@media (max-width: 480px) {
  .nav-user .user-info {
    display: none;
  }

  .nav-user {
    padding: 8px;
    min-width: 44px;
  }

  .user-avatar {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .nav-actions {
    display: flex;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==================== AUTH PAGES (Sign In/Sign Up) ==================== */
.auth-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.auth-container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.auth-card {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 40px;
}

.auth-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 8px 0;
  text-align: center;
}

.auth-subtitle {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 32px;
  font-size: 15px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  /* gap: 8px; */
}

.form-field label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.form-field input.error {
  border-color: #ff4444;
}

.field-error {
  color: #ff4444;
  font-size: 12px;
  display: none;
}

.form-field input.error + .field-error {
  display: block;
}

.field-hint {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 4px;
}

.form-field input:focus + .field-hint {
  color: var(--accent-soft);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--text-muted);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.forgot-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
}

.forgot-link:hover {
  text-decoration: underline;
}

.auth-submit {
  width: 100%;
  margin-top: 8px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--text-muted);
  font-size: 14px;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-soft);
}

.social-auth {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-btn {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.2s ease;
}

.social-btn:hover {
  background: rgba(111, 75, 255, 0.15);
  border-color: rgba(111, 75, 255, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(111, 75, 255, 0.2);
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 14px;
}

.auth-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.auth-link:hover {
  text-decoration: underline;
}

.error-message {
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid rgba(255, 68, 68, 0.3);
  color: #ff4444;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 16px;
}

.success-message {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #4caf50;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 16px;
}

/* ==================== CART PAGE ==================== */
.cart-section {
  padding: 40px 20px;
  max-width: 1240px;
  margin: 0 auto;
}

.cart-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 32px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
}

.cart-items-wrapper {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 24px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: all 0.2s ease;
}

.cart-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-soft);
}

.cart-item-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  /* gap: 0px; */
}

.cart-item-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.cart-item-meta {
  font-size: 14px;
  color: var(--text-muted);
}

.cart-item-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 4px 8px;
}

.cart-item-qty button {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.cart-item-qty button:hover {
  background: rgba(111, 75, 255, 0.2);
  border-color: rgba(111, 75, 255, 0.4);
  transform: scale(1.05);
}

.cart-item-qty button:active {
  transform: scale(0.95);
}

.cart-item-qty span {
  min-width: 30px;
  text-align: center;
  font-weight: 500;
}

.remove-item {
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid rgba(255, 68, 68, 0.3);
  color: #ff4444;
  font-size: 14px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.remove-item:hover {
  background: rgba(255, 68, 68, 0.2);
  border-color: rgba(255, 68, 68, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 68, 68, 0.2);
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
}

.cart-empty img {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  opacity: 0.5;
}

.cart-empty h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.cart-empty p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.cart-summary-wrapper {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.cart-summary {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 24px;
}

.summary-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: var(--text-muted);
}

.summary-row.total-row {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-top: 8px;
}

.summary-divider {
  height: 1px;
  background: var(--border-soft);
  margin: 8px 0;
}

.checkout-btn {
  width: 100%;
  margin-bottom: 12px;
  text-align: center;
}

.checkout-btn.checkout-signin-prompt {
  background: linear-gradient(135deg, var(--accent), #8b6fff);
  border: 1px solid rgba(111, 75, 255, 0.3);
}

.checkout-btn.checkout-signin-prompt:hover {
  background: linear-gradient(135deg, #8b6fff, var(--accent));
  box-shadow: 0 4px 16px rgba(111, 75, 255, 0.3);
}

.continue-shopping {
  width: 100%;
  text-align: center;
}

.cart-security {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}

.security-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text-muted);
}

.security-item img {
  width: 40px;
  height: 40px;
}

/* ==================== CHECKOUT PAGE ==================== */
.checkout-section {
  padding: 40px 20px;
  max-width: 1240px;
  margin: 0 auto;
}

.checkout-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 32px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
}

.checkout-form-wrapper {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 32px;
}

.checkout-block {
  margin-bottom: 32px;
}

.checkout-block:last-child {
  margin-bottom: 0;
}

.block-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-option {
  display: flex;
  align-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid var(--border-soft);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.payment-option:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
}

.payment-option input[type="radio"] {
  margin-right: 12px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.payment-option input[type="radio"]:checked + .payment-option-content {
  color: var(--accent);
}

.payment-option:has(input[type="radio"]:checked) {
  border-color: var(--accent);
  background: rgba(111, 75, 255, 0.1);
}

.payment-option-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.payment-icon {
  font-size: 24px;
}

.card-details {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}

.checkout-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
}

.checkout-summary-wrapper {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.checkout-summary {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 24px;
}

.checkout-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  max-height: 300px;
  overflow-y: auto;
}

.checkout-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.checkout-item-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.checkout-item-info {
  flex: 1;
  font-size: 14px;
}

.checkout-item-name {
  font-weight: 500;
  margin-bottom: 4px;
}

.checkout-item-details {
  color: var(--text-muted);
  font-size: 12px;
}

.checkout-item-price {
  font-weight: 600;
  color: var(--accent);
}

.checkout-security {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}

/* ==================== 404 ERROR PAGE ==================== */
.error-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.error-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.error-content {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 60px 40px;
}

.error-code {
  font-size: 120px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* Fallback for browsers that don't support text-fill-color */
  margin: 0;
  line-height: 1;
}

.error-title {
  font-size: 32px;
  font-weight: 700;
  margin: 16px 0;
}

.error-message {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 968px) {
  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary-wrapper,
  .checkout-summary-wrapper {
    position: static;
    margin-top: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .checkout-actions {
    flex-direction: column;
  }

  .checkout-actions .btn-ghost {
    order: 2;
  }

  .checkout-actions .btn-primary {
    order: 1;
  }
}

@media (max-width: 640px) {
  .auth-card {
    padding: 24px 20px;
  }

  .auth-title {
    font-size: 28px;
  }

  .auth-subtitle {
    font-size: 14px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .checkbox-label {
    font-size: 13px;
  }

  .social-btn {
    font-size: 14px;
    padding: 10px 14px;
  }

  .cart-section,
  .checkout-section {
    padding: 20px 16px;
  }

  .cart-title,
  .checkout-title {
    font-size: 28px;
  }

  .cart-item {
    flex-direction: column;
  }

  .cart-item-image {
    width: 100%;
    height: 200px;
  }

  .error-code {
    font-size: 80px;
  }

  .error-title {
    font-size: 24px;
  }

  .checkout-form-wrapper {
    padding: 20px;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-cart {
    padding: 8px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 8px;
  }

  .nav-cart img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
  }

  #cart-count {
    width: 18px;
    height: 18px;
    font-size: 10px;
    top: -4px;
    right: -4px;
  }

  .nav-user {
    padding: 6px 8px;
    gap: 8px;
  }

  .user-avatar {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .user-name {
    font-size: 13px;
    max-width: 100px;
  }

  .user-role {
    font-size: 10px;
  }

  .user-dropdown {
    min-width: 180px;
    right: -10px;
    top: calc(100% + 4px);
  }

  .user-info {
    display: none;
  }

  .nav-cta {
    padding: 6px 16px;
    font-size: 14px;
    width: auto;
    height: auto;
  }
}

/* ==================== SECTION 17: UTILITY STYLES & ANIMATIONS ====================
   Purpose: Reusable utility classes, animations, and helper styles
   Used by: All pages
   Features: Toast animations, button enhancements, form improvements, loading states
   =================================================================== */

/* Toast notification animations */
@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

/* Enhanced button styles - Global button improvements */
.btn-primary,
.btn-ghost,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-family: inherit;
  font-weight: 500;
  white-space: nowrap;
  /* height: 46px; */
  /* width: 170px; */
}

.btn-primary:disabled,
.btn-ghost:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* Form field improvements - Validation states and styling */
.form-field {
  position: relative;
  line-height: 3;
}

.form-field input[type="password"] {
  padding-right: 40px;
}

.form-field input:valid:not(:placeholder-shown) {
  border-color: rgba(76, 175, 80, 0.5);
}

.form-field input:invalid:not(:placeholder-shown):not(:focus) {
  /* border-color: rgba(255, 68, 68, 0.5); */
}

/* Password strength indicator - Visual feedback for password input */
.password-strength {
  margin-top: 8px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.password-strength-bar {
  height: 100%;
  width: 0%;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.password-strength.weak .password-strength-bar {
  width: 33%;
  background: #ff4444;
}

.password-strength.medium .password-strength-bar {
  width: 66%;
  background: #ffa500;
}

.password-strength.strong .password-strength-bar {
  width: 100%;
  background: #4caf50;
}

/* Loading spinner - For async operations and form submissions */
.loader {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ==================== SECTION 18: GLOBAL RESPONSIVE STYLES ====================
   Purpose: Global mobile and tablet responsive adjustments
   Used by: All pages
   Features: Mobile breakpoints, touch targets, form adjustments
   =================================================================== */

/* Small mobile devices (phones) */
@media (max-width: 480px) {
  .auth-section {
    padding: 40px 16px;
    min-height: calc(100vh - 150px);
  }

  .auth-card {
    padding: 20px 16px;
  }

  .auth-title {
    font-size: 24px;
  }

  .form-field input,
  .form-field select {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 14px 16px;
  }

  .btn-primary,
  .btn-ghost {
    padding: 14px 20px;
    font-size: 15px;
  }

  .nav-bar {
    padding: 8px 16px;
    height: 70px;
  }

  .nav-logo img {
    height: 30px;
  }

  .cart-item-actions {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 12px;
  }

  .checkout-actions {
    flex-direction: column-reverse;
  }

  .checkout-actions .btn-primary {
    order: 1;
  }

  .checkout-actions .btn-ghost {
    order: 2;
  }
}

/* Tablet and mobile - Better touch targets for accessibility */
@media (max-width: 768px) {
  button,
  .btn-primary,
  .btn-ghost,
  .btn-outline,
  a.nav-link,
  .nav-mobile-link {
    min-height: 44px; /* iOS recommended touch target */
    min-width: 44px;
  }

  .cart-item-qty button,
  .remove-item {
    min-height: 36px;
    min-width: 36px;
  }
}

/* Focus states for keyboard navigation accessibility */
button:focus-visible,
input:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Smooth transitions for form state changes */
.auth-form,
#verify-code-form,
#new-password-form,
#reset-success {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Error and success message animations */
.error-message,
.success-message {
  animation: fadeIn 0.3s ease;
}

/* Fade in animation for messages */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== SECTION 19: ORDER CONFIRMATION PAGE ====================
   Purpose: Order confirmation page after successful checkout
   Used by: order-confirmation.html
   Features: Success icon, order details, shipping info, action buttons
   =================================================================== */

.confirmation-section {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirmation-container {
  width: 100%;
}

.confirmation-content {
  text-align: center;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.5s ease;
}

.confirmation-icon svg {
  width: 40px;
  height: 40px;
  color: white;
  stroke-width: 3;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.confirmation-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.confirmation-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.confirmation-card {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 32px;
  text-align: left;
}

.confirmation-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-soft);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}

.detail-label {
  color: var(--text-muted);
}

.detail-value {
  font-weight: 600;
  color: #fff;
}

.detail-value.highlight {
  color: var(--accent);
  font-size: 18px;
}

.confirmation-items {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-soft);
}

.items-title,
.shipping-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.confirmation-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.confirmation-item .item-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.confirmation-item .item-info {
  flex: 1;
}

.confirmation-item .item-info h4 {
  margin: 0 0 4px;
  font-size: 14px;
}

.confirmation-item .item-info p {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

.confirmation-item .item-price {
  font-weight: 600;
  color: var(--accent);
}

.confirmation-shipping {
  margin-bottom: 0;
}

.shipping-details {
  color: var(--text-muted);
  line-height: 1.8;
}

.shipping-details p {
  margin: 4px 0;
}

.confirmation-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.confirmation-info {
  background: rgba(111, 75, 255, 0.1);
  border: 1px solid rgba(111, 75, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.confirmation-info strong {
  color: #fff;
}

/* ==================== SECTION 20: ORDERS PAGE ====================
   Purpose: My orders listing page
   Used by: orders.html
   Features: Order cards, status badges, order items, reorder functionality
   =================================================================== */

.orders-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.orders-container {
  width: 100%;
}

.orders-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.orders-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 32px;
}

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.orders-empty {
  text-align: center;
  padding: 60px 20px;
}

.orders-empty img {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  opacity: 0.5;
}

.orders-empty h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.orders-empty p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.order-card {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 24px;
  transition: all 0.2s ease;
}

.order-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(111, 75, 255, 0.1);
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-soft);
}

.order-info h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.order-date {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

.order-status {
  display: flex;
  align-items: center;
}

.status-badge {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}

.status-badge.status-Pending {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-badge.status-Processing {
  background: rgba(33, 150, 243, 0.2);
  color: #2196f3;
  border: 1px solid rgba(33, 150, 243, 0.3);
}

.status-badge.status-Shipped {
  background: rgba(156, 39, 176, 0.2);
  color: #9c27b0;
  border: 1px solid rgba(156, 39, 176, 0.3);
}

.status-badge.status-Delivered {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.status-badge.status-Cancelled {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

.order-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.order-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.order-item-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.order-item-details {
  flex: 1;
}

.order-item-details h4 {
  margin: 0 0 4px;
  font-size: 14px;
}

.order-item-details p {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

.order-item-price {
  font-weight: 600;
  color: var(--accent);
}

.order-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
  flex-wrap: wrap;
  gap: 16px;
}

.order-total {
  font-size: 18px;
  font-weight: 600;
}

.order-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ==================== SECTION 21: ACCOUNT PAGE ====================
   Purpose: User account management page
   Used by: account.html
   Features: Profile editing, address management, order history, settings
   =================================================================== */

.account-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.account-container {
  width: 100%;
}

.account-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 32px;
}

.account-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

/* Account Sidebar */
.account-sidebar {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 24px;
  position: sticky;
  top: 100px;
}

.account-profile {
  text-align: center;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-soft);
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 32px;
  font-weight: 700;
  color: white;
}

.account-profile h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.account-profile p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.account-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.account-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 15px;
}

.account-nav-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.account-nav-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.account-nav-item.active {
  background: rgba(111, 75, 255, 0.15);
  color: var(--accent);
  border: 1px solid rgba(111, 75, 255, 0.3);
}

/* Account Content */
.account-content {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 32px;
}

.account-tab {
  display: none;
}

.account-tab.active {
  display: block;
}

.tab-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}

.tab-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.account-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

/* Addresses */
.addresses-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.address-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 20px;
}

.address-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.address-header h4 {
  margin: 0;
  font-size: 16px;
}

.address-card p {
  margin: 4px 0;
  color: var(--text-muted);
  font-size: 14px;
}

.address-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 24px;
  margin-top: 24px;
}

.address-form h3 {
  margin: 0 0 20px;
  font-size: 18px;
}

/* Account Orders */
.account-order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  margin-bottom: 12px;
}

.account-order-item h4 {
  margin: 0 0 4px;
  font-size: 16px;
}

.account-order-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.tab-actions {
  margin-top: 24px;
}

/* Settings */
.settings-section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-soft);
}

.settings-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.settings-section h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.settings-section.danger-zone {
  border-color: rgba(244, 67, 54, 0.3);
}

.settings-section.danger-zone h3 {
  color: #f44336;
}

.settings-section.danger-zone p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 14px;
}

.empty-message {
  text-align: center;
  color: var(--text-muted);
  padding: 40px 20px;
  font-size: 15px;
}

/* ==================== RESPONSIVE STYLES FOR NEW PAGES ==================== */

@media (max-width: 968px) {
  .account-layout {
    grid-template-columns: 1fr;
  }

  .account-sidebar {
    position: static;
    margin-bottom: 24px;
  }

  .account-nav {
    flex-direction: row;
    flex-wrap: wrap;
    overflow-x: auto;
  }

  .account-nav-item {
    flex: 1 1 auto;
    min-width: 120px;
    justify-content: center;
  }

  .order-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .order-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .order-actions {
    width: 100%;
    justify-content: stretch;
  }

  .order-actions .btn-primary,
  .order-actions .btn-ghost {
    flex: 1;
  }
}

@media (max-width: 640px) {
  .confirmation-section,
  .orders-section,
  .account-section {
    padding: 20px 16px;
  }

  .confirmation-title,
  .orders-title,
  .account-title {
    font-size: 28px;
  }

  .confirmation-card {
    padding: 20px;
  }

  .detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .confirmation-actions {
    flex-direction: column;
  }

  .confirmation-actions .btn-primary,
  .confirmation-actions .btn-ghost {
    width: 100%;
  }

  .order-card {
    padding: 16px;
  }

  .account-content {
    padding: 20px;
  }

  .tab-header {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn-primary,
  .form-actions .btn-ghost {
    width: 100%;
  }
}

/* ==================== SECTION 22: SEARCH PAGE ====================
   Purpose: Search results page with filters and sorting
   Used by: search.html
   Features: Search bar, filters, sort options, results grid, suggestions
   =================================================================== */

.search-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.search-container {
  width: 100%;
}

.search-header {
  margin-bottom: 32px;
}

.search-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
}

.search-bar-wrapper {
  position: relative;
  max-width: 600px;
  margin-bottom: 8px;
}

.search-input {
  width: 100%;
  padding: 14px 50px 14px 20px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: var(--card-bg);
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease;
}

.search-input:focus {
  border-color: var(--accent);
}

.search-button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: background 0.2s ease;
}

.search-button:hover {
  background: #7c59ff;
}

.search-button svg {
  width: 18px;
  height: 18px;
}

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  margin-top: 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 100;
  display: none;
}

.suggestion-item {
  padding: 12px 20px;
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 14px;
  color: var(--text-muted);
}

.suggestion-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.search-filters {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-group label {
  font-size: 14px;
  color: var(--text-muted);
  white-space: nowrap;
}

.filter-select {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: var(--card-bg);
  color: #fff;
  font-size: 14px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.filter-select:focus {
  border-color: var(--accent);
}

.search-results {
  margin-top: 32px;
}

.results-header {
  margin-bottom: 24px;
}

.results-header h2 {
  font-size: 24px;
  margin-bottom: 4px;
}

.results-header p {
  color: var(--text-muted);
  font-size: 14px;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
}

.no-results img {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  opacity: 0.5;
}

.no-results h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.no-results p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ==================== SECTION 23: WISHLIST PAGE ====================
   Purpose: User wishlist/favorites page
   Used by: wishlist.html
   Features: Wishlist grid, remove functionality, empty state
   =================================================================== */

.wishlist-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.wishlist-container {
  width: 100%;
}

.wishlist-header {
  margin-bottom: 32px;
}

.wishlist-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.wishlist-subtitle {
  color: var(--text-muted);
  font-size: 16px;
}

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.wishlist-card {
  position: relative;
}

.wishlist-remove {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease, transform 0.2s ease;
  color: #fff;
}

.wishlist-remove:hover {
  background: rgba(244, 67, 54, 0.9);
  transform: scale(1.1);
}

.wishlist-remove svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.wishlist-empty {
  text-align: center;
  padding: 80px 20px;
}

.wishlist-empty svg {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.wishlist-empty h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.wishlist-empty p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ==================== SECTION 24: ORDER TRACKING PAGE ====================
   Purpose: Order tracking and status page
   Used by: order-tracking.html
   Features: Order search, timeline, shipping info, order details
   =================================================================== */

.tracking-section {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.tracking-container {
  width: 100%;
}

.tracking-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.tracking-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 32px;
}

.tracking-search {
  margin-bottom: 40px;
}

.tracking-input-wrapper {
  display: flex;
  gap: 12px;
  max-width: 600px;
}

.tracking-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: var(--card-bg);
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease;
}

.tracking-input:focus {
  border-color: var(--accent);
}

.tracking-results {
  margin-top: 32px;
}

.tracking-order-info {
  margin-bottom: 32px;
}

.order-info-card {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 24px;
}

.order-info-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.order-date {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.order-status-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}

.tracking-timeline {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 32px;
}

.tracking-timeline h3 {
  margin: 0 0 24px;
  font-size: 18px;
}

.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding-left: 24px;
}

.timeline-items::before {
  content: "";
    position: absolute;
    left: 11px;
    top: 0;
    bottom: 0;
    width: 1px;
  background: var(--border-soft);
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-dot {
  position: absolute;
  left: -20px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--border-soft);
  border: 3px solid var(--bg-main);
  z-index: 1;
}

.timeline-item.active .timeline-dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(111, 75, 255, 0.2);
}

.timeline-content h4 {
  margin: 0 0 4px;
  font-size: 16px;
  color: var(--text-muted);
}

.timeline-item.active .timeline-content h4 {
  color: #fff;
}

.timeline-content p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.tracking-shipping,
.tracking-items {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 32px;
}

.tracking-shipping h3,
.tracking-items h3 {
  margin: 0 0 20px;
  font-size: 18px;
}

.shipping-info-card {
  color: var(--text-muted);
  line-height: 1.8;
}

.shipping-info-card p {
  margin: 4px 0;
}

.tracking-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tracking-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.tracking-item-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.tracking-item-details {
  flex: 1;
}

.tracking-item-details h4 {
  margin: 0 0 4px;
  font-size: 14px;
}

.tracking-item-details p {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

.tracking-item-price {
  font-weight: 600;
  color: var(--accent);
}

.tracking-no-results {
  text-align: center;
  padding: 60px 20px;
}

.tracking-no-results img {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  opacity: 0.5;
}

.tracking-no-results h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.tracking-no-results p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ==================== SECTION 25: 500 ERROR PAGE ====================
   Purpose: Server error page
   Used by: 500.html
   Features: Error message, help information, navigation
   =================================================================== */

.error-section {
  padding: 80px 20px;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-container {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.error-content {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 48px 32px;
}

.error-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  color: #f44336;
}

.error-icon svg {
  width: 100%;
  height: 100%;
}

.error-title {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #f44336, #ff9800);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* Fallback for browsers that don't support text-fill-color */
}

.error-subtitle {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}

.error-message {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.error-help {
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-size: 14px;
}

.error-help p {
  margin: 8px 0;
}

.error-help a {
  color: var(--accent);
  text-decoration: none;
}

.error-help a:hover {
  text-decoration: underline;
}

/* Search and Wishlist responsive */
@media (max-width: 768px) {
  .search-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-select {
    width: 100%;
  }

  .tracking-input-wrapper {
    flex-direction: column;
  }

  .timeline-items {
    padding-left: 20px;
  }

  .error-title {
    font-size: 48px;
  }

  .error-subtitle {
    font-size: 24px;
  }
}
