/* ====== CSS VARIABLES & GLOBAL ====== */
:root {
  --color-white: #FFFFFF;
  --color-bg-light: #FAFAFA;
  --color-black: #1A1A1A;
  --color-text-body: #333333;
  --color-text-muted: #777777;
  --color-gold: #E4A843;
  --color-gold-hover: #D0932C;
  --color-border: #EEEEEE;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);

  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-black);
}

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

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

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

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

/* ====== BUTTONS ====== */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  /* Modern pill shape */
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1.5px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.btn-primary {
  background-color: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.btn-primary:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
}

.btn-gold {
  background: linear-gradient(135deg, #E4A843 0%, #D0932C 100%);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(228, 168, 67, 0.25);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #D0932C 0%, #B87E20 100%);
  box-shadow: 0 6px 18px rgba(228, 168, 67, 0.4);
}

.btn-outline {
  border-color: var(--color-black);
  background-color: transparent;
  color: var(--color-black);
}

.btn-outline:hover {
  background-color: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}


/* ====== HEADER & NAVBAR ====== */
.navbar {
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
  width: 100%;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 1px;
}

.logo span {
  color: var(--color-gold);
}

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

.nav-links a {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  font-weight: 500;
}

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

/* Mega Menu Hover Logic */
.mega-menu-trigger:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.mega-menu {
  position: absolute;
  top: 120%;
  left: 0;
  width: 100%;
  background: var(--color-white);
  padding: 3rem 0;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: 999;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.mega-state h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.5rem;
}

.mega-state ul {
  list-style: none;
}

.mega-state li {
  margin-bottom: 0.5rem;
}

.mega-state a {
  text-transform: none;
  font-size: 0.9rem;
  color: var(--color-text-body);
  letter-spacing: normal;
  font-weight: 400;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 992px) {
  .mega-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.nav-icons i {
  font-size: 1.2rem;
  cursor: pointer;
  position: relative;
}

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

/* ====== HERO SLIDER SECTION ====== */
.hero-slider {
  position: relative;
  height: 80vh;
  min-height: 500px;
  width: 100%;
  overflow: hidden;
  background-color: var(--color-black);
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 1;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.slide.active .slide-bg {
  transform: scale(1.08);
}

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

.slide-content {
  text-align: center;
  color: var(--color-white);
  max-width: 700px;
  padding: 0 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 2;
}

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

.slide-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.slide-content button {
  font-size: 1.1rem;
  padding: 1rem 3.5rem;
  border-radius: 50px;
}

.slider-dots {
  display: none !important;
}

/* ====== FIND YOUR STYLE ====== */
.category-slider-container {
  width: 100%;
  position: relative;
  padding: 1rem 0;
}

.category-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Hide scrollbar Firefox */
  padding-bottom: 10px;
}

.category-slider::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar Chrome/Safari */
}

.category-card {
  flex: 0 0 280px;
  height: 380px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.category-card-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-smooth);
}

.category-card:hover .category-card-bg {
  transform: scale(1.05);
}

.category-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 10%, rgba(0, 0, 0, 0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 2rem;
  color: var(--color-white);
  text-align: center;
}

.category-card-overlay h3 {
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 0.8rem;
  font-family: var(--font-heading);
}

.category-card-overlay .btn-shop-cat {
  padding: 0.7rem 1.8rem;
  font-size: 0.8rem;
  border-radius: 50px;
  /* Pill shape */
  background: var(--color-white);
  color: var(--color-black);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-smooth);
}

.category-card-overlay .btn-shop-cat:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(228, 168, 67, 0.35);
}

/* ====== WATCH & SHOP ====== */
.watch-shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  /* Fitted for 9:16 vertical cards */
  gap: 24px;
}

