/*
=========================================
  SV DESIGN STUDIO — CORE THEME STYLES
=========================================
*/

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- Design Variables --- */
:root {
  /* Primary Palette */
  --primary-bg: #F8F5F0;
  --secondary-bg: #E7D8C9;
  --charcoal: #1A1A1A;
  --brand-brown: #8B6B52;
  --brand-gold: #C5A059;
  
  /* Accent Colors */
  --accent-mustard: #D8A928;
  --accent-coral: #E26D5A;
  --accent-emerald: #2E6B5A;
  --accent-light: #Fcfbfa;
  
  /* Typography */
  --font-serif-cormorant: 'Cormorant Garamond', 'Playfair Display', serif;
  --font-serif-playfair: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-sans-poppins: 'Poppins', 'Inter', sans-serif;
  --font-sans-inter: 'Inter', sans-serif;
  
  /* Layout Configurations */
  --nav-height: 80px;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --border-style: 1px solid rgba(139, 107, 82, 0.15);
  --border-light: 1px solid rgba(26, 26, 26, 0.08);
  --box-shadow-luxury: 0 15px 35px rgba(26, 26, 26, 0.05);
  --box-shadow-hover: 0 25px 50px rgba(139, 107, 82, 0.1);
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
}

/* --- Base & Resets --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--primary-bg);
  color: var(--charcoal);
  font-family: var(--font-sans-inter);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif-cormorant);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

p {
  font-family: var(--font-sans-inter);
  font-weight: 300;
  color: rgba(26, 26, 26, 0.75);
}

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

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

/* --- Scrollbar Customization --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--primary-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--brand-brown);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--charcoal);
}

/* --- Layout Wrappers --- */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-bg-beige {
  background-color: var(--secondary-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-subtitle {
  font-family: var(--font-sans-poppins);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--brand-brown);
  margin-bottom: 12px;
  display: inline-block;
  font-weight: 500;
}

.section-title {
  font-size: 3rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 16px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background-color: var(--brand-brown);
  margin: 16px auto 0;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: rgba(26, 26, 26, 0.65);
}

/* --- Global Components --- */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-sans-poppins);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--charcoal);
  color: var(--primary-bg);
  border: 1px solid var(--charcoal);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background-color: var(--brand-brown);
  border-color: var(--brand-brown);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}

.btn-secondary:hover {
  background-color: var(--charcoal);
  color: var(--primary-bg);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--brand-brown);
  color: white;
  border: 1px solid var(--brand-brown);
}

.btn-accent:hover {
  background-color: var(--charcoal);
  border-color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-text {
  padding: 0;
  background: none;
  border: none;
  color: var(--brand-brown);
  font-family: var(--font-sans-poppins);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-text::after {
  content: '→';
  transition: var(--transition-smooth);
}

.btn-text:hover {
  color: var(--charcoal);
}

.btn-text:hover::after {
  transform: translateX(6px);
}

/* Badge tags */
.badge {
  padding: 4px 10px;
  font-family: var(--font-sans-poppins);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--border-radius-sm);
  display: inline-block;
}

.badge-new {
  background-color: var(--accent-emerald);
  color: white;
}

.badge-bestseller {
  background-color: var(--accent-mustard);
  color: var(--charcoal);
}

/* Wishlist Icon Button */
.wishlist-btn {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: var(--transition-smooth);
  color: var(--charcoal);
}

.wishlist-btn:hover {
  background-color: var(--accent-coral);
  color: white;
  transform: scale(1.1);
}

.wishlist-btn.active {
  background-color: var(--accent-coral);
  color: white;
}

/* --- Sticky Navigation Bar --- */
header {
  height: var(--nav-height);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(248, 245, 240, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: var(--border-light);
  transition: var(--transition-smooth);
}

header.scrolled {
  height: 70px;
  background-color: var(--primary-bg);
  box-shadow: 0 10px 30px rgba(26,26,26,0.04);
}

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

.logo {
  font-family: var(--font-serif-cormorant);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo span {
  font-family: var(--font-sans-poppins);
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--brand-brown);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-sans-poppins);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: rgba(26, 26, 26, 0.75);
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--brand-brown);
  transition: var(--transition-smooth);
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--charcoal);
}

