/* ============================================
   UNIVERSITY LIQUOR & WINE - MAIN STYLESHEET
   Premium Luxury Design System
   ============================================ */

/* ============================================
   CSS VARIABLES - DESIGN SYSTEM
   ============================================ */
:root {
  /* Primary Colors */
  --primary-navy: #0A1628;
  --primary-gold: #D4AF37;
  --primary-burgundy: #800020;
  
  /* Neutral Colors */
  --cream: #F8F6F0;
  --off-white: #FAFAF8;
  --light-gray: #E8E6E0;
  
  /* Text Colors */
  --text-dark: #2C2C2C;
  --text-medium: #5A5A5A;
  --text-light: #8A8A8A;
  
  /* Accent & Effects */
  --gold-accent: #C9A961;
  --shadow-soft: rgba(10, 22, 40, 0.08);
  --shadow-medium: rgba(10, 22, 40, 0.15);
  --overlay-dark: rgba(10, 22, 40, 0.6);
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #C9A961 100%);
  --gradient-navy: linear-gradient(180deg, #0A1628 0%, #1a2c48 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.1);
  --shadow-lg: 0 8px 32px rgba(10, 22, 40, 0.15);
  --shadow-xl: 0 16px 48px rgba(10, 22, 40, 0.2);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s ease;
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --spacing-xxl: 8rem;
  
  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-accent: 'Cinzel', serif;
}

/* ============================================
   TYPOGRAPHY - PREMIUM FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Montserrat:wght@300;400;600;700&family=Cinzel:wght@400;600;700&display=swap');

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.7;
  background-color: var(--off-white);
  overflow-x: hidden;
}

/* ============================================
   RESPONSIVE IMAGES - PREVENT OVERFLOW
   ============================================ */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

iframe {
  max-width: 100%;
}

/* ============================================
   TYPOGRAPHY STYLES
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.05em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.03em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-medium);
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-narrow {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xxl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-decoration {
  width: 80px;
  height: 1px;
  background: var(--gradient-gold);
  margin: 0 auto var(--spacing-md);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary-navy);
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.05em;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

/* Featured Collections subtitle - single line on larger screens */
@media (min-width: 768px) {
  .featured-collections .section-subtitle {
    white-space: nowrap;
    font-size: 1.125rem;
    max-width: none;
  }
}

@media (max-width: 767px) {
  .featured-collections .section-subtitle {
    white-space: normal;
  }
}

/* Why Choose Us subtitle - single line on larger screens */
@media (min-width: 768px) {
  .why-choose-us .section-subtitle {
    white-space: nowrap;
    font-size: 1.125rem;
    max-width: none;
  }
}

@media (max-width: 767px) {
  .why-choose-us .section-subtitle {
    white-space: normal;
  }
}

/* Newsletter subtitle - single line on larger screens */
@media (min-width: 768px) {
  .newsletter .section-subtitle {
    white-space: nowrap;
    font-size: 1.125rem;
    max-width: none;
  }
}

@media (max-width: 767px) {
  .newsletter .section-subtitle {
    white-space: normal;
  }
}

/* ============================================
   BUTTONS - PREMIUM STYLING
   ============================================ */
.btn-primary {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--primary-navy);
  padding: 16px 40px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.875rem;
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #E5C047 0%, #D4AF37 100%);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary-gold);
  padding: 16px 40px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.875rem;
  transition: all var(--transition-normal);
  border: 2px solid var(--primary-gold);
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-secondary:hover {
  background: var(--primary-gold);
  color: var(--primary-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   CONTACT INFORMATION SECTION (Home Page)
   ============================================ */
.contact-info-section .section-title {
  text-align: center;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info-item {
  text-align: center;
}

.contact-info-heading {
  font-size: 1.5rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
  font-family: var(--font-display);
  text-align: center;
}

.contact-info-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 0;
}

.contact-info-text strong {
  display: block;
  text-align: center;
  margin-bottom: 4px;
}

.contact-info-link {
  color: var(--text-dark);
  text-decoration: none;
  text-align: center;
  display: inline-block;
}

.contact-info-link:hover {
  color: var(--primary-gold);
  text-decoration: underline;
}

.contact-info-button {
  margin-top: 1rem;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Desktop-specific spacing adjustments for Contact Information section */
@media (min-width: 769px) {
  /* Reduce line-height for more compact spacing between labels and values */
  .contact-info-text {
    line-height: 1.4;
  }
  
  /* Reduce spacing after strong labels (Phone:, Email:, day labels) */
  .contact-info-text strong {
    margin-bottom: 6px;
    display: block;
    line-height: 1.2;
  }
  
  /* Reduce spacing in paragraphs containing labels and values */
  .contact-info-item .contact-info-text {
    margin-bottom: 0;
  }
  
  /* Additional spacing reduction for Contact section (Phone/Email) */
  .contact-info-item:nth-child(2) .contact-info-text {
    line-height: 1.35;
  }
  
  .contact-info-item:nth-child(2) .contact-info-text strong {
    margin-bottom: 5px;
  }
  
  /* Additional spacing reduction for Store Hours section */
  .contact-info-item:nth-child(3) .contact-info-text {
    line-height: 1.35;
  }
  
  .contact-info-item:nth-child(3) .contact-info-text strong {
    margin-bottom: 5px;
  }
  
  /* Reduce margin-top between separate paragraphs in Contact section */
  .contact-info-item:nth-child(2) .contact-info-text + .contact-info-text {
    margin-top: 0.75rem;
  }
  
  /* Reduce margin-top between separate paragraphs in Store Hours section */
  .contact-info-item:nth-child(3) .contact-info-text + .contact-info-text {
    margin-top: 0.75rem;
  }
}

/* Responsive styles for Contact Information section */
@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .contact-info-heading {
    font-size: 1.375rem;
  }
  
  .contact-info-text {
    font-size: 1rem;
  }
  
  .contact-info-button {
    width: 100%;
    max-width: 280px;
  }
}

/* ============================================
   STORE INFORMATION SECTION (Contact Page)
   ============================================ */
.store-info-section .section-title {
  text-align: center;
}

.store-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.store-info-item {
  text-align: center;
}

.store-info-heading {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  text-align: center;
}

.store-info-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #000000;
  text-align: center;
  margin-bottom: 0;
}

.store-info-text strong {
  display: block;
  text-align: center;
  margin-bottom: 4px;
}

.store-info-link {
  color: #000000;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}

.store-info-link:hover {
  color: var(--primary-gold);
  text-decoration: underline;
}

.store-info-button {
  margin-top: 1rem;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ============================================
   STORE HOURS SECTION (Contact Page)
   ============================================ */
.store-hours-section .section-title {
  text-align: center;
}

.store-hours-container {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.hours-row {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid var(--light-gray);
  text-align: center;
}

.hours-row-last {
  border-bottom: none;
}

.hours-day {
  display: block;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
  text-align: center;
}

.hours-time {
  display: block;
  color: var(--text-medium);
  text-align: center;
}

.hours-note {
  margin-top: 1.5rem;
  color: var(--text-light);
  font-size: 0.9375rem;
  text-align: center;
}

/* Responsive styles for Store Information and Store Hours sections */
@media (max-width: 768px) {
  .store-info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .store-info-heading {
    font-size: 1.375rem;
  }
  
  .store-info-text {
    font-size: 1rem;
  }
  
  .store-info-button {
    width: 100%;
    max-width: 280px;
  }
  
  .store-hours-container {
    padding: 1.5rem;
  }
  
  .hours-row {
    padding: 0.875rem 0;
  }
  
  .hours-day {
    font-size: 0.9375rem;
  }
  
  .hours-time {
    font-size: 0.9375rem;
  }
}

/* ============================================
   LOGO - TEXT-BASED ELEGANT DESIGN
   ============================================ */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-image {
  height: 72px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.logo-image:hover {
  transform: scale(1.05);
}

/* Fallback text logo (hidden when image is present) */
.logo-primary {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-gold);
  letter-spacing: 0.05em;
  display: none;
}

.logo-secondary {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary-navy);
  margin-top: -4px;
  display: none;
}

/* ============================================
   NAVIGATION - STICKY ELEGANT HEADER
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: var(--primary-navy);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-lg);
  align-items: center;
}

.nav-menu a {
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu li {
  position: relative;
}

/* Dropdown Menu Styles */
.nav-menu .dropdown {
  position: relative;
}

.nav-menu .dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width var(--transition-normal);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu .dropdown > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width var(--transition-normal);
}

.nav-menu .dropdown:hover > a::after {
  width: 100%;
}

.nav-menu .dropdown:hover > a::after {
  width: 100%;
}

.nav-menu .dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-menu .dropdown-link {
  flex: 1;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition-normal);
}

.nav-menu .dropdown-link:hover {
  color: rgba(255, 255, 255, 1);
}

.nav-menu .dropdown-toggle {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  color: inherit;
}

.nav-menu .dropdown-toggle:focus {
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
}

.nav-menu .dropdown-arrow {
  font-size: 0.625rem;
  transition: transform var(--transition-normal);
  display: inline-block;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
}

.nav-menu .dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-menu .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-normal);
  list-style: none;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  z-index: 1001;
}