.video-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.video-container {
  position: relative;
  padding-bottom: 177.78%;
  /* 9:16 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ====== REVIEWS SECTION ====== */
.image-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.review-image-card {
  position: relative;
  aspect-ratio: 9/16;
  /* 9:16 Aspect Ratio */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.review-image-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

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

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

/* ====== SECTIONS ====== */
.section {
  padding: 2.5rem 0;
  /* Reduced top/bottom padding */
}

.category-section {
  background-color: #FAF6F0;
}

.best-sellers-section {
  background-color: #FFFFFF;
}

.trending-section {
  background-color: #F7F5F0;
}

.watch-shop-section {
  background-color: #FAF3E7;
}

.reviews-section {
  background-color: #F2ECE4;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1.8rem;
  /* Reduced margin-bottom */
  position: relative;
}

.section-title::after {
  content: '';
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

/* ====== PRODUCT GRID ====== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
}

.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.product-img-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 380px;
}

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

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

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

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

.product-card.has-hover-img:hover .product-img.secondary-img {
  opacity: 1;
}

.product-info {
  padding: 1.5rem;
  text-align: center;
  background: var(--color-white);
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-state {
  font-size: 0.8rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.product-name {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.product-price {
  font-weight: 600;
  color: var(--color-text-body);
}

/* Card Hover Dual Actions (Add to Cart + Buy Now) */
.card-hover-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  transform: translateY(100%);
  transition: transform var(--transition-smooth);
  z-index: 5;
}

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

.btn-card-action {
  flex: 1;
  padding: 1rem 0.25rem;
  border: none;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background-color var(--transition-fast);
  border-radius: 0 !important;
  text-align: center;
}

.btn-add-to-cart {
  background: #D9383A;
  color: var(--color-white);
}

.btn-add-to-cart:hover {
  background: #B9282A;
}

.btn-buy-now {
  background: var(--color-gold);
  color: var(--color-white);
}

.btn-buy-now:hover {
  background: var(--color-black);
}

/* ====== FILTERS ====== */
.shop-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.filters-sidebar {
  border-right: 1px solid var(--color-border);
  padding-right: 2rem;
}

.filter-group {
  margin-bottom: 2rem;
}

.filter-title {
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

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

.filter-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-list label {
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--color-text-body);
}

/* ====== CART DRAWER ====== */
#auth-modal {
  width: 100%;
  max-width: 400px;
}

#checkout-modal {
  width: 100%;
  max-width: 500px;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 450px;
  height: 100vh;
  background: var(--color-white);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
  z-index: 2000;
  transition: right var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

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

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

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.cart-item img {
  width: 80px;
  height: 100px;
  object-fit: cover;
}

.cart-item-info h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.qty-ctrl {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.qty-btn {
  border: 1px solid var(--color-border);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.btn-checkout {
  width: 100%;
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast);
}

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

/* ====== FOOTER ====== */
.footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 5rem 0 2rem;
  margin-top: 25px;
}

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

.footer h3 {
  color: var(--color-white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer p {
  color: var(--color-text-muted);
  max-width: 300px;
}

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

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

.footer-links a {
  color: var(--color-text-muted);
}

.footer-links a:hover {
  color: var(--color-gold);
}

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

/* UTILITIES & OVERRIDES */
.d-none {
  display: none !important;
}

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

.mb-2 {
  margin-bottom: 2rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

/* ====== PRODUCT DETAIL PAGE ====== */
.pdp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.pdp-gallery {
  position: sticky;
  top: 100px;
}

.pdp-main-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  margin-bottom: 1rem;
  transition: opacity 0.3s;
}

.pdp-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.pdp-thumb-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s, border-color 0.2s;
}

.pdp-thumb-img:hover,
.pdp-thumb-img.active {
  opacity: 1;
  border-color: var(--color-gold);
}

.pdp-brand-cat {
  color: var(--color-gold);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.pdp-title {
  font-size: 2.8rem;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.pdp-price {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--color-text-body);
}

.pdp-desc {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.pdp-features {
  padding: 1.5rem;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  margin-bottom: 2.5rem;
}

.pdp-features p {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pdp-features p:last-child {
  margin-bottom: 0;
}

.pdp-features i {
  color: var(--color-gold);
  font-size: 1.2rem;
}

.btn-large {
  width: 100%;
  padding: 1.2rem;
  font-size: 1rem;
  letter-spacing: 1px;
}

/* Responsive basics */
.mobile-filter-toggle-btn {
  display: none;
  width: 100%;
  margin-bottom: 1.5rem;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  padding: 0.8rem;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .mobile-filter-toggle-btn {
    display: flex;
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .filters-sidebar {
    display: none; /* Hide by default on mobile */
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: 4px;
    margin-bottom: 1.5rem;
  }

  .filters-sidebar.open {
    display: block !important;
  }

  .pdp-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pdp-gallery {
    position: static;
  }

  .pdp-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  body.no-scroll {
    overflow: hidden !important;
  }

  .container {
    padding: 0 1rem !important;
  }

  .navbar {
    padding: 1rem 0 !important;
  }

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

  .hero h2 {
    font-size: 2.5rem;
  }

  .mobile-menu-btn {
    display: block;
    order: 3;
    margin-left: 0.5rem;
  }

  .logo {
    order: 1;
    font-size: 1.35rem !important;
  }

  .nav-icons {
    order: 2;
    margin-left: auto;
    gap: 0.8rem !important;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateX(-100%);
    flex-direction: column;
    background: var(--color-white);
    width: 100%;
    height: calc(100vh - 100%);
    transition: transform var(--transition-smooth);
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    z-index: 1001;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 1rem 0;
    display: none;
  }

  .mega-menu-trigger:hover .mega-menu {
    display: block;
  }
}

/* ==========================================
   PREMIUM UX ELEMENTS
   ========================================== */

/* Skeleton Loader */
.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
  width: 100%;
}

.skeleton-card {
  height: 480px;
  background: #EAEAEA;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.skeleton-card::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  animation: loading-skeleton 1.5s infinite;
}

@keyframes loading-skeleton {
  100% {
    transform: translateX(100%);
  }
}

/* Toast Notifications */
#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: var(--color-white);
  color: var(--color-black);
  border-left: 4px solid var(--color-gold);
  padding: 1rem 1.5rem;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 320px;
  max-width: 450px;
  pointer-events: auto;
  animation: slideIn 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
}

.toast.hide {
  animation: fadeOut 0.3s ease forwards;
}

.toast-success {
  border-left-color: #10B981;
}

.toast-error {
  border-left-color: #EF4444;
}

.toast-info {
  border-left-color: var(--color-gold);
}

.toast-icon {
  font-size: 1.2rem;
}

.toast-success .toast-icon {
  color: #10B981;
}

.toast-error .toast-icon {
  color: #EF4444;
}

.toast-info .toast-icon {
  color: var(--color-gold);
}

@keyframes slideIn {
  from {
    transform: translateX(120%);
    opacity: 0;
  }

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

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

/* Auth Modal Tabs & Aesthetics */
.auth-tabs {
  display: flex;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 1.5rem;
}

.auth-tab {
  flex: 1;
  text-align: center;
  padding: 0.8rem 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition-fast);
}

.auth-tab.active {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

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

.auth-form-container.active {
  display: block;
  animation: fadeForm 0.3s ease;
}

@keyframes fadeForm {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

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

/* Profile Panel Layout */
.profile-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.profile-sidebar {
  border-right: 1px solid var(--color-border);
  padding-right: 2rem;
}

.profile-nav-list {
  list-style: none;
}

.profile-nav-item {
  padding: 0.8rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--color-text-body);
  margin-bottom: 0.5rem;
}

.profile-nav-item:hover,
.profile-nav-item.active {
  background-color: var(--color-white);
  color: var(--color-gold);
  box-shadow: var(--shadow-sm);
}

.profile-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.profile-section-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.8rem;
}

/* Order History Cards */
.order-history-card {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--color-white);
}

.order-history-header {
  background: var(--color-bg-light);
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.9rem;
  color: var(--color-text-body);
}

.order-history-header span strong {
  color: var(--color-black);
}

.order-history-body {
  padding: 1.5rem;
}

.order-history-items-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.order-history-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.order-history-item img {
  width: 50px;
  height: 65px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--color-border);
}

.order-history-item-details {
  flex: 1;
}

.order-history-item-details h5 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.order-history-item-details span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.badge-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-status.pending {
  background-color: #FEF3C7;
  color: #92400E;
}

.badge-status.processing {
  background-color: #DBEAFE;
  color: #1E40AF;
}

.badge-status.shipped {
  background-color: #E0E7FF;
  color: #3730A3;
}

.badge-status.delivered {
  background-color: #D1FAE5;
  color: #065F46;
}

/* Micro-animations */
.cart-count {
  animation: pulseCount 0.3s ease;
}

@keyframes pulseCount {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ====== DISCOUNT PRICING DISPLAY ====== */
.product-price-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.product-price-offer {
  font-weight: 700;
  color: var(--color-text-body);
  font-size: 1.05rem;
}

.product-price-original {
  text-decoration: line-through;
  color: var(--color-text-muted);
  font-weight: 400;
  font-size: 0.88rem;
}

.product-discount-badge {
  background: #FEE2E2;
  color: #DC2626;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  text-transform: uppercase;
}

/* PDP price styles */
.pdp-price-group {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.pdp-price-offer {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text-body);
}

.pdp-price-original {
  font-size: 1.2rem;
  text-decoration: line-through;
  color: var(--color-text-muted);
}

.pdp-discount-badge {
  background: #FEE2E2;
  color: #DC2626;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}

.pdp-stock-info {
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pdp-stock-info.in-stock {
  color: #10B981;
}

.pdp-stock-info.low-stock {
  color: #F59E0B;
}

.pdp-stock-info.out-of-stock {
  color: #EF4444;
}

/* ====== COUPON INPUT AT CHECKOUT ====== */
.coupon-section {
  margin-bottom: 1.5rem;
}

.coupon-input-row {
  display: flex;
  gap: 0.5rem;
}

.coupon-input-row input {
  flex: 1;
  padding: 0.7rem 1rem;
  border: 1px solid var(--color-border);
  font-family: inherit;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.coupon-input-row button {
  padding: 0.7rem 1.2rem;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.coupon-result {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
}

.coupon-result.success {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.coupon-result.error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

.checkout-discount-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #10B981;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* ====== ORDER INVOICE BUTTON ====== */
.order-history-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-bg-light);
}

.btn-view-invoice {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 30px;
  /* Pill shape */
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition-smooth);
}

.btn-view-invoice:hover {
  background: var(--color-gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(228, 168, 67, 0.2);
}

@media (max-width: 768px) {
  .profile-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .profile-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding-right: 0;
    padding-bottom: 1rem;
  }

  .order-history-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .coupon-input-row {
    flex-direction: column;
  }
}

/* ====== RESPONSIVE HOMEPAGE OVERRIDES ====== */
@media (max-width: 768px) {
  .slide-content h2 {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }

  .slide-content p {
    font-size: 1rem;
    margin-bottom: 1.8rem;
  }

  .slide-content button {
    font-size: 0.95rem;
    padding: 0.8rem 2.2rem;
  }

  .watch-shop-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .image-reviews-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
  }

  .category-card {
    flex: 0 0 220px;
    height: 300px;
  }

  .category-card-overlay {
    padding: 1.2rem;
  }

  .category-card-overlay h3 {
    font-size: 1.2rem;
  }
}

/* ====== CUSTOMER REVIEW CARD OVERLAY ====== */
.review-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 1.1rem 0.9rem;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  z-index: 2;
  text-align: left;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-smooth);
}

.review-overlay .customer-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #FCD34D;
  letter-spacing: 0.5px;
}

.review-overlay .review-text {
  font-size: 0.78rem;
  line-height: 1.4;
  font-style: italic;
  opacity: 0.95;
  word-break: break-word;
}

/* Centralized Sliders outer container & arrow button navigation */
.slider-outer-container {
  position: relative;
  width: 100%;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--color-black);
  font-size: 1rem;
  transition: all var(--transition-smooth);
}

