/* ==========================================================================
   TULYA THREADS - LUXURY ETHNIC E-COMMERCE DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --primary: #8b182b;
  --primary-dark: #630c1c;
  --primary-light: #b0243c;
  --primary-subtle: #fdf2f4;
  --primary-gradient: linear-gradient(135deg, #740d1e 0%, #99162c 50%, #b8223c 100%);
  --primary-gradient-hover: linear-gradient(135deg, #5c0a18 0%, #801224 100%);

  --gold: #d4af37;
  --gold-dark: #b89225;
  --gold-light: #fbf3d8;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f5e49e 50%, #c49a26 100%);
  --gold-gradient-hover: linear-gradient(135deg, #c49a26 0%, #e6cb6f 100%);

  --dark: #14141c;
  --dark-soft: #1f1f2a;
  --dark-muted: #3a3a48;
  
  --text-dark: #1e1e28;
  --text-body: #495057;
  --text-muted: #7b8089;
  --text-light: #ffffff;

  --bg-body: #faf9f6;
  --bg-card: #ffffff;
  --bg-soft: #f4f3ef;
  --bg-dark: #14141c;

  /* Borders & Radius */
  --border-color: rgba(0, 0, 0, 0.08);
  --border-light: rgba(0, 0, 0, 0.04);
  --border-gold: rgba(212, 175, 55, 0.35);
  
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 50px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 3px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.1);
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.22);
  --shadow-primary: 0 8px 25px rgba(139, 24, 43, 0.25);

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-base: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 65px; /* Space for Mobile Bottom App Bar */
  }
}

h1, h2, h3, h4, h5, .brand-font {
  font-family: 'Cinzel', Georgia, serif;
  color: var(--dark);
  letter-spacing: 0.5px;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none !important;
  transition: var(--transition-base);
}

a:hover, a:focus {
  color: var(--primary);
}

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

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.top-announcement-bar {
  background: var(--dark);
  color: var(--gold-light);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 6px 15px;
  text-align: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}

.top-announcement-bar .badge-gold {
  background: var(--gold-gradient);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}

.top-announcement-bar a {
  color: var(--gold);
  text-decoration: underline !important;
  font-weight: 600;
}

@media (max-width: 576px) {
  .top-announcement-bar {
    font-size: 10.5px;
    padding: 5px 8px;
    letter-spacing: 0.5px;
  }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header_section {
  background: var(--primary-gradient) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 1020;
  transition: var(--transition-base);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.header_section .container-fluid {
  padding: 10px 28px;
}

.header-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

/* Brand Logo */
.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
}

.navbar-brand img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.35));
}

.navbar-brand .brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.navbar-brand .brand-title {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.navbar-brand .brand-subtitle {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-top: 3px;
}

/* Header Search Bar */
.header-search-wrap {
  flex: 1;
  max-width: 480px;
  margin: 0 15px;
  position: relative;
}

.header-search-wrap .searchbar {
  width: 100%;
  position: relative;
}

.header-search-wrap .fa-search {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 14px;
  pointer-events: none;
  z-index: 2;
}

.header-search-wrap input {
  width: 100%;
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  padding: 10px 20px 10px 46px;
  font-size: 13.5px;
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  outline: none;
  transition: var(--transition-base);
}

.header-search-wrap input:focus {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: none;
  max-height: 320px;
  overflow-y: auto;
}

.search-item {
  padding: 11px 18px;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition-fast);
  color: var(--text-dark);
  font-size: 13.5px;
}

.search-item:hover {
  background: var(--primary-subtle);
  color: var(--primary);
}

/* Header Nav Buttons & Actions */
.header-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-nav-link {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header-nav-link:hover {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

/* Vendor Portal Button */
.btn-vendor-pill {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light) !important;
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
}

.btn-vendor-pill:hover {
  background: var(--gold-gradient);
  color: var(--dark) !important;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Auth Pill Button */
.btn-auth-pill {
  background: #ffffff;
  color: var(--primary) !important;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.btn-auth-pill:hover {
  background: var(--gold-light);
  color: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Wishlist & Cart Action Icons */
.header-action-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 16px;
  position: relative;
  transition: var(--transition-fast);
  cursor: pointer;
}

.header-action-icon:hover {
  background: #ffffff;
  color: var(--primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.header-action-icon .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold-gradient);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* Mobile Hamburger Button */
.custom_menu-btn button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 17px;
  outline: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.custom_menu-btn button:hover {
  background: #ffffff;
  color: var(--primary);
}

/* Mobile Slideout Navigation Overlay */
.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  background: rgba(20, 20, 28, 0.98);
  backdrop-filter: blur(10px);
  overflow-x: hidden;
  transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5);
}

.overlay.menu_width {
  width: 320px;
  max-width: 85vw;
}

.overlay .closebtn {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 32px;
  color: #ffffff;
  cursor: pointer;
  line-height: 1;
}

.overlay .closebtn:hover {
  color: var(--gold);
}

.overlay-content {
  position: relative;
  top: 60px;
  width: 100%;
  padding: 0 20px 40px;
}

.overlay-content a {
  padding: 12px 14px;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.overlay-content a:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
  padding-left: 20px;
}

.overlay-cat-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.overlay-cat-toggle {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #ffffff;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.overlay-cat-toggle:after {
  content: '▼';
  font-size: 10px;
  color: var(--gold);
  transition: var(--transition-fast);
}

.overlay-cat-panel {
  display: none;
  padding-left: 15px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
}

.overlay-cat-item.active .overlay-cat-panel {
  display: block;
}

.overlay-cat-item.active .overlay-cat-toggle:after {
  transform: rotate(180deg);
}

/* ==========================================================================
   Hero Banner Slider
   ========================================================================== */
.slider_section {
  position: relative;
  background: var(--dark);
}

.slider_section .carousel-item {
  position: relative;
  height: 72vh;
  min-height: 440px;
  max-height: 640px;
  overflow: hidden;
  background: #000000;
}

.hero_img-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero_img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85);
}