.nav-menu .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu .dropdown-menu li {
  margin: 0;
}

.nav-menu .dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--primary-navy);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.05em;
  transition: all var(--transition-fast);
}

.nav-menu .dropdown-menu a:hover {
  background: var(--cream);
  color: var(--primary-burgundy);
  padding-left: 2rem;
}

.nav-menu > li:not(.dropdown) > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width var(--transition-normal);
}

.nav-menu > li:not(.dropdown) > a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.nav-phone {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: white;
  transition: var(--transition-fast);
}

/* ============================================
   HERO SECTION - FULL HEIGHT STRIKING
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--gradient-navy);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 22, 40, 0.3) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/Hero-image.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
  z-index: 1;
  animation: heroFadeIn 1.5s ease-out;
  filter: brightness(0.85) contrast(1.1);
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 0.5;
    transform: scale(1);
  }
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.75) 0%, rgba(10, 22, 40, 0.55) 50%, rgba(10, 22, 40, 0.85) 100%);
  z-index: 2;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 var(--spacing-md);
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  color: white;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-xl);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-indicator::after {
  content: '↓';
  display: block;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 1.5rem;
}

/* ============================================
   AGE VERIFICATION POPUP
   ============================================ */
.age-verification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.5s ease-out;
}

.age-verification-overlay.hidden {
  display: none;
}