.slider-arrow:hover {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 18px rgba(228, 168, 67, 0.35);
}

.slider-arrow.prev {
  left: -22px;
}

.slider-arrow.next {
  right: -22px;
}

/* Horizontal Sliders Setup */
.watch-shop-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 0;
}

.watch-shop-slider::-webkit-scrollbar {
  display: none;
}

.watch-shop-slider .video-card {
  flex: 0 0 280px;
}

.reviews-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 0;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

.reviews-slider .review-image-card {
  flex: 0 0 250px;
}

/* Premium testimonial card improvements */
.review-overlay .customer-name {
  font-family: var(--font-heading) !important;
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 0.1rem;
}

/* Sticky floating WhatsApp Button widget */
.whatsapp-sticky-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1900;
  background-color: #25D366;
  color: white;
  padding: 0.8rem 1.4rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.whatsapp-sticky-btn i {
  font-size: 1.4rem;
}

.whatsapp-sticky-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  background-color: #20BA56;
  color: white;
}

/* PDP details Add to Bag button override to Red */
.pdp-details .btn-primary,
#section-pdp .btn-primary {
  background: #D9383A !important;
  border-color: #D9383A !important;
  color: var(--color-white) !important;
  border-radius: 0 !important;
}

.pdp-details .btn-primary:hover,
#section-pdp .btn-primary:hover {
  background: #B9282A !important;
  border-color: #B9282A !important;
}

