/* 
   HappyNeast - 100% Variable-Driven Modern Stylesheet
   All color tokens are bound to :root properties for easy customization
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,600&display=swap');

/* --------------------------------------------------------------------------
   1. Theme Configuration (Single Place to Customize All Colors)
   -------------------------------------------------------------------------- */
:root {
  /* Brand Primary Gold & Gradients */
  --primary-gold: #D4AF37;
  --primary-gold-dark: #A8861E;
  --primary-gold-light: #F7E7B4;
  --gold-gradient: linear-gradient(135deg, var(--primary-gold-light) 0%, var(--primary-gold) 50%, var(--primary-gold-dark) 100%);
  --gold-gradient-hover: linear-gradient(135deg, var(--pure-white) 0%, #E5C358 50%, #B89222 100%);
  
  /* Brand Contrast Neutrals */
  --charcoal-obsidian: #0D0F12;
  --charcoal-card: #16191E;
  --charcoal-gray: #242830;
  
  /* Canvas Backgrounds & White spaces */
  --warm-canvas: #FAF9F6;
  --pure-white: #FFFFFF;
  --bg-placeholder: #F3F4F6;
  
  /* Borders & Spacing lines */
  --light-border: #E5E7EB;
  
  /* Text Colors */
  --body-text: #4B5563;
  --muted-text: #6B7280;
  
  /* Status Accents */
  --accent-emerald: #10B981;
  --accent-coral: #FF4757;
  --accent-indigo: #6366F1;
  
  /* Color RGB values for translucent alphas */
  --pure-white-rgb: 255, 255, 255;
  --charcoal-obsidian-rgb: 13, 15, 18;
  --primary-gold-rgb: 212, 175, 55;

  /* Ambient Overlays */
  --announcement-bg: linear-gradient(90deg, var(--charcoal-obsidian) 0%, var(--charcoal-gray) 50%, var(--charcoal-obsidian) 100%);
  --navbar-bg: rgba(var(--pure-white-rgb), 0.94);
  --navbar-scrolled-bg: rgba(var(--pure-white-rgb), 0.98);
  --mobile-bottom-bg: rgba(var(--charcoal-obsidian-rgb), 0.96);
  --hero-overlay: linear-gradient(180deg, rgba(var(--charcoal-obsidian-rgb), 0.35) 0%, rgba(var(--charcoal-obsidian-rgb), 0.75) 100%);
  --category-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(var(--charcoal-obsidian-rgb), 0.75) 100%);
  --category-overlay-hover: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(var(--charcoal-obsidian-rgb), 0.88) 100%);
  --header-bg-gradient: linear-gradient(135deg, var(--charcoal-card) 0%, var(--charcoal-obsidian) 100%);
  --glass-overlay: rgba(var(--pure-white-rgb), 0.95);

  /* Shadows & Glows */
  --gold-glow: 0 8px 25px rgba(var(--primary-gold-rgb), 0.25);
  --card-shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(var(--primary-gold-rgb), 0.35);

  /* Font Configurations */
  --font-headings: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Animation Timings */
  --transition-smooth: all 0.3s ease;
  --transition-bounce: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --------------------------------------------------------------------------
   2. Global Resets
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--warm-canvas);
  color: var(--charcoal-obsidian);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Mobile Bottom Navigation Body Clearance */
@media (max-width: 767.98px) {
  body {
    padding-bottom: 75px !important;
  }
}

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

/* --------------------------------------------------------------------------
   3. Fluid Typography & Headings
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6, .luxury-heading {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--charcoal-obsidian);
  line-height: 1.25;
  margin-top: 0;
  word-wrap: break-word;
}

h1 { font-size: clamp(1.8rem, 4vw + 1rem, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw + 1rem, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw + 1rem, 1.85rem); }
h4 { font-size: clamp(1.1rem, 1.5vw + 0.8rem, 1.4rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; }

.gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

p {
  color: var(--body-text);
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: var(--charcoal-obsidian);
  text-decoration: none;
  transition: var(--transition-smooth);
}
a:hover {
  color: var(--primary-gold);
}

/* --------------------------------------------------------------------------
   4. Top Announcement & Glass Navbar
   -------------------------------------------------------------------------- */
.announcement-bar {
  background: var(--announcement-bg);
  border-bottom: 1px solid rgba(var(--primary-gold-rgb), 0.25);
  font-size: 0.78rem;
  letter-spacing: 1px;
}

.navbar-luxury {
  background: var(--navbar-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(var(--primary-gold-rgb), 0.2);
  transition: var(--transition-smooth);
  z-index: 1050;
  padding: 0.75rem 0;
}
.navbar-luxury.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
  background: var(--navbar-scrolled-bg);
}
.navbar-brand-luxury {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: clamp(1.4rem, 2vw + 1rem, 1.8rem);
  color: var(--charcoal-obsidian) !important;
}
.navbar-brand-luxury span {
  color: var(--primary-gold);
}