.nav-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-icon {
  font-size: 1.15rem;
  color: var(--charcoal);
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
}

.nav-icon:hover {
  color: var(--brand-brown);
  transform: translateY(-1px);
}

.nav-icon-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: var(--accent-coral);
  color: white;
  font-size: 0.6rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans-poppins);
}

/* Hamburger mobile menu button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  cursor: pointer;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--charcoal);
  transition: var(--transition-smooth);
}

/* --- Hero Banner Section --- */
.hero-slider-container {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.hero-slide {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.9);
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero-slide.active .hero-bg {
  transform: scale(1);
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(248, 245, 240, 0.7) 0%, rgba(248, 245, 240, 0.3) 50%, transparent 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
  padding: 0 40px;
  margin-left: 10%;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
}

.hero-slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-subtitle {
  font-family: var(--font-sans-poppins);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-brown);
  margin-bottom: 20px;
  display: block;
}

.hero-title {
  font-family: var(--font-serif-cormorant);
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--charcoal);
}

.hero-title span {
  font-style: italic;
  color: var(--brand-gold);
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: rgba(26,26,26,0.8);
}

.hero-btns {
  display: flex;
  gap: 16px;
}

/* Slider Controls */
.slider-arrows {
  position: absolute;
  bottom: 50px;
  right: 10%;
  z-index: 10;
  display: flex;
  gap: 16px;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  border: var(--border-style);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: rgba(248, 245, 240, 0.6);
  backdrop-filter: blur(5px);
  transition: var(--transition-smooth);
  color: var(--charcoal);
}

.slider-arrow:hover {
  background-color: var(--charcoal);
  color: var(--primary-bg);
  border-color: var(--charcoal);
}

.slider-dots {
  position: absolute;
  bottom: 50px;
  left: 10%;
  z-index: 10;
  display: flex;
  gap: 12px;
  align-items: center;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(26, 26, 26, 0.2);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dot.active {
  width: 24px;
  border-radius: 4px;
  background-color: var(--brand-brown);
}

/* --- Brand Intro Section --- */
.brand-intro-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.brand-intro-text {
  font-family: var(--font-serif-cormorant);
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 30px;
}

.brand-intro-text span {
  color: var(--brand-brown);
  font-weight: 400;
}

.brand-signature {
  font-family: var(--font-serif-cormorant);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--brand-gold);
}