.age-verification-modal {
  background: var(--off-white);
  padding: var(--spacing-xl);
  border-radius: 8px;
  text-align: center;
  max-width: 500px;
  margin: var(--spacing-md);
  box-shadow: var(--shadow-xl);
  animation: scaleIn 0.5s ease-out;
}

.age-icon {
  font-size: 4rem;
  margin-bottom: var(--spacing-md);
}

.age-verification-modal h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary-navy);
  margin-bottom: var(--spacing-sm);
}

.age-verification-modal p {
  color: var(--text-medium);
  margin-bottom: var(--spacing-lg);
  font-size: 1.125rem;
}

.age-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-enter {
  background: var(--gradient-gold);
  color: var(--primary-navy);
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition-normal);
}

.btn-enter:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-exit {
  background: transparent;
  color: var(--text-medium);
  padding: 14px 32px;
  border: 2px solid var(--light-gray);
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition-normal);
}

.btn-exit:hover {
  border-color: var(--text-medium);
  color: var(--text-dark);
}

/* ============================================
   PRODUCT CARDS - LUXURY DESIGN
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.shop-category-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
}

.product-card.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

.product-image {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  background: var(--light-gray);
}

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

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 40, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.btn-inquire {
  background: var(--gradient-gold);
  color: var(--primary-navy);
  padding: 12px 28px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: var(--transition-normal);
  text-decoration: none;
  display: inline-block;
}

.btn-inquire:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.product-info {
  padding: var(--spacing-md);
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary-navy);
  margin-bottom: var(--spacing-xs);
}

.product-description {
  color: var(--text-medium);
  font-size: 0.9375rem;
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
}

.product-meta {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  margin-top: var(--spacing-sm);
}

.product-origin,
.product-type {
  font-size: 0.8125rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  background: var(--light-gray);
  border-radius: 4px;
}

/* ============================================
   FEATURED COLLECTIONS
   ============================================ */
.featured-collections {
  background: var(--cream);
  padding: var(--spacing-xxl) 0;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.collection-card {
  position: relative;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}

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

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

.collection-card:hover img {
  transform: scale(1.1);
}

.collection-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.9), transparent);
  padding: var(--spacing-lg);
  color: white;
}

.collection-title {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: var(--spacing-xs);
  color: white;
}

.collection-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