.nav-link-luxury {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.5rem 1rem !important;
  color: var(--charcoal-obsidian) !important;
  position: relative;
}
.nav-link-luxury::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
  border-radius: 2px;
}
.nav-link-luxury:hover::after,
.nav-link-luxury.active::after {
  width: 50%;
}
.nav-link-luxury:hover,
.nav-link-luxury.active {
  color: var(--primary-gold-dark) !important;
}

.nav-icon-btn {
  position: relative;
  background: var(--pure-white);
  border: 1px solid rgba(var(--primary-gold-rgb), 0.3);
  color: var(--charcoal-obsidian);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  margin-left: 0.4rem;
  transition: var(--transition-bounce);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}
.nav-icon-btn:hover {
  background: var(--gold-gradient);
  color: var(--pure-white);
  border-color: var(--primary-gold);
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
}

.badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.3em 0.55em;
  background: var(--accent-coral);
  color: var(--pure-white);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(255, 71, 87, 0.4);
}

/* --------------------------------------------------------------------------
   5. Mobile App Bottom Navigation Bar
   -------------------------------------------------------------------------- */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 65px;
  background: var(--mobile-bottom-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(var(--primary-gold-rgb), 0.35);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1090;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.25);
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(var(--pure-white-rgb), 0.75);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 20%;
  height: 100%;
  transition: var(--transition-bounce);
  text-decoration: none !important;
  position: relative;
}

.mobile-nav-item i {
  font-size: 1.25rem;
  margin-bottom: 2px;
  transition: var(--transition-bounce);
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
  color: var(--primary-gold);
}

.mobile-nav-item.active i {
  transform: translateY(-2px) scale(1.12);
  color: var(--primary-gold);
}

.mobile-nav-item .badge-count {
  top: 4px;
  right: calc(50% - 18px);
}

/* --------------------------------------------------------------------------
   6. Buttons System
   -------------------------------------------------------------------------- */
.btn-luxury,
.btn-luxury-outline,
.btn-luxury-gold {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.78rem;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  transition: var(--transition-smooth);
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}

.btn-luxury {
  border: none;
  background-color: var(--charcoal-obsidian);
  color: var(--pure-white);
  box-shadow: 0 4px 15px rgba(13, 15, 18, 0.2);
}
.btn-luxury:hover {
  background: var(--gold-gradient);
  color: var(--charcoal-obsidian);
  box-shadow: var(--gold-glow);
}

.btn-luxury-outline {
  border: 1.5px solid var(--primary-gold);
  background-color: transparent;
  color: var(--charcoal-obsidian);
}
.btn-luxury-outline:hover {
  background: var(--gold-gradient);
  color: var(--charcoal-obsidian);
  box-shadow: var(--gold-glow);
}

.btn-luxury-gold {
  border: none;
  background: var(--gold-gradient);
  color: var(--charcoal-obsidian);
  box-shadow: var(--gold-glow);
}
.btn-luxury-gold:hover {
  background: var(--charcoal-obsidian);
  color: var(--pure-white);
}

/* --------------------------------------------------------------------------
   7. Hero Carousel & Banners
   -------------------------------------------------------------------------- */
.hero-carousel .carousel-item {
  height: clamp(380px, 60vh, 650px);
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-carousel .carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--hero-overlay);
}
.hero-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  text-align: center;
  color: var(--pure-white);
  z-index: 2;
}
.hero-caption h1 {
  color: var(--pure-white);
  margin-bottom: 1rem;
}
.hero-caption p {
  color: rgba(var(--pure-white-rgb), 0.9);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.2rem);
  margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   8. Category Cards & Product Cards
   -------------------------------------------------------------------------- */
.category-card {
  position: relative;
  overflow: hidden;
  height: clamp(240px, 35vh, 360px);
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  transition: var(--transition-bounce);
  cursor: pointer;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--category-overlay);
  transition: var(--transition-smooth);
}
.category-card:hover::before {
  background: var(--category-overlay-hover);
}
.category-card-content {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  color: var(--pure-white);
  z-index: 2;
}
.category-card-content h3 {
  color: var(--pure-white);
  margin-bottom: 6px;
}
.category-card-content span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--primary-gold);
  border-bottom: 2px solid var(--primary-gold);
  padding-bottom: 3px;
  display: inline-block;
}

.product-card {
  background-color: var(--pure-white);
  border: 1px solid var(--light-border);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: var(--transition-bounce);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(var(--primary-gold-rgb), 0.4);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  background: var(--gold-gradient);
  color: var(--charcoal-obsidian);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.35em 0.75em;
  letter-spacing: 1px;
  border-radius: 4px;
}
.product-badge.badge-sale {
  background: var(--accent-coral);
  color: var(--pure-white);
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background-color: var(--bg-placeholder);
  overflow: hidden;
}
.product-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.product-image-secondary {
  opacity: 0;
}
.product-card:hover .product-image-secondary {
  opacity: 1;
}
.product-card:hover .product-image-primary {
  opacity: 0;
}

