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

:root {
  /* Premium Brand Colors */
  --primary-red: #B31B1B;
  --primary-red-hover: #9A1515;
  --secondary-orange: #E65100;
  --accent-green: #2E7D32;
  --bg-cream: #FDFBF7;
  --bg-white: #FFFFFF;
  --text-dark: #3E2723;
  --text-light: #795548;
  
  /* UI Elements */
  --border-light: rgba(62, 39, 35, 0.1);
  --glass-bg: rgba(253, 251, 247, 0.85);
  --glass-border: rgba(255, 255, 255, 0.5);
  --shadow-sm: 0 4px 6px -1px rgba(62, 39, 35, 0.05), 0 2px 4px -1px rgba(62, 39, 35, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(62, 39, 35, 0.08), 0 4px 6px -2px rgba(62, 39, 35, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(62, 39, 35, 0.1), 0 10px 10px -5px rgba(62, 39, 35, 0.04);
  
  /* Layout */
  --nav-height: 80px;
  --container-width: 1200px;
  
  /* Fonts */
  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Playfair Display', serif; /* For headings, giving an emotional, heritage feel */
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-primary);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none; /* Hide default cursor */
}

a, button, input, textarea, .faq-question {
  cursor: none !important; /* Hide default cursor on interactive elements */
}

/* Custom Cursor Styles */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-red);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(179, 27, 27, 0.5);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-outline.hover {
  width: 60px;
  height: 60px;
  background-color: rgba(179, 27, 27, 0.1);
  border-color: var(--primary-red);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-primary);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--primary-red); }
.text-secondary { color: var(--secondary-orange); }

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-red), var(--secondary-orange));
  color: white;
  box-shadow: 0 4px 15px rgba(179, 27, 27, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(179, 27, 27, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary-red);
  border: 2px solid var(--primary-red);
}

.btn-outline:hover {
  background: var(--primary-red);
  color: white;
}

/* Glassmorphism Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(253, 251, 247, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  height: 70px;
  background: rgba(253, 251, 247, 0.9);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(179, 27, 27, 0.1);
}

.navbar .container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-family: var(--font-secondary);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-red);
  letter-spacing: 1px;
}

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

.nav-links a {
  font-weight: 500;
  font-size: 1.05rem;
  position: relative;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cart-btn {
  position: relative;
  font-size: 1.5rem;
  color: var(--text-dark);
  transition: transform var(--transition-fast);
}

.cart-btn:hover {
  transform: scale(1.1);
  color: var(--primary-red);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--text-dark);
}

/* Section Spacing */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 5rem 0 2rem;
  margin-top: 4rem;
}

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

.footer-brand h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all var(--transition-normal);
}

.social-links a:hover {
  background: var(--primary-red);
  transform: translateY(-3px);
}

.footer-links h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--secondary-orange);
  padding-left: 5px;
}

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

/* ═══════════════════ RESPONSIVE ═══════════════════ */

/* Disable custom cursor on touch devices */
@media (pointer: coarse) {
  body { cursor: auto !important; }
  a, button, input, textarea, .faq-question { cursor: auto !important; }
  .cursor-dot, .cursor-outline { display: none !important; }
}

@media (max-width: 992px) {
  .container { padding: 0 1.5rem; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    text-align: center;
    gap: 0;
    border-bottom: 3px solid var(--primary-red);
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    font-size: 1.1rem;
    display: block;
    padding: 0.3rem 0;
  }

  .mobile-menu-toggle {
    display: block;
  }

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

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

@media (max-width: 768px) {
  .container { padding: 0 1.2rem; }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .navbar {
    height: 65px;
  }

  .nav-brand {
    font-size: 1.6rem;
  }

  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  .section {
    padding: 2.5rem 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .footer {
    padding: 3rem 0 1.5rem;
  }
}