.slider_item-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.slider_item-detail {
  color: #ffffff;
  max-width: 580px;
  padding: 20px;
}

.slider_item-detail .slider_heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 14px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.slider_item-detail .slider_content {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 1.6;
}

.slider_btn {
  background: var(--gold-gradient);
  color: var(--dark) !important;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 34px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-base);
}

.slider_btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  color: #000000 !important;
}

/* ==========================================================================
   Trust & Features Strip (USP)
   ========================================================================== */
.features-strip {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-color);
  padding: 22px 0;
  box-shadow: var(--shadow-xs);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.feature-item:hover {
  background: var(--primary-subtle);
  transform: translateY(-2px);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.feature-info h6 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--dark);
}

.feature-info p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.4;
}

/* ==========================================================================
   Section Title & Decorative Flourish
   ========================================================================== */
.section-header-wrap {
  text-align: center;
  padding: 40px 15px 25px;
  position: relative;
}

.new-arrival-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.decor-left, .decor-right {
  font-size: 26px;
  color: var(--gold);
  opacity: 0.85;
}

.new-arrival-content h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.new-arrival-content p {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 500;
}

/* ==========================================================================
   Circular Category Showcase
   ========================================================================== */
.category-circle-card {
  text-align: center;
  width: 135px;
  margin: 10px 12px;
  transition: var(--transition-base);
}

.category-circle-card .cat-img-wrapper {
  width: 108px;
  height: 108px;
  margin: 0 auto 10px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #ffffff;
  transition: var(--transition-base);
}

.category-circle-card:hover .cat-img-wrapper {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.3);
  border-color: var(--primary);
}

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

.category-circle-card:hover img {
  transform: scale(1.12);
}

.category-circle-card h6 {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0;
  transition: var(--transition-fast);
}

.category-circle-card:hover h6 {
  color: var(--primary);
}

/* ==========================================================================
   Product Cards & Grid
   ========================================================================== */
.custom-product {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: var(--transition-base);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.custom-product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(139, 24, 43, 0.25);
}

.custom-product .wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
  z-index: 10;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.custom-product .wishlist-btn:hover {
  transform: scale(1.15);
  background: #ffffff;
  color: #ff1744;
}

.product_img-box {
  position: relative;
  width: 100%;
  padding-top: 125%; /* 4:5 Aspect Ratio */
  overflow: hidden;
  background: #f8f8fa;
}

.product_img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.custom-product:hover .product_img-box img {
  transform: scale(1.08);
}

.discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-gradient);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 6px rgba(139, 24, 43, 0.35);
  z-index: 2;
  letter-spacing: 0.5px;
}

.product_detail-box {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #ffffff;
}

.product_detail-box .stars {
  color: #ffc107;
  font-size: 13px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.product_detail-box h6 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 38px;
  transition: var(--transition-fast);
}

.custom-product:hover h6 {
  color: var(--primary);
}

.price-container {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
  margin-top: auto;
}

.price-container strong {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
}

.price-container del {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

.add-cart-btn {
  width: 100%;
  background: var(--primary-gradient);
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-fast);
  box-shadow: 0 3px 10px rgba(139, 24, 43, 0.2);
}

.add-cart-btn:hover {
  background: var(--primary-gradient-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

/* ==========================================================================
   Heritage & Craftsmanship Banner
   ========================================================================== */
.heritage-banner-section {
  background: linear-gradient(135deg, #1f1f2e 0%, #16161e 100%);
  color: #ffffff;
  padding: 60px 0;
  margin: 50px 0 30px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.heritage-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  backdrop-filter: blur(10px);
}

.heritage-card h3 {
  color: var(--gold);
  font-size: 28px;
  margin-bottom: 14px;
}

.heritage-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 22px;
}

.heritage-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.heritage-feature-badge {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-light);
  font-size: 12.5px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   Customer Reviews & Testimonials Section
   ========================================================================== */
.reviews-section {
  padding: 50px 0 60px;
  background: var(--bg-soft);
}

.review-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-subtle);
  border: 2px solid var(--gold);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.review-user-info h6 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--dark);
}

.review-user-info .verified-badge {
  font-size: 11.5px;
  color: #28a745;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-stars {
  color: #ffc107;
  font-size: 14px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 0;
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */
.newsletter-section {
  background: var(--primary-gradient);
  color: #ffffff;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-content h3 {
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 8px;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  margin-bottom: 0;
}

.newsletter-form-wrap {
  display: flex;
  max-width: 520px;
  margin-left: auto;
  gap: 8px;
}

.newsletter-form-wrap input {
  flex: 1;
  background: #ffffff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 12px 22px;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.newsletter-form-wrap button {
  background: var(--gold-gradient);
  color: var(--dark);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.newsletter-form-wrap button:hover {
  transform: translateY(-2px);
  color: #000000;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   Modern Main Footer
   ========================================================================== */
.footer-main {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-brand-col .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand-col .footer-logo img {
  height: 42px;
}

.footer-brand-col .footer-logo span {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
}

.footer-brand-col p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col h5 {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 15px;
  transition: var(--transition-fast);
}

.footer-social-links a:hover {
  background: var(--gold-gradient);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0 10px;
  margin-top: 40px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
}

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

.payment-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.payment-badge-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Mobile Bottom Navigation App Bar
   ========================================================================== */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(20, 20, 28, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.35);
  z-index: 9999;
  display: none;
}

.bottom-nav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 6px 4px 8px;
}

.bottom-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 10.5px;
  font-weight: 500;
  gap: 3px;
  position: relative;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  text-decoration: none;
}

.bottom-nav-link i {
  font-size: 18px;
  transition: var(--transition-fast);
}

.bottom-nav-link.active,
.bottom-nav-link:hover {
  color: var(--gold) !important;
}

.bottom-nav-link.active i,
.bottom-nav-link:hover i {
  transform: translateY(-2px);
}

.bottom-nav-link .badge {
  position: absolute;
  top: 1px;
  right: 6px;
  background: var(--primary);
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: var(--radius-pill);
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: block;
  }
}

/* ==========================================================================
   LUXURY AUTH SCREENS (LOGIN & REGISTER)
   ========================================================================== */
.auth-page-wrapper {
  min-height: 85vh;
  background: linear-gradient(135deg, #faf8f5 0%, #f1ece1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 15px;
  position: relative;
}

.auth-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  overflow: hidden;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  transition: var(--transition-base);
}

.auth-card-header {
  background: var(--primary-gradient);
  color: #ffffff;
  padding: 36px 30px 30px;
  text-align: center;
  position: relative;
  border-bottom: 2px solid var(--gold);
}

.auth-card-header .auth-brand-logo {
  height: 48px;
  width: auto;
  margin: 0 auto 12px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.auth-card-header h2 {
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 4px;
  letter-spacing: 1.5px;
}

.auth-card-header p {
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

.auth-card-body {
  padding: 35px 32px 30px;
}

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

.auth-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-input-wrap .input-icon {
  position: absolute;
  left: 16px;
  color: var(--primary);
  font-size: 15px;
  pointer-events: none;
  z-index: 2;
}

.auth-input-wrap .form-control {
  width: 100%;
  height: 48px;
  background: #fdfdfd;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-pill);
  padding: 10px 45px 10px 46px;
  font-size: 14px;
  color: var(--text-dark);
  transition: var(--transition-base);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.auth-input-wrap .form-control:focus {
  border-color: var(--gold);
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2), 0 0 0 3px rgba(212, 175, 55, 0.2);
  outline: none;
}

.auth-input-wrap .password-toggle-btn {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  font-size: 16px;
  z-index: 3;
  transition: var(--transition-fast);
}

.auth-input-wrap .password-toggle-btn:hover {
  color: var(--primary);
}

.btn-auth-submit {
  width: 100%;
  height: 48px;
  background: var(--primary-gradient);
  color: #ffffff !important;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition-base);
  margin-top: 10px;
}

.btn-auth-submit:hover {
  background: var(--primary-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 24, 43, 0.35);
}

.auth-footer-text {
  text-align: center;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 13.5px;
  color: var(--text-muted);
}

.auth-footer-text a {
  color: var(--primary);
  font-weight: 700;
}

.auth-footer-text a:hover {
  color: var(--primary-dark);
  text-decoration: underline !important;
}

.auth-trust-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-muted);
}

.auth-trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.auth-trust-strip i {
  color: #28a745;
}