.product-actions-overlay {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  background: var(--glass-overlay);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(var(--primary-gold-rgb), 0.2);
  transition: var(--transition-smooth);
  z-index: 10;
  padding: 8px 0;
}
.product-card:hover .product-actions-overlay {
  bottom: 0;
}
.btn-overlay-action {
  background: var(--pure-white);
  border: 1px solid rgba(var(--primary-gold-rgb), 0.3);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--charcoal-obsidian);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-bounce);
}
.btn-overlay-action:hover {
  background: var(--gold-gradient);
  color: var(--charcoal-obsidian);
  border-color: var(--primary-gold);
  transform: scale(1.12);
}

.product-card-body {
  padding: 1.2rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-card-category {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary-gold-dark);
  margin-bottom: 0.3rem;
  display: block;
}
.product-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.product-card-title a {
  color: var(--charcoal-obsidian);
}
.product-card-title a:hover {
  color: var(--primary-gold-dark);
}
.rating-stars {
  color: var(--primary-gold);
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
}
.product-card-price {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--charcoal-obsidian);
}

/* --------------------------------------------------------------------------
   8. Page Headers & Breadcrumbs
   -------------------------------------------------------------------------- */
.page-header-luxury {
  background: var(--header-bg-gradient);
  color: var(--pure-white);
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  text-align: center;
  position: relative;
  border-bottom: 2px solid var(--primary-gold);
}
.page-header-luxury h1 {
  color: var(--pure-white);
  margin-bottom: 0.5rem;
}
.breadcrumb-luxury {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}
.breadcrumb-luxury li::after {
  content: '/';
  margin: 0 8px;
  color: rgba(var(--pure-white-rgb), 0.4);
}
.breadcrumb-luxury li:last-child::after {
  content: '';
}
.breadcrumb-luxury a {
  color: rgba(var(--pure-white-rgb), 0.7);
}

/* --------------------------------------------------------------------------
   9. Product Details Page Styling
   -------------------------------------------------------------------------- */
.product-details-gallery {
  position: relative;
  width: 100%;
}
.product-details-gallery img {
  border: 1px solid var(--light-border);
  border-radius: 8px;
  background-color: var(--pure-white);
  cursor: pointer;
  transition: var(--transition-smooth);
}
.product-details-gallery img:hover {
  border-color: rgba(var(--primary-gold-rgb), 0.4);
}
.product-gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}
.product-gallery-thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid var(--light-border);
  cursor: pointer;
  transition: var(--transition-bounce);
}
.product-gallery-thumbs img.active,
.product-gallery-thumbs img:hover {
  border-color: var(--primary-gold);
  box-shadow: 0 0 10px rgba(var(--primary-gold-rgb), 0.35);
  transform: translateY(-2px);
}

.product-meta-title {
  font-size: clamp(1.6rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.product-meta-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-gold-dark);
  margin-bottom: 1.25rem;
}
.product-meta-desc {
  font-size: 1rem;
  color: var(--charcoal-gray);
  margin-bottom: 2rem;
}

.variant-selector-group {
  margin-bottom: 1.5rem;
}
.variant-selector-group label {
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: block;
  color: var(--charcoal-obsidian);
}
.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.variant-btn {
  border: 1.5px solid var(--light-border);
  border-radius: 4px;
  background-color: var(--pure-white);
  padding: 0.6rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.variant-btn:hover,
.variant-btn.active {
  border-color: var(--primary-gold);
  background: var(--gold-gradient);
  color: var(--charcoal-obsidian);
  box-shadow: 0 4px 10px rgba(var(--primary-gold-rgb), 0.3);
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--light-border);
  border-radius: 4px;
  width: fit-content;
  background-color: var(--pure-white);
  overflow: hidden;
}
.quantity-selector button {
  background: none;
  border: none;
  padding: 0.6rem 1.1rem;
  font-weight: 700;
  color: var(--charcoal-obsidian);
  cursor: pointer;
  transition: var(--transition-smooth);
}
.quantity-selector button:hover {
  background-color: var(--warm-canvas);
}
.quantity-selector input {
  width: 45px;
  border: none;
  text-align: center;
  font-weight: 700;
  background: transparent;
  color: var(--charcoal-obsidian);
}
.quantity-selector input:focus {
  outline: none;
}

/* --------------------------------------------------------------------------
   10. Tabs Styling
   -------------------------------------------------------------------------- */