/* --- Featured Categories Grid --- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.category-card {
  height: 480px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--box-shadow-luxury);
}

.category-img {
  width: 100%;
  height: 100%;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  z-index: 2;
  transition: var(--transition-smooth);
}

.category-card:hover .category-overlay {
  background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.3) 60%, rgba(139, 107, 82, 0.15) 100%);
}

.category-title {
  color: white;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.category-count {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-sans-poppins);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  display: block;
}

.category-btn {
  color: white;
  font-family: var(--font-sans-poppins);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.category-card:hover .category-btn {
  opacity: 1;
  transform: translateY(0);
}

/* --- Products Card Grid --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  background-color: transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.product-media {
  position: relative;
  height: 380px;
  overflow: hidden;
  background-color: var(--secondary-bg);
  margin-bottom: 20px;
  box-shadow: var(--box-shadow-luxury);
}

.product-media img {
  width: 100%;
  height: 100%;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .product-media img {
  transform: scale(1.06);
}

.product-badges {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

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

.product-wishlist {
  position: absolute;
  top: 15px;
  right: -50px;
  z-index: 3;
  transition: var(--transition-smooth);
}

.product-card:hover .product-wishlist {
  right: 15px;
}

.product-info {
  text-align: center;
  padding: 10px 0;
}

.product-cat {
  font-family: var(--font-sans-poppins);
  font-size: 0.75rem;
  color: var(--brand-brown);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  display: block;
}

.product-name {
  font-family: var(--font-serif-cormorant);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.product-name a:hover {
  color: var(--brand-brown);
}

.product-price-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.product-price {
  font-family: var(--font-sans-poppins);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
}

.product-price-inquiry {
  font-family: var(--font-sans-inter);
  font-size: 0.85rem;
  color: rgba(26,26,26,0.5);
  text-decoration: none;
}

/* Quick View Overlay Button Specific Style */
.quick-view-btn {
  background-color: white;
  color: var(--charcoal);
  padding: 10px 20px;
  font-family: var(--font-sans-poppins);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.quick-view-btn:hover {
  background-color: var(--charcoal);
  color: white;
}

.inquiry-btn-sm {
  background-color: var(--brand-brown);
  color: white;
  padding: 10px 20px;
  font-family: var(--font-sans-poppins);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.inquiry-btn-sm:hover {
  background-color: var(--charcoal);
  color: white;
}

/* --- Why Choose Us Section --- */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 20px;
}

.why-card {
  text-align: center;
  padding: 40px;
  background-color: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-luxury);
  border: var(--border-light);
  transition: var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-brown);
  box-shadow: var(--box-shadow-hover);
}

.why-icon {
  font-size: 2.5rem;
  color: var(--brand-brown);
  margin-bottom: 24px;
}