/* ============================================
   WHY CHOOSE US - 4 BOXES
   ============================================ */
.why-choose-us {
  background: white;
  padding: var(--spacing-xxl) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--off-white);
  border-radius: 8px;
  transition: all var(--transition-normal);
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary-navy);
  margin-bottom: var(--spacing-sm);
  white-space: nowrap;
}

/* Allow wrapping on mobile for readability */
@media (max-width: 767px) {
  .feature-title {
    white-space: normal;
    font-size: 1.375rem;
  }
}

.feature-description {
  color: var(--text-medium);
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS SLIDER
   ============================================ */
.testimonials {
  background: var(--gradient-navy);
  color: white;
  padding: var(--spacing-xxl) 0;
}

.testimonials .section-title {
  color: white;
}

.testimonials .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.testimonials-slider {
  max-width: 900px;
  margin: 3.6rem auto 0;
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-item {
  padding: var(--spacing-xl);
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  text-align: center;
  box-sizing: border-box;
}

.testimonial-text {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-display);
}

.testimonial-author {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-gold);
  letter-spacing: 0.05em;
}

.testimonial-role {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--spacing-xs);
}

/* ============================================
   NEWSLETTER SIGNUP
   ============================================ */
.newsletter {
  background: var(--cream);
  padding: var(--spacing-xxl) 0;
  text-align: center;
}

.newsletter-form {
  max-width: 600px;
  margin: var(--spacing-xl) auto 0;
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 16px 24px;
  border: 2px solid var(--light-gray);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: white;
  transition: var(--transition-normal);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.newsletter-input.error,
input.error,
textarea.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.newsletter-input.error:focus,
input.error:focus,
textarea.error:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

/* ============================================
   FOOTER - COMPREHENSIVE ELEGANT
   ============================================ */
.footer {
  background: var(--primary-navy);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

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

.footer-section h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--primary-gold);
  margin-bottom: var(--spacing-md);
  letter-spacing: 0.05em;
  text-align: center;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 0.9375rem;
  text-align: center;
  margin: 0 auto 1rem;
  max-width: 100%;
}

.footer-section p:last-child {
  margin-bottom: 0;
}

/* Center contact section labels and content */
.footer-section p strong {
  display: block;
  text-align: center;
  margin-bottom: 4px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 0.9375rem;
  text-align: center;
}

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

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.footer-section .footer-links {
  display: block;
  text-align: center;
}

.footer-section .footer-links li {
  margin-bottom: 12px;
  display: block;
  text-align: center;
}

.footer-section .footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
  display: block;
  text-align: center;
}

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

.footer-bottom .footer-links {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-md);
}

.footer-bottom .footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

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

.footer-hours {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}

.footer-hours li {
  display: block;
  margin-bottom: var(--spacing-xs);
  padding-bottom: var(--spacing-xs);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-hours li span {
  display: block;
  text-align: center;
  margin-bottom: 4px;
}

.footer-hours li span:first-child {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.footer-hours li span:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: var(--gradient-gold);
  margin: var(--spacing-xl) 0 var(--spacing-sm) 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-bottom .footer-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.footer-bottom .ndg-link {
  color: var(--primary-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom .ndg-link:hover {
  color: white;
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
  justify-content: center;
}

/* Footer Social Icons Container */
.footer-social-icons {
  display: flex !important;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center !important;
  margin-top: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition-normal);
  color: white;
  font-size: 1.25rem;
}

.social-icons a:hover {
  background: var(--primary-gold);
  color: var(--primary-navy);
  transform: translateY(-3px);
}

/* Social Media Icons - Contact Section */
.social-icon-link:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-md) !important;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  color: var(--primary-navy);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
  z-index: 999;
}

.back-to-top.visible {
  display: flex;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ============================================
   UTILITY ANIMATIONS
   ============================================ */
.fade-in {
  animation: fadeInUp 0.8s ease-out both;
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* ============================================
   CATEGORY TABS (Products Page)
   ============================================ */
.category-tab {
  padding: 12px 24px;
  background: white;
  border: 2px solid var(--light-gray);
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-medium);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.category-tab:hover {
  border-color: var(--primary-gold);
  color: var(--primary-navy);
}

.category-tab.active {
  background: var(--gradient-gold);
  border-color: var(--primary-gold);
  color: var(--primary-navy);
}