.nav-tabs-luxury {
  border-bottom: 2px solid var(--light-border);
  justify-content: center;
  gap: 10px;
}
.nav-tabs-luxury .nav-link {
  border: none;
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--muted-text);
  padding: 0.85rem 2rem;
  background: transparent;
  transition: var(--transition-smooth);
  border-bottom: 3px solid transparent;
}
.nav-tabs-luxury .nav-link.active,
.nav-tabs-luxury .nav-link:hover {
  color: var(--primary-gold-dark);
  border-bottom-color: var(--primary-gold);
  background: transparent;
}

/* --------------------------------------------------------------------------
   11. Cart, Checkout & Profile Dashboards
   -------------------------------------------------------------------------- */
.cart-table th {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--light-border);
  padding: 1.25rem 0.75rem;
}
.cart-table td {
  padding: 1.25rem 0.75rem;
  vertical-align: middle;
}
.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--light-border);
}

.cart-summary-box {
  background-color: var(--pure-white);
  border: 1px solid var(--light-border);
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.03);
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--light-border);
}
.cart-summary-row.total-row {
  border-bottom: none;
  font-size: 1.2rem;
  font-weight: 800;
}

.account-sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid var(--light-border);
  border-radius: 8px;
  background-color: var(--pure-white);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.account-sidebar-menu li {
  border-bottom: 1px solid var(--light-border);
}
.account-sidebar-menu li:last-child {
  border-bottom: none;
}
.account-sidebar-menu a {
  display: block;
  padding: 1.1rem 1.5rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}
.account-sidebar-menu a:hover,
.account-sidebar-menu a.active {
  background: var(--gold-gradient);
  color: var(--charcoal-obsidian);
  padding-left: 2rem;
}

.order-card {
  border: 1px solid var(--light-border);
  border-radius: 8px;
  background-color: var(--pure-white);
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.order-card-header {
  background-color: #F8F9FA;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--light-border);
  font-size: 0.88rem;
}
.order-status-badge {
  padding: 0.4em 0.9em;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   12. Footer Section & Toasts
   -------------------------------------------------------------------------- */
.footer-luxury {
  background-color: var(--charcoal-obsidian);
  color: var(--pure-white);
  padding: 4rem 0 2rem;
  font-size: 0.88rem;
  border-top: 3px solid var(--primary-gold);
}
.footer-luxury h4 {
  color: var(--pure-white);
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-bottom: 2px solid var(--primary-gold);
  padding-bottom: 6px;
  display: inline-block;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(var(--pure-white-rgb), 0.7);
}
.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 4px;
}
.social-icons a {
  color: var(--pure-white);
  background: rgba(var(--pure-white-rgb), 0.08);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transition: var(--transition-bounce);
  border: 1px solid rgba(var(--primary-gold-rgb), 0.2);
}
.social-icons a:hover {
  background: var(--gold-gradient);
  color: var(--charcoal-obsidian);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(var(--pure-white-rgb), 0.08);
  margin-top: 3rem;
  padding-top: 1.5rem;
  color: rgba(var(--pure-white-rgb), 0.5);
  font-size: 0.8rem;
}

.toast-container-luxury {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1100;
}
.toast-luxury {
  border-radius: 8px;
  border: 1px solid var(--primary-gold);
  background-color: var(--charcoal-obsidian);
  color: var(--pure-white);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* --------------------------------------------------------------------------
   13. Responsive Tablet & Mobile Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .hero-carousel .carousel-item {
    height: 60vh;
    min-height: 400px;
  }
  .navbar-luxury {
    padding: 0.6rem 0;
  }
  .page-header-luxury {
    padding: 3.5rem 0;
  }
}

@media (max-width: 767.98px) {
  .hero-carousel .carousel-item {
    height: 50vh;
    min-height: 350px;
  }
  .category-card {
    height: 250px;
  }
  .category-card-content h3 {
    font-size: 1.5rem;
  }
  
  /* Stacked Responsive Tables on Mobile */
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td, .cart-table th {
    display: block;
    width: 100%;
  }
  .cart-table thead {
    display: none;
  }
  .cart-table tr {
    margin-bottom: 16px;
    border: 1px solid var(--light-border);
    border-radius: 8px;
    background-color: var(--pure-white);
    padding: 1rem;
  }
  .cart-table td {
    text-align: right;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--light-border);
  }
  .cart-table td::before {
    content: attr(data-label);
    float: left;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.72rem;
    color: var(--muted-text);
  }
  .cart-table td:last-child {
    border-bottom: none;
  }
  .cart-table td.cart-product-cell {
    text-align: center;
    border-bottom: 1px solid var(--light-border);
    padding-bottom: 0.8rem;
  }
  .cart-table td.cart-product-cell::before {
    display: none;
  }
  
  /* Space adjustments */
  .product-gallery-thumbs img {
    width: 65px;
    height: 65px;
  }
}