.why-title {
  font-family: var(--font-serif-cormorant);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.why-desc {
  font-size: 0.95rem;
  color: rgba(26,26,26,0.65);
}

/* --- Testimonials Section Slider --- */
.testimonials-slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.testimonial-slide {
  display: none;
  animation: fadeEffect 1s ease-in-out;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-quote {
  font-family: var(--font-serif-cormorant);
  font-size: 1.8rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 30px;
  font-weight: 300;
}

.testimonial-quote::before {
  content: '“';
  font-size: 4rem;
  line-height: 1;
  color: var(--brand-gold);
  display: block;
  margin-bottom: -15px;
}

.testimonial-author {
  font-family: var(--font-sans-poppins);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brand-brown);
  font-weight: 600;
  margin-bottom: 6px;
}

.testimonial-role {
  font-size: 0.8rem;
  color: rgba(26,26,26,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.testimonial-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(26, 26, 26, 0.15);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.testimonial-indicator.active {
  background-color: var(--brand-brown);
  transform: scale(1.2);
}

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

/* --- Instagram Gallery Feed --- */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.insta-item {
  height: 220px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--box-shadow-luxury);
}

.insta-item img {
  width: 100%;
  height: 100%;
  transition: transform 1s ease;
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 2;
  transition: var(--transition-smooth);
  color: white;
  font-size: 1.1rem;
}

.insta-item:hover img {
  transform: scale(1.08);
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.insta-overlay i {
  margin-right: 8px;
}

.insta-icon-container {
  display: flex;
  gap: 20px;
}

/* --- Newsletter Section --- */
.newsletter-wrapper {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-form {
  display: flex;
  margin-top: 40px;
  box-shadow: var(--box-shadow-luxury);
}

.newsletter-form input {
  flex-grow: 1;
  background-color: white;
  padding: 16px 24px;
  border: var(--border-light);
  font-family: var(--font-sans-inter);
  font-size: 0.95rem;
}

.newsletter-form input::placeholder {
  color: rgba(26, 26, 26, 0.4);
}

.newsletter-form button {
  background-color: var(--charcoal);
  color: white;
  padding: 0 35px;
  cursor: pointer;
  font-family: var(--font-sans-poppins);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: var(--transition-smooth);
}

.newsletter-form button:hover {
  background-color: var(--brand-brown);
}

/* --- Standard Footer --- */
footer {
  background-color: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h5 {
  font-size: 1.4rem;
  color: white;
  margin-bottom: 24px;
  position: relative;
}

.footer-col h5::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background-color: var(--brand-gold);
  margin-top: 8px;
}

.footer-about .footer-logo {
  font-family: var(--font-serif-cormorant);
  font-size: 2rem;
  color: white;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  display: inline-block;
  line-height: 1;
}

.footer-about .footer-logo span {
  font-family: var(--font-sans-poppins);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-gold);
  display: block;
  margin-top: 4px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  color: white;
}

.social-link:hover {
  background-color: var(--brand-gold);
  color: var(--charcoal);
  transform: translateY(-3px);
}

.footer-links li {
  margin-bottom: 12px;
}

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

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

.footer-contact li {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
}

.footer-contact i {
  color: var(--brand-gold);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

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

/* --- Premium Modal (Quick View & Lightbox) --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-container {
  background-color: var(--primary-bg);
  max-width: 900px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  transform: translateY(30px);
  transition: transform 0.4s ease;
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--charcoal);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  color: var(--brand-brown);
  transform: rotate(90deg);
}

/* Quick View Inner Grid */
.quickview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.quickview-media {
  background-color: var(--secondary-bg);
  height: 500px;
}

.quickview-media img {
  width: 100%;
  height: 100%;
}

.quickview-details {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  max-height: 500px;
}

.quickview-title {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.quickview-price {
  font-family: var(--font-sans-poppins);
  font-size: 1.3rem;
  color: var(--brand-brown);
  margin-bottom: 20px;
  font-weight: 600;
}

.quickview-desc {
  font-size: 0.95rem;
  color: rgba(26,26,26,0.7);
  margin-bottom: 30px;
}

.quickview-meta {
  border-top: var(--border-light);
  padding-top: 20px;
  margin-bottom: 30px;
  font-size: 0.85rem;
}

.quickview-meta p {
  margin-bottom: 8px;
}

.quickview-meta strong {
  color: var(--charcoal);
}

.quickview-btns {
  display: flex;
  gap: 16px;
}

/* Lightbox Modal Design */
.lightbox-container {
  background: none;
  box-shadow: none;
  max-width: 800px;
  text-align: center;
}

.lightbox-img-wrapper {
  max-height: 70vh;
  position: relative;
  margin-bottom: 20px;
}

.lightbox-img-wrapper img {
  max-height: 70vh;
  margin: 0 auto;
}

.lightbox-caption {
  color: white;
  font-family: var(--font-serif-cormorant);
  font-size: 1.6rem;
}

/* --- Floating WhatsApp Chat Widget --- */
.whatsapp-floating-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-btn {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.wa-btn:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.wa-tooltip {
  background-color: white;
  color: var(--charcoal);
  padding: 10px 18px;
  border-radius: 30px;
  font-family: var(--font-sans-poppins);
  font-size: 0.75rem;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border: var(--border-light);
  transform: translateX(10px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.whatsapp-floating-widget:hover .wa-tooltip {
  transform: translateX(0);
  opacity: 1;
}

/* --- Custom Alert Toast Notification --- */
.toast-container {
  position: fixed;
  bottom: 110px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background-color: var(--charcoal);
  color: white;
  padding: 16px 28px;
  border-left: 4px solid var(--brand-gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  font-family: var(--font-sans-poppins);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* --- Homepage Transparent Header Custom Style --- */
@media (min-width: 769px) {
  /* Only apply transparent header on desktop viewports */
  .home-page header {
    background-color: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
  }
  
  .home-page header.scrolled {
    background-color: rgba(248, 245, 240, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: var(--border-light);
    box-shadow: 0 10px 30px rgba(26, 26, 26, 0.04);
  }
  
  /* Elevate Nav Links for premium feel */
  .home-page header .nav-links a {
    color: var(--charcoal);
    font-weight: 500;
  }
  
  .home-page header.scrolled .nav-links a {
    color: rgba(26, 26, 26, 0.75);
  }
}