/* Mobile responsive slider navigation updates */
@media (max-width: 768px) {
  .slider-arrow {
    display: none !important;
  }

  .whatsapp-sticky-btn {
    bottom: 20px;
    left: 20px;
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
  }

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

/* Announcement Bar Scrolling Text */
.announcement-bar {
  background-color: var(--color-gold);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 1000;
  letter-spacing: 1px;
}

.marquee-text {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

/* Wishlist Heart Button Float */
.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 6;
  background: var(--color-white);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), color var(--transition-fast);
  color: var(--color-text-muted);
}

.wishlist-btn:hover {
  transform: scale(1.1);
  color: #EF4444;
}

.wishlist-btn i.fa-solid.active {
  color: #EF4444 !important;
}

/* Alignment styles for Connect / email icon in footer */
.footer-links li a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-links li i {
  color: var(--color-gold);
  font-size: 0.95rem;
  width: 16px;
  text-align: center;
}

/* ====== NEW MOBILE RESPONSIVENESS AND ACCESSIBILITY OVERRIDES ====== */

@media (max-width: 768px) {
  /* Responsive product grid (2-column layout) */
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }

  .product-img-wrapper {
    height: 220px !important;
  }

  .product-info {
    padding: 0.8rem !important;
  }

  .product-name {
    font-size: 0.95rem !important;
  }

  .product-price-group {
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
  }

  /* Show hover actions statically on mobile touch devices */
  .card-hover-actions {
    position: static !important;
    transform: none !important;
    margin-top: 0.5rem;
  }

  .btn-card-action {
    padding: 0.7rem 0.2rem !important;
    font-size: 0.7rem !important;
  }

  /* Reduce PDP font size on mobile */
  .pdp-title {
    font-size: 1.8rem !important;
  }

  /* Adjust profile padding for form inputs */
  .profile-card {
    padding: 1.5rem 1rem !important;
  }

  /* Peek view for slider elements */
  .watch-shop-slider .video-card {
    flex: 0 0 240px !important;
  }

  .reviews-slider .review-image-card {
    flex: 0 0 200px !important;
  }
}

@media (max-width: 480px) {
  /* Responsive Toast Notifications */
  #toast-container {
    right: 10px !important;
    left: 10px !important;
    top: 10px !important;
  }

  .toast {
    min-width: auto !important;
    width: 100% !important;
  }
}

/* ====== CHECKOUT PAGE & FORM GRID STYLING ====== */
.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  margin-top: 2rem;
}

.checkout-section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.8rem;
}

.checkout-form-group {
  margin-bottom: 1.2rem;
}

.checkout-form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--color-text-body);
}

.checkout-form-group label span {
  color: #EF4444;
}

.checkout-form-group input,
.checkout-form-group select,
.checkout-form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  background-color: var(--color-white);
  transition: border-color var(--transition-fast);
}

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

.checkout-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.checkout-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.checkout-summary-card {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem;
  height: fit-content;
}

.checkout-item-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1.2rem;
}

.checkout-item-row img {
  width: 50px;
  height: 65px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--color-border);
}

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

.checkout-item-info h5 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 2px;
  color: var(--color-black);
}

.checkout-item-info span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

@media (max-width: 992px) {
  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .checkout-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .checkout-card {
    padding: 1.5rem 1rem;
  }
}