/**
 * Noble Choice - Luxury Theme Stylesheet
 * Brand: Fragrance | Apparel | Accessories
 * Theme: Dark Luxury Chocolate & Royal Gold Header, Warm Ivory & Cream Storefront
 */

@charset "UTF-8";

/* ==========================================================================
   1. CSS Variables & Theme Foundation
   ========================================================================== */
:root {
  /* Brand Chocolate Browns */
  --nc-brown-darkest: #120703;
  --nc-brown-dark: #241209;
  --nc-brown: #3B2314;
  --nc-brown-light: #52341F;
  --nc-brown-subtle: #734A2E;

  /* Royal Gold Accents */
  --nc-gold-dark: #9A7718;
  --nc-gold: #C9A227;
  --nc-gold-bright: #D4AF37;
  --nc-gold-light: #E8D48B;
  --nc-gold-soft: #FAF5EF;
  --nc-gold-glow: #FFD700;
  --nc-gold-gradient: linear-gradient(135deg, #E5C158 0%, #D4AF37 50%, #B38E1E 100%);
  --nc-gold-shimmer: linear-gradient(90deg, #C9A227 0%, #FFD700 50%, #C9A227 100%);

  /* Ivory Cream & Warm Beige Backgrounds */
  --nc-cream: #FFF8F0;
  --nc-cream-card: #FFFFFF;
  --nc-beige-light: #FAF5EF;
  --nc-beige: #F4E9DC;
  --nc-beige-dark: #E4D2C0;

  /* Typography Colors */
  --nc-text-dark: #1E120A;
  --nc-text-muted: #6B5E55;
  --nc-text-light: #A09389;

  /* Borders & Shadows */
  --nc-border-subtle: rgba(59, 35, 20, 0.08);
  --nc-border-gold: rgba(201, 162, 39, 0.3);
  --nc-shadow-sm: 0 2px 8px rgba(36, 18, 9, 0.04);
  --nc-shadow-md: 0 6px 18px rgba(36, 18, 9, 0.08);
  --nc-shadow-lg: 0 12px 30px rgba(36, 18, 9, 0.12);
  --nc-shadow-gold: 0 4px 20px rgba(201, 162, 39, 0.35);

  /* Functional Colors */
  --nc-success: #2E7D32;
  --nc-danger: #C62828;
  --nc-warning: #EF6C00;
  --nc-info: #0277BD;
  --nc-whatsapp: #25D366;

  /* Font Families */
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Border Radius */
  --nc-radius-sm: 6px;
  --nc-radius-md: 10px;
  --nc-radius-lg: 14px;
  --nc-radius-pill: 50px;
}

/* ==========================================================================
   2. Reset, Base & Typography
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--nc-text-dark);
  background-color: var(--nc-cream);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.font-serif,
.nc-serif {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--nc-brown-dark);
  letter-spacing: -0.01em;
}

a {
  color: var(--nc-brown);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: var(--nc-gold);
}

img {
  max-width: 100%;
}

/* Helper Utilities */
.text-brown-dark { color: var(--nc-brown-dark) !important; }
.text-brown      { color: var(--nc-brown) !important; }
.text-gold       { color: var(--nc-gold) !important; }
.text-gold-light { color: var(--nc-gold-light) !important; }
.text-cream      { color: var(--nc-cream) !important; }
.text-beige      { color: var(--nc-beige) !important; }

.bg-brown-dark   { background-color: var(--nc-brown-dark) !important; }
.bg-brown        { background-color: var(--nc-brown) !important; }
.bg-gold         { background: var(--nc-gold-gradient) !important; }
.bg-cream        { background-color: var(--nc-cream) !important; }
.bg-beige        { background-color: var(--nc-beige-light) !important; }
.bg-soft-gold    { background-color: var(--nc-gold-soft) !important; }

.fs-xs { font-size: 0.75rem !important; }
.fs-sm { font-size: 0.85rem !important; }

/* ==========================================================================
   3. Buttons & Form Controls
   ========================================================================== */
.btn {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--nc-radius-sm);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn:active {
  transform: translateY(1px);
}

/* Luxury Gold Button */
.btn-gold {
  background: var(--nc-gold-gradient);
  color: #140803 !important;
  border: 1px solid var(--nc-gold-bright);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
  letter-spacing: 0.02em;
}

.btn-gold:hover, .btn-gold:focus {
  background: linear-gradient(135deg, #FFF0B3 0%, #D4AF37 50%, #C9A227 100%);
  color: #140803 !important;
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

/* Gold Outline Button */
.btn-gold-outline {
  background: transparent;
  color: var(--nc-gold-dark) !important;
  border: 1.5px solid var(--nc-gold);
}

.btn-gold-outline:hover, .btn-gold-outline:focus {
  background: var(--nc-gold-gradient);
  color: #140803 !important;
  border-color: var(--nc-gold-bright);
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
  transform: translateY(-2px);
}

/* Chocolate Brown Button */
.btn-brown {
  background: linear-gradient(180deg, #3B2314 0%, #241209 100%);
  color: #FFF8F0 !important;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 15px rgba(36, 18, 9, 0.25);
}

.btn-brown:hover, .btn-brown:focus {
  background: linear-gradient(180deg, #241209 0%, #140803 100%);
  color: var(--nc-gold-light) !important;
  border-color: var(--nc-gold);
  box-shadow: 0 6px 20px rgba(36, 18, 9, 0.35);
  transform: translateY(-2px);
}

/* Brown Outline Button */
.btn-brown-outline {
  background: transparent;
  color: var(--nc-brown);
  border: 1.5px solid var(--nc-brown);
}

.btn-brown-outline:hover, .btn-brown-outline:focus {
  background-color: var(--nc-brown);
  color: var(--nc-cream);
  transform: translateY(-2px);
}

/* Form Controls */
.form-control, .form-select {
  border-radius: 8px;
  border: 1.5px solid rgba(59, 35, 20, 0.18);
  padding: 0.65rem 0.95rem;
  font-size: 0.9rem;
  background-color: #FAFAFA;
  transition: all 0.2s ease;
}

.form-control:focus, .form-select:focus {
  background-color: #FFFFFF;
  border-color: var(--nc-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
  outline: none;
}

.form-label {
  color: var(--nc-brown-dark);
  margin-bottom: 0.4rem;
}

/* ==========================================================================
   4. DARK LUXURY HEADER & SINGLE STRAIGHT LINE NAVBAR
   ========================================================================== */

/* Top Announcement Bar */
.nc-announcement-bar {
  background-color: #100602;
  color: #F2E3B3;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 7px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Main Header Container: Deep Rich Chocolate Espresso */
.nc-header {
  background: linear-gradient(180deg, #241209 0%, #170B05 100%) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
  position: sticky;
  top: 0;
  z-index: 1050 !important;
}

/* Brand Header Wrap: Stacks above navbar so customer dropdown floats over navbar */
.nc-brand-header-wrap {
  position: relative !important;
  z-index: 1060 !important;
}

.nc-account-dropdown {
  position: relative !important;
  z-index: 1065 !important;
}

.nc-account-dropdown .dropdown-menu {
  z-index: 1070 !important;
}

/* Logo: Strict Sizing & Glowing Appearance */
.nc-logo-img {
  height: 54px !important;
  max-height: 54px !important;
  width: auto !important;
  max-width: 140px !important;
  object-fit: contain !important;
  flex-shrink: 0 !important;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.35));
  transition: transform 0.3s ease;
}

.nc-brand-link:hover .nc-logo-img {
  transform: scale(1.05);
}

/* Brand Link Typography */
.nc-brand-link {
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
}

.nc-brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFFFFF !important;
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  transition: color 0.25s ease;
}

.nc-brand-link:hover .nc-brand-name {
  color: var(--nc-gold-light) !important;
}

.nc-brand-tagline {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  color: #E8D48B !important;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.95;
}

/* Search Bar in Dark Header */
.nc-search-input {
  border-radius: var(--nc-radius-pill) 0 0 var(--nc-radius-pill);
  border: 1.5px solid rgba(212, 175, 55, 0.4) !important;
  border-right: none !important;
  padding: 0.58rem 1.35rem;
  font-size: 0.88rem;
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: #FFF8F0 !important;
}

.nc-search-input::placeholder {
  color: rgba(245, 235, 225, 0.65) !important;
}

.nc-search-input:focus {
  background-color: rgba(255, 255, 255, 0.15) !important;
  border-color: #FFD700 !important;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.35) !important;
  color: #FFFFFF !important;
  outline: none;
}

.nc-search-form .btn-gold {
  border-radius: 0 var(--nc-radius-pill) var(--nc-radius-pill) 0;
  border: 1.5px solid #D4AF37 !important;
  border-left: none !important;
  padding: 0 1.35rem;
  box-shadow: none;
}

/* User Quick Actions (Wishlist, Account, Cart) in Dark Header */
.nc-user-btn {
  color: #F4E9DC !important;
  text-decoration: none !important;
  transition: all 0.25s ease;
  padding: 2px;
}

.nc-circle-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #F4E9DC;
  font-size: 0.95rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.nc-user-text {
  color: #F5EAE0;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}

.nc-user-btn:hover .nc-circle-icon {
  background: rgba(212, 175, 55, 0.25);
  border-color: #FFD700;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.nc-user-btn:hover .nc-user-text {
  color: var(--nc-gold-light);
}

.nc-action-link {
  color: #F4E9DC !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1.5px solid rgba(212, 175, 55, 0.35) !important;
  transition: all 0.25s ease;
  position: relative;
}

.nc-action-link:hover {
  background: rgba(212, 175, 55, 0.25) !important;
  border-color: #FFD700 !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4) !important;
}

.nc-badge-count {
  position: absolute;
  top: -3px;
  right: -3px;
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%) !important;
  color: #140803 !important;
  font-size: 0.68rem;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   5. DARK REGAL LUXURY NAVBAR (STRICT SINGLE STRAIGHT LINE)
   ========================================================================== */
.nc-navbar {
  background: linear-gradient(180deg, #110602 0%, #080301 100%) !important;
  border-top: 1px solid rgba(212, 175, 55, 0.25) !important;
  border-bottom: 2px solid rgba(212, 175, 55, 0.5) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.65);
  padding: 0 !important;
  position: relative !important;
  z-index: 1040 !important;
  overflow: visible !important;
}

.nc-navbar .dropdown-menu {
  z-index: 1055 !important;
}

/* Strict single line with NO WRAP guaranteed, perfectly centered without edge clipping */
.nc-nav-menu {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0 !important;
  margin: 0 auto !important;
  padding: 0 4px !important;
  list-style: none !important;
  overflow: visible !important;
  width: auto !important;
  max-width: 100% !important;
}

.nc-nav-menu::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.nc-nav-menu .nav-item {
  flex-shrink: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  position: relative;
}

/* Nav Link Item */
.nc-nav-menu .nav-link {
  color: #F5EAE0 !important;
  font-weight: 500;
  font-size: 0.81rem;
  letter-spacing: 0.01em;
  padding: 0.65rem 0.52rem !important;
  position: relative;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

/* Responsive spacing across all desktop screen sizes to guarantee 100% visibility of all buttons */
@media (min-width: 992px) and (max-width: 1199px) {
  .nc-nav-menu .nav-link {
    font-size: 0.73rem !important;
    padding: 0.58rem 0.32rem !important;
    letter-spacing: 0 !important;
  }
  .nc-nav-menu .nav-link .nc-caret-icon {
    font-size: 0.6rem !important;
    margin-left: 2px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .nc-nav-menu .nav-link {
    font-size: 0.78rem !important;
    padding: 0.62rem 0.44rem !important;
    letter-spacing: 0.005em;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .nc-nav-menu .nav-link {
    font-size: 0.82rem !important;
    padding: 0.68rem 0.60rem !important;
    letter-spacing: 0.015em;
  }
}
@media (min-width: 1600px) {
  .nc-nav-menu .nav-link {
    font-size: 0.86rem !important;
    padding: 0.72rem 0.82rem !important;
    letter-spacing: 0.025em;
  }
}

.nc-nav-menu .nav-link:hover,
.nc-nav-menu .nav-link.active {
  color: #FFD700 !important;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.55);
}

/* Glowing gold active/hover bottom indicator */
.nc-nav-menu .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 3px 3px 0 0;
  box-shadow: 0 -2px 10px rgba(255, 215, 0, 0.7);
}

.nc-nav-menu .nav-link:hover::after,
.nc-nav-menu .nav-link.active::after {
  width: 78%;
}

/* Hide default bootstrap caret and use our sleek custom icon */
.nc-nav-menu .dropdown-toggle::after {
  display: none !important;
}

.nc-caret-icon {
  font-size: 0.62rem;
  opacity: 0.75;
  transition: transform 0.25s ease, opacity 0.25s ease;
  color: var(--nc-gold-light);
}

.nc-nav-menu .nav-item.dropdown:hover .nc-caret-icon,
.nc-nav-menu .nav-item.dropdown.show .nc-caret-icon {
  transform: rotate(180deg);
  opacity: 1;
  color: #FFD700;
}

/* ==========================================================================
   DARK LUXURY DROPDOWN MENUS (STRICT BELOW-NAVBAR ALIGNMENT & SMOOTH TRANSITIONS)
   ========================================================================== */
.nc-nav-menu .nav-item.dropdown {
  position: relative !important;
}

.nc-nav-menu .dropdown-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  right: auto !important;
  margin: 0 !important;
  margin-top: 0 !important;
  min-width: 230px !important;
  background: linear-gradient(180deg, #180903 0%, #0E0401 100%) !important;
  border: 1.5px solid var(--nc-gold) !important;
  border-top: 2px solid var(--nc-gold) !important;
  border-radius: 0 0 var(--nc-radius-md) var(--nc-radius-md) !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.9), 0 0 20px rgba(212, 175, 55, 0.2) !important;
  padding: 0.5rem 0 !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1090 !important;

  /* Smooth Fade & Slide Transition */
  display: block !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(6px) !important;
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.2s ease !important;
}

/* For right-hand side categories, align dropdown to the right so it never overflows off-screen */
.nc-nav-menu .nav-item:nth-last-child(-n+4) .dropdown-menu {
  left: auto !important;
  right: 0 !important;
}

/* Active Hover & Open States (Desktop >= 992px) */
@media (min-width: 992px) {
  .nc-nav-menu .nav-item.dropdown:hover > .dropdown-menu,
  .nc-nav-menu .nav-item.dropdown.show > .dropdown-menu,
  .nc-nav-menu .dropdown-menu:hover {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  /* Seamless invisible hover bridge between navbar item and dropdown */
  .nc-nav-menu .dropdown-menu::before {
    content: '' !important;
    position: absolute !important;
    top: -12px !important;
    left: 0 !important;
    right: 0 !important;
    height: 14px !important;
    background: transparent !important;
  }
}

/* Account dropdown in header */
.nc-account-dropdown .dropdown-menu {
  z-index: 1090 !important;
  margin-top: 4px !important;
  background: linear-gradient(180deg, #180903 0%, #0E0401 100%) !important;
  border: 1.5px solid var(--nc-gold) !important;
  border-radius: var(--nc-radius-md) !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.9), 0 0 20px rgba(212, 175, 55, 0.2) !important;
}

@media (min-width: 992px) {
  .nc-account-dropdown:hover > .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }
  .nc-account-dropdown .dropdown-menu::before {
    content: '' !important;
    position: absolute !important;
    top: -10px !important;
    left: 0 !important;
    right: 0 !important;
    height: 12px !important;
    background: transparent !important;
  }
}

.nc-dropdown-dark .dropdown-item {
  color: #F4E9DC !important;
  font-size: 0.86rem;
  padding: 0.62rem 1.35rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.nc-dropdown-dark .dropdown-item:hover {
  background: rgba(201, 162, 39, 0.2) !important;
  color: #FFD700 !important;
  padding-left: 1.6rem;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.nc-dropdown-dark .dropdown-divider {
  border-top: 1px solid rgba(201, 162, 39, 0.22) !important;
  margin: 0.45rem 0;
}

/* ==========================================================================
   6. Page Header, Breadcrumb & Checkout Cards
   ========================================================================== */
.nc-page-header {
  background: linear-gradient(135deg, #FBF7F2 0%, #F5ECE0 100%);
  border-bottom: 1.5px solid rgba(201, 162, 39, 0.25);
  box-shadow: 0 2px 10px rgba(36, 18, 9, 0.03);
  padding: 2rem 0;
}

.breadcrumb-item a {
  color: var(--nc-gold-dark);
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: var(--nc-brown-dark);
  text-decoration: underline;
}

.card {
  border-radius: var(--nc-radius-lg);
  border: 1px solid rgba(201, 162, 39, 0.18);
  box-shadow: 0 4px 15px rgba(36, 18, 9, 0.04);
  background-color: #FFFFFF;
}

/* Order Review Card in Checkout */
.nc-order-review-card {
  position: sticky;
  top: 120px;
  border: 1.5px solid var(--nc-border-gold);
  border-radius: var(--nc-radius-lg);
  box-shadow: 0 8px 30px rgba(36, 18, 9, 0.06);
  background-color: #FFFFFF;
  padding: 1.75rem;
}

.nc-checkout-thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  border: 1px solid rgba(201, 162, 39, 0.25);
  object-fit: cover;
  background-color: var(--nc-beige-light);
  flex-shrink: 0;
}

/* ==========================================================================
   7. Product Cards & Shop Grid
   ========================================================================== */
.nc-product-card {
  border-radius: var(--nc-radius-md);
  border: 1px solid var(--nc-border-subtle);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: #FFFFFF;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.nc-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(36, 18, 9, 0.12);
  border-color: var(--nc-gold);
}

.nc-img-wrap {
  aspect-ratio: 1 / 1;
  background-color: var(--nc-beige-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  position: relative;
}

.nc-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.nc-product-img-secondary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s ease;
}

.nc-product-card:hover .nc-product-img-secondary {
  opacity: 1;
  transform: scale(1.06);
}

.nc-product-card:hover .nc-product-img-primary.has-secondary {
  opacity: 0;
}

.nc-card-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 3;
  pointer-events: none;
}

.nc-card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(20, 8, 3, 0.25);
  transition: background 0.2s ease;
}

.nc-card-dot.active {
  background: var(--nc-gold-bright);
}

.nc-product-card:hover .nc-product-img {
  transform: scale(1.06);
}

/* Wishlist Button */
.nc-wishlist-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--nc-border-subtle);
  color: var(--nc-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.2s ease;
}

.nc-wishlist-btn:hover {
  background-color: #FFFFFF;
  color: var(--nc-danger);
  transform: scale(1.1);
}

.nc-wishlist-btn.active {
  color: var(--nc-danger);
}

.nc-wishlist-btn.active i {
  font-weight: 900;
}

/* Quick Add Button Hover */
.nc-product-hover-actions {
  background: rgba(36, 18, 9, 0.88);
  transform: translateY(100%);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nc-product-card:hover .nc-product-hover-actions {
  transform: translateY(0);
}

/* ==========================================================================
   8. HERO BANNER, CATEGORIES, COLLECTIONS & SECTIONS
   ========================================================================== */

/* Hero Banner & Slider */
.nc-hero-section {
  background: radial-gradient(circle at 78% 25%, rgba(201, 162, 39, 0.22) 0%, transparent 55%),
              radial-gradient(circle at 18% 80%, rgba(201, 162, 39, 0.12) 0%, transparent 50%),
              linear-gradient(145deg, #1C0B05 0%, #0E0401 100%) !important;
  border-bottom: 2px solid rgba(212, 175, 55, 0.35);
  position: relative;
  overflow: hidden;
}

.nc-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.6;
}

.nc-hero-slide {
  min-height: 480px;
  position: relative;
  z-index: 2;
}

.nc-badge-subhead {
  background: rgba(212, 175, 55, 0.12) !important;
  border: 1.5px solid rgba(212, 175, 55, 0.45) !important;
  color: #F4E2AA !important;
  font-size: 0.8rem !important;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nc-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.95rem) !important;
  font-weight: 700;
  line-height: 1.28;
  color: #FFF9F2 !important;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.8);
  letter-spacing: -0.01em;
}

.nc-hero-subtitle {
  color: #E2D3C4 !important;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 560px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* Dual Split Hero Slider & Presentation */
.nc-hero-slider-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 25px rgba(212, 175, 55, 0.15);
  background: #110602;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.nc-hero-slider-wrap:hover {
  border-color: #FFD700;
  transform: translateY(-3px);
}

.nc-hero-slide-link {
  display: block;
  overflow: hidden;
  width: 100%;
}

.nc-hero-slide-img {
  width: 100%;
  aspect-ratio: 16 / 11;
  min-height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nc-hero-slide-link:hover .nc-hero-slide-img {
  transform: scale(1.03);
}

/* Enlarged Luxury Floating Brand Card */
.nc-hero-brand-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), 0 0 25px rgba(212, 175, 55, 0.18);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 480px;
  width: 100%;
}

.nc-hero-brand-card:hover {
  transform: translateY(-4px);
  border-color: #FFD700;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.65), 0 0 35px rgba(212, 175, 55, 0.3);
}

.nc-hero-brand-logo {
  height: 64px !important;
  max-height: 64px !important;
  width: auto !important;
  object-fit: contain !important;
  filter: drop-shadow(0 4px 14px rgba(212, 175, 55, 0.5));
  flex-shrink: 0;
}

/* ==========================================================================
   HORIZONTAL IMAGE STRIP (ATTACHED BELOW HERO SECTION WITH NO GAP)
   Width equal to hero section, height ~1/3rd of hero section (~160px)
   ========================================================================== */
.nc-hero-strip-wrapper {
  margin-top: 0 !important;
  padding-top: 0.5rem !important;
  padding-bottom: 2rem !important;
  width: 100%;
  position: relative;
  z-index: 5;
}

.nc-hero-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 100%;
  height: 160px; /* Approximate 1/3rd size of hero section (~480px total height) */
}

.nc-hero-strip-grid.nc-strip-count-1 {
  grid-template-columns: 1fr;
}
.nc-hero-strip-grid.nc-strip-count-2 {
  grid-template-columns: repeat(2, 1fr);
}
.nc-hero-strip-grid.nc-strip-count-3 {
  grid-template-columns: repeat(3, 1fr);
}
.nc-hero-strip-grid.nc-strip-count-4 {
  grid-template-columns: repeat(4, 1fr);
}

.nc-hero-strip-item {
  position: relative;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  display: block;
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.55), 0 0 15px rgba(212, 175, 55, 0.1);
  background: #0E0401;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nc-hero-strip-item:hover {
  transform: translateY(-4px);
  border-color: #FFD700;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.75), 0 0 25px rgba(212, 175, 55, 0.35);
}

.nc-hero-strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nc-hero-strip-item:hover .nc-hero-strip-img {
  transform: scale(1.06);
}

.nc-hero-strip-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(14, 4, 1, 0.94) 0%, rgba(14, 4, 1, 0.45) 55%, rgba(14, 4, 1, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px 14px;
  transition: background 0.3s ease;
}

.nc-hero-strip-item:hover .nc-hero-strip-overlay {
  background: linear-gradient(to top, rgba(14, 4, 1, 0.96) 0%, rgba(14, 4, 1, 0.3) 55%, transparent 100%);
}

.nc-hero-strip-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nc-hero-strip-badge {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nc-gold-light, #F4E2AA);
  font-weight: 600;
  opacity: 0.9;
}

.nc-hero-strip-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFF9F2;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nc-hero-strip-subtitle {
  font-size: 0.75rem;
  color: #E2D3C4;
  opacity: 0.85;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nc-hero-strip-action {
  font-size: 0.72rem;
  font-weight: 600;
  color: #FFD700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
  transition: transform 0.25s ease;
}

.nc-hero-strip-item:hover .nc-hero-strip-action {
  transform: translateX(3px);
  color: #FFFFFF;
}

/* Responsive adjustments for Mobile and Tablet */
@media (max-width: 991px) {
  .nc-hero-strip-wrapper {
    padding-bottom: 1.5rem !important;
  }
  .nc-hero-strip-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    height: 135px;
    gap: 12px;
    padding-bottom: 6px;
  }
  .nc-hero-strip-grid::-webkit-scrollbar {
    height: 4px;
  }
  .nc-hero-strip-grid::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.4);
    border-radius: 4px;
  }
  .nc-hero-strip-item {
    flex: 0 0 72%;
    scroll-snap-align: start;
    height: 100%;
  }
}

@media (max-width: 575px) {
  .nc-hero-strip-item {
    flex: 0 0 82%;
  }
  .nc-hero-strip-title {
    font-size: 0.88rem;
  }
}

/* Category Cards & Icons */
.nc-categories-section {
  background-color: #FFFDF9;
  position: relative;
}

.nc-category-card {
  background: #FFFFFF !important;
  border-radius: 14px !important;
  border: 1.5px solid rgba(201, 162, 39, 0.2) !important;
  box-shadow: 0 6px 18px rgba(36, 18, 9, 0.04) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow: hidden;
  position: relative;
}

.nc-category-card:hover {
  transform: translateY(-8px) !important;
  border-color: #D4AF37 !important;
  box-shadow: 0 16px 36px rgba(36, 18, 9, 0.12), 0 0 18px rgba(212, 175, 55, 0.25) !important;
}

.nc-cat-icon-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FAF5EF 0%, #F5EAE0 100%);
  border: 1.5px solid rgba(201, 162, 39, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(36, 18, 9, 0.05);
}

.nc-category-card:hover .nc-cat-icon-circle {
  background: var(--nc-gold-gradient);
  border-color: #FFD700;
  transform: scale(1.12) rotate(4deg);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.45);
}

.nc-category-card:hover .nc-cat-icon-circle i {
  color: #140803 !important;
}

.nc-cat-link-label {
  transition: transform 0.25s ease;
  display: inline-block;
}

.nc-category-card:hover .nc-cat-link-label {
  transform: translateX(4px);
  color: var(--nc-gold-dark) !important;
}

.nc-title-divider {
  width: 60px;
  height: 3px;
  background: var(--nc-gold-gradient);
  border-radius: 2px;
  margin-top: 0.5rem;
  box-shadow: 0 1px 6px rgba(201, 162, 39, 0.4);
}

/* Featured Collections */
.nc-collections-section {
  background: linear-gradient(180deg, #F9F2EA 0%, #F4E8DB 100%);
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.nc-collection-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 25px rgba(36, 18, 9, 0.08);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nc-collection-card:hover {
  transform: translateY(-7px);
  border-color: #FFD700;
  box-shadow: 0 18px 40px rgba(36, 18, 9, 0.18), 0 0 25px rgba(212, 175, 55, 0.3);
}

.nc-collection-bg {
  background: linear-gradient(140deg, #241209 0%, #150803 100%);
  min-height: 250px;
  position: relative;
  transition: all 0.35s ease;
}

.nc-collection-card:hover .nc-collection-bg {
  background: linear-gradient(140deg, #2B150A 0%, #1A0A04 100%);
}

/* Prophetic Quote / Sunnah Banner */
.nc-promo-quote-section {
  background: radial-gradient(circle at center, rgba(201, 162, 39, 0.18) 0%, transparent 70%),
              linear-gradient(135deg, #241108 0%, #120602 100%) !important;
  border-top: 2px solid rgba(212, 175, 55, 0.4);
  border-bottom: 2px solid rgba(212, 175, 55, 0.4);
  position: relative;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
}

.nc-promo-quote-section h3 {
  color: #FFF6EB;
  font-size: calc(1.3rem + 0.8vw);
  line-height: 1.5;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Why Choose Noble Choice Feature Boxes */
.nc-why-choose-section {
  background: linear-gradient(180deg, #FBF6EE 0%, #F5EAE0 100%);
}

.nc-feature-box {
  background: #FFFFFF !important;
  border: 1.5px solid rgba(201, 162, 39, 0.18) !important;
  border-radius: 12px !important;
  box-shadow: 0 6px 18px rgba(36, 18, 9, 0.04) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.nc-feature-box:hover {
  transform: translateY(-6px) !important;
  border-color: var(--nc-gold) !important;
  box-shadow: 0 16px 35px rgba(36, 18, 9, 0.1), 0 0 18px rgba(212, 175, 55, 0.2) !important;
}

.nc-feature-icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FAF5EF 0%, #F5ECE0 100%);
  border: 1.5px solid rgba(201, 162, 39, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  box-shadow: 0 4px 12px rgba(36, 18, 9, 0.05);
}

.nc-feature-box:hover .nc-feature-icon-circle {
  background: var(--nc-gold-gradient);
  border-color: #FFD700;
  transform: scale(1.12);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.4);
}

.nc-feature-box:hover .nc-feature-icon-circle i {
  color: #140803 !important;
}

/* Testimonials & Reviews */
.nc-review-card {
  background: #FFFFFF !important;
  border: 1.5px solid rgba(201, 162, 39, 0.2) !important;
  border-radius: 14px !important;
  box-shadow: 0 6px 20px rgba(36, 18, 9, 0.04) !important;
  transition: all 0.3s ease !important;
}

.nc-review-card:hover {
  transform: translateY(-5px) !important;
  border-color: var(--nc-gold) !important;
  box-shadow: 0 14px 30px rgba(36, 18, 9, 0.1) !important;
}

/* Blog Cards */
.nc-blog-card {
  background: #FFFFFF !important;
  border: 1.5px solid rgba(201, 162, 39, 0.2) !important;
  border-radius: 14px !important;
  box-shadow: 0 6px 20px rgba(36, 18, 9, 0.04) !important;
  transition: all 0.35s ease !important;
}

.nc-blog-card:hover {
  transform: translateY(-6px) !important;
  border-color: var(--nc-gold) !important;
  box-shadow: 0 15px 35px rgba(36, 18, 9, 0.12), 0 0 15px rgba(212, 175, 55, 0.2) !important;
}

/* ==========================================================================
   9. Floating WhatsApp & Mobile Navigation
   ========================================================================== */
.nc-whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 25px;
  z-index: 1040;
  width: 56px;
  height: 56px;
  background-color: var(--nc-whatsapp);
  color: #FFFFFF !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: all 0.3s ease;
  text-decoration: none;
}

.nc-whatsapp-float:hover {
  transform: scale(1.1);
  color: #FFFFFF !important;
}

.nc-whatsapp-tooltip {
  position: absolute;
  right: 65px;
  background-color: #120703;
  color: #FFFFFF;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.nc-whatsapp-float:hover .nc-whatsapp-tooltip {
  opacity: 1;
}

.nc-mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #140803 !important;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4);
  z-index: 1030;
}

.nc-bottom-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.72rem;
  color: #F4E9DC;
  text-decoration: none;
}

.nc-bottom-nav-link i {
  font-size: 1.15rem;
  margin-bottom: 2px;
  color: var(--nc-gold-light);
}

.nc-bottom-nav-link.active,
.nc-bottom-nav-link:hover {
  color: #FFD700;
}

.nc-bottom-nav-link.active i,
.nc-bottom-nav-link:hover i {
  color: #FFD700;
}

.nc-badge-count-mobile {
  position: absolute;
  top: -2px;
  right: 15%;
  background: var(--nc-gold-gradient);
  color: #140803;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 1px 5px;
}

/* Mobile Drawer (Dark Luxury) - Full Height & Stacks Above Sticky Header */
.nc-mobile-drawer {
  --bs-offcanvas-zindex: 1100 !important;
  background-color: #1A0C06 !important;
  color: #F4E9DC !important;
  z-index: 1100 !important; /* Stacks strictly above .nc-header (1050), brand wrap (1060), and dropdowns */
  width: 320px !important;
  max-width: 85vw !important;
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.85) !important;
  position: fixed !important;
}

.nc-mobile-drawer.offcanvas-start {
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  margin: 0 !important;
  height: 100% !important;
  height: 100dvh !important;
}

/* Ensure offcanvas backdrop dims the entire screen including the header */
.offcanvas-backdrop,
.offcanvas-backdrop.show {
  --bs-backdrop-zindex: 1090 !important;
  z-index: 1090 !important;
  background-color: rgba(0, 0, 0, 0.75) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.nc-drawer-header {
  background: linear-gradient(180deg, #160703 0%, #100502 100%) !important;
  border-bottom: 1.5px solid rgba(212, 175, 55, 0.35) !important;
  padding: 1.1rem 1.25rem !important;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nc-mobile-nav .mobile-nav-item {
  color: #F4E9DC;
  display: block;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.92rem;
  transition: all 0.2s ease;
}

.nc-mobile-nav .mobile-nav-item:hover {
  background-color: rgba(212, 175, 55, 0.15);
  color: #FFD700;
  padding-left: 1.5rem;
}

.nc-mobile-nav .mobile-sub-item {
  color: #E8D48B;
  display: block;
  padding: 0.5rem 1.25rem 0.5rem 2.5rem;
  font-size: 0.85rem;
}

.nc-mobile-nav .mobile-sub-item:hover {
  color: #FFD700;
}

/* Hero Carousel Smooth Transitions */
#heroCarousel.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: 0.85s !important;
  transition-property: opacity !important;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
}

#heroCarousel.carousel-fade .carousel-item.active,
#heroCarousel.carousel-fade .carousel-item-next.carousel-item-start,
#heroCarousel.carousel-fade .carousel-item-prev.carousel-item-end {
  opacity: 1;
}

/* Large Luxury Social Media Buttons on Contact Page */
.nc-social-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none !important;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #241209 0%, #170B05 100%);
  color: var(--nc-gold-light, #E8D48B);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.nc-social-btn:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  color: #FFFFFF !important;
}

.nc-social-btn.nc-social-ig:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  border-color: #dc2743 !important;
  box-shadow: 0 8px 24px rgba(220, 39, 67, 0.4) !important;
}

.nc-social-btn.nc-social-fb:hover {
  background: #1877F2 !important;
  border-color: #1877F2 !important;
  box-shadow: 0 8px 24px rgba(24, 119, 242, 0.4) !important;
}

.nc-social-btn.nc-social-yt:hover {
  background: #FF0000 !important;
  border-color: #FF0000 !important;
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.4) !important;
}

/* Footer Social Icons */
.nc-footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  text-decoration: none !important;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: var(--nc-gold-light, #E8D48B);
  transition: all 0.3s ease;
}

.nc-footer-social-link:hover {
  color: #FFFFFF !important;
  transform: translateY(-3px);
  border-color: #FFD700;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

.nc-footer-social-link.nc-social-ig:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  border-color: #dc2743 !important;
}
.nc-footer-social-link.nc-social-fb:hover {
  background: #1877F2 !important;
  border-color: #1877F2 !important;
}
.nc-footer-social-link.nc-social-yt:hover {
  background: #FF0000 !important;
  border-color: #FF0000 !important;
}

/* ==========================================================================
   10. Main Footer
   ========================================================================== */
.nc-footer {
  background: linear-gradient(180deg, #1C0E07 0%, #100602 100%);
  color: var(--nc-cream);
  border-top: 3px solid var(--nc-gold);
}

.nc-footer h5, .nc-footer h6 {
  color: var(--nc-gold-light);
}

.nc-footer a {
  color: #D6C7B8;
}

.nc-footer a:hover {
  color: #FFD700;
}

@media (max-width: 991.98px) {
  body {
    padding-bottom: 60px;
  }
}
