/* 
 * Indo Fits Boutique - Master Stylesheet
 * Brand: Elegance Woven into Every Style
 * Theme: Luxury Fashion Magazine Editorial
 */

@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=Montserrat:wght@200;300;400;500;600;700&display=swap');

/* --- Design Tokens & Variables --- */
:root {
  --bg-primary: #FCF9F5;
  --bg-secondary: #F6F0EA;
  --text-primary: #1A1A1A;
  --text-secondary: #555555;
  --text-muted: #8E8E8E;
  
  --maroon: #5C131E;
  --maroon-dark: #3F0C14;
  --emerald: #0A3D30;
  --emerald-dark: #05231B;
  --gold: #C5A059;
  --gold-light: #E4D0AB;
  --gold-dark: #977436;
  --pink-blush: #E5B2B8;
  --pink-light: #FBF0F1;
  --white: #FFFFFF;
  
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
  
  --shadow-subtle: 0 4px 30px rgba(0, 0, 0, 0.02);
  --shadow-medium: 0 10px 40px rgba(92, 19, 30, 0.06);
  --shadow-luxury: 0 20px 50px rgba(0, 0, 0, 0.1);
  
  --container-width: 1300px;
}

/* --- Base Resets & Global Styles --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--maroon);
}

/* --- Typographical Hierarchy --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 1px;
}

.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
}

.text-gold {
  color: var(--gold);
}

.text-maroon {
  color: var(--maroon);
}

.text-emerald {
  color: var(--emerald);
}

/* --- Layout Components & Utilities --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 8rem 0;
}

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

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.section-header .subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
  display: block;
  font-weight: 500;
}

.section-header h2 {
  font-size: 3rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  position: relative;
  line-height: 1.2;
}

.section-header h2 span {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--maroon);
}

/* Gold Accent Dividers */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto 0 auto;
  width: 250px;
}

.gold-divider::before, .gold-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.gold-divider::before {
  background: linear-gradient(to left, var(--gold), transparent);
}

.gold-divider::after {
  background: linear-gradient(to right, var(--gold), transparent);
}

.gold-divider span {
  color: var(--gold);
  margin: 0 10px;
  font-size: 0.8rem;
  animation: pulse-gold 3s infinite ease-in-out;
}

@keyframes pulse-gold {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* --- Buttons & Action Elements --- */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border-radius: 0;
  text-align: center;
}

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

.btn-primary:hover {
  background-color: transparent;
  color: var(--maroon);
  box-shadow: var(--shadow-medium);
}

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

.btn-secondary:hover {
  background-color: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

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

/* Hover Accent Line Button (Text only) */
.btn-text {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  padding-bottom: 5px;
  position: relative;
}

.btn-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--gold);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: var(--transition-smooth);
}

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

.btn-text:hover::after {
  transform: scaleX(1);
}

.btn-text span {
  margin-left: 8px;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.btn-text:hover span {
  transform: translateX(5px);
}

/* --- Header / Navigation Bar --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(252, 249, 245, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.1);
  transition: var(--transition-smooth);
}

header.scrolled {
  background-color: rgba(252, 249, 245, 0.98);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
  padding: 0.5rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
  transition: var(--transition-smooth);
}

header.scrolled .nav-container {
  height: 70px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--maroon);
}

.logo-tagline {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-dark);
  margin-top: -5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--gold);
  transform: scaleX(0);
  transition: var(--transition-smooth);
  transform-origin: right;
}

.nav-link:hover {
  color: var(--gold-dark);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Collections Dropdown */
.dropdown-wrapper {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background-color: var(--bg-primary);
  border: 1px solid rgba(197, 160, 89, 0.15);
  box-shadow: var(--shadow-luxury);
  padding: 1.5rem 0;
  min-width: 240px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  z-index: 100;
}

.dropdown-wrapper:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item a {
  display: block;
  padding: 0.75rem 2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  font-weight: 500;
}

.dropdown-item a:hover {
  background-color: var(--bg-secondary);
  color: var(--maroon);
  padding-left: 2.5rem;
}

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

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: var(--text-primary);
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide.zoom {
  animation: kenBurns 10s infinite alternate ease-in-out;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 2;
}

.hero-content {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 900px;
  text-align: center;
  color: var(--white);
  z-index: 3;
}

.hero-tag {
  font-size: 0.9rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  display: inline-block;
  font-weight: 500;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero h1 span {
  font-style: italic;
  font-family: var(--font-serif);
}

.hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem auto;
  font-weight: 200;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-indicator span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background: var(--gold);
  position: absolute;
  top: -20px;
  animation: scrollDown 2s infinite cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes scrollDown {
  0% { top: -20px; }
  100% { top: 50px; }
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
}

.about-content h3 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.about-content h3 span {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--maroon);
}

.about-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-weight: 400;
}

.about-text {
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.8;
  font-size: 0.95rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pillar-icon {
  color: var(--gold);
  font-size: 1.5rem;
  margin-top: 3px;
}

.pillar h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.pillar p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-image-wrapper {
  position: relative;
  padding: 2rem 0;
}

.about-img-frame {
  border: 1px solid var(--gold);
  padding: 1rem;
  position: relative;
}

.about-img-frame::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  width: 60px;
  height: 60px;
  border-top: 1px solid var(--gold-dark);
  border-right: 1px solid var(--gold-dark);
  pointer-events: none;
}

.about-img-frame::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 60px;
  height: 60px;
  border-bottom: 1px solid var(--gold-dark);
  border-left: 1px solid var(--gold-dark);
  pointer-events: none;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-luxury);
}

.about-experience-badge {
  position: absolute;
  bottom: -10px;
  left: -20px;
  background-color: var(--maroon);
  color: var(--white);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-medium);
  z-index: 5;
}

.about-experience-badge .years {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  line-height: 1;
  display: block;
  color: var(--gold-light);
}

.about-experience-badge .text {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  display: block;
  margin-top: 5px;
}

/* --- Signature Collections --- */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.collection-card {
  position: relative;
  overflow: hidden;
  background-color: var(--text-primary);
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

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

.collection-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-card:hover .collection-card-img {
  transform: scale(1.08);
  opacity: 0.7;
}

.collection-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem 2rem;
  z-index: 2;
  transition: var(--transition-smooth);
}

.collection-card-overlay::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  border: 1px solid rgba(197, 160, 89, 0);
  transition: var(--transition-smooth);
  pointer-events: none;
  z-index: 1;
}

.collection-card:hover .collection-card-overlay::before {
  border-color: rgba(197, 160, 89, 0.35);
}

.collection-card h3 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.collection-card:hover h3 {
  transform: translateY(0);
}

.collection-card-list {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  opacity: 0;
  transform: translateY(15px);
  transition: var(--transition-smooth);
  transition-delay: 0.05s;
}

.collection-card:hover .collection-card-list {
  opacity: 1;
  transform: translateY(0);
}

.collection-card-list span {
  display: inline-block;
  position: relative;
}

.collection-card-list span:not(:last-child)::after {
  content: "✦";
  position: absolute;
  right: -10px;
  color: var(--gold);
  font-size: 0.5rem;
}

.collection-btn {
  opacity: 0;
  transform: translateY(15px);
  transition: var(--transition-smooth);
  transition-delay: 0.1s;
}

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

/* --- Featured Gallery --- */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.filter-btn {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  padding: 0.5rem 0.25rem;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  color: var(--maroon);
}

.filter-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--maroon);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.filter-btn.active::after {
  transform: scaleX(1);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  transition: var(--transition-smooth);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-secondary);
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(197, 160, 89, 0.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(92, 19, 30, 0.85); /* Luxury Maroon Tint */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 2;
}

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

.gallery-item-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.gallery-item-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.gallery-item-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 200px;
  margin-bottom: 1.5rem;
}

.gallery-item-btn {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 3px;
}

/* --- Fashion by Occasion --- */
.occasion-showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.occasion-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.occasion-tab {
  padding: 1.5rem 2rem;
  border-left: 2px solid rgba(197, 160, 89, 0.15);
  cursor: pointer;
  text-align: left;
  transition: var(--transition-smooth);
}

.occasion-tab.active {
  border-left-color: var(--maroon);
  background-color: var(--white);
  box-shadow: var(--shadow-subtle);
}

.occasion-tab h3 {
  font-size: 1.8rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.occasion-tab.active h3 {
  color: var(--maroon);
}

.occasion-tab p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.occasion-content-wrapper {
  position: relative;
  min-height: 480px;
  background-color: var(--white);
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(197, 160, 89, 0.1);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.occasion-content {
  display: none;
  animation: fadeIn 0.6s ease-in-out forwards;
}

.occasion-content.active {
  display: block;
}

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

.occasion-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 1rem;
  display: inline-block;
}

.occasion-content h4 {
  font-size: 2.5rem;
  color: var(--maroon);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.occasion-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.styling-ideas {
  margin-bottom: 2.5rem;
  background-color: var(--bg-secondary);
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
}

.styling-ideas h5 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.styling-ideas p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Fabric & Craftsmanship --- */
.fabric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.fabric-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.fabric-content h3 span {
  font-style: italic;
  font-family: var(--font-serif);
}

.fabric-lead {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.fabrics-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.fabric-badge {
  padding: 0.6rem 1.2rem;
  background-color: var(--white);
  border: 1px solid rgba(197, 160, 89, 0.2);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: var(--transition-fast);
  cursor: default;
}

.fabric-badge:hover {
  border-color: var(--maroon);
  color: var(--maroon);
  background-color: var(--pink-light);
}

.crafts-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.craft-item {
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  padding-top: 1rem;
}

.craft-item h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--maroon);
  margin-bottom: 0.5rem;
}

.craft-item p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.fabric-image-wrapper {
  position: relative;
}

.fabric-img-frame {
  border: 1px solid var(--gold);
  padding: 1rem;
  background-color: var(--white);
}

.fabric-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-luxury);
}

.artisan-quote {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: rgba(26, 38, 32, 0.95); /* Deep emerald green */
  color: var(--white);
  padding: 2rem;
  max-width: 320px;
  box-shadow: var(--shadow-luxury);
  border-left: 3px solid var(--gold);
  z-index: 5;
}

.artisan-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.artisan-quote span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light);
  display: block;
}

/* --- Style Inspiration Lookbook --- */
.lookbook-slider-container {
  position: relative;
  overflow: hidden;
}

.lookbook-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  gap: 2rem;
  padding: 1rem 0;
}

.lookbook-slide {
  flex: 0 0 calc(50% - 1rem); /* Show 2 slides */
  min-width: calc(50% - 1rem);
  background-color: var(--white);
  border: 1px solid rgba(197, 160, 89, 0.1);
  box-shadow: var(--shadow-subtle);
  display: flex;
  transition: var(--transition-smooth);
}

.lookbook-slide:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-luxury);
}

.lookbook-slide-img {
  width: 45%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.lookbook-slide-content {
  width: 55%;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lookbook-date {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.lookbook-slide-content h3 {
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.lookbook-slide-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.lookbook-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3.5rem;
}

.lookbook-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

.lookbook-btn:hover {
  background-color: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-subtle);
}

.lookbook-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  border-color: rgba(197, 160, 89, 0.3);
}

.lookbook-btn.disabled:hover {
  background: none;
  color: var(--text-primary);
  box-shadow: none;
}

/* --- Why Choose Indo Fits --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.why-card {
  background-color: var(--white);
  padding: 3.5rem 2.5rem;
  border: 1px solid rgba(197, 160, 89, 0.1);
  text-align: center;
  transition: var(--transition-smooth);
}

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

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  color: var(--maroon);
  font-size: 1.5rem;
  margin: 0 auto 2rem auto;
  transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
  background-color: var(--maroon);
  color: var(--gold-light);
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Customer Testimonials --- */
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.testimonial-card {
  text-align: center;
  display: none;
  animation: fadeIn 0.6s ease-in-out forwards;
}

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

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-quote::before, .testimonial-quote::after {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: rgba(197, 160, 89, 0.2);
  position: absolute;
  line-height: 1;
}

.testimonial-quote::before {
  content: "“";
  top: -1.5rem;
  left: -2rem;
}

.testimonial-quote::after {
  content: "”";
  bottom: -3rem;
  right: -2rem;
}

.testimonial-author {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--maroon);
}

.testimonial-author-title {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 0.25rem;
  display: block;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 3rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(197, 160, 89, 0.3);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background-color: var(--maroon);
  transform: scale(1.2);
}

/* --- Visit Our Boutique & Inquiry --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.inquiry-wrapper {
  background-color: var(--white);
  padding: 4rem;
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(197, 160, 89, 0.1);
  position: relative;
}

.inquiry-wrapper::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(197, 160, 89, 0.15);
  pointer-events: none;
}

.inquiry-wrapper h3 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.inquiry-wrapper p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 3rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-input {
  width: 100%;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 0.9rem;
  color: var(--text-primary);
  background-color: transparent;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-bottom-color: var(--maroon);
}

.form-label {
  position: absolute;
  top: 0.75rem;
  left: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -1.2rem;
  font-size: 0.7rem;
  color: var(--gold-dark);
  letter-spacing: 1px;
}

select.form-input {
  cursor: pointer;
}

.form-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.form-buttons .btn {
  flex: 1;
}

/* Success Modal & Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 6, 9, 0.6); /* Tinted Maroon Overlay */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.success-card {
  background-color: var(--white);
  padding: 4rem;
  max-width: 550px;
  width: 90%;
  text-align: center;
  border: 1px solid var(--gold);
  box-shadow: var(--shadow-luxury);
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

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

.success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--pink-light);
  color: var(--maroon);
  font-size: 2rem;
  margin: 0 auto 2rem auto;
}

.success-card h3 {
  font-size: 2.2rem;
  color: var(--maroon);
  margin-bottom: 1rem;
}

.success-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Boutique Info section */
.boutique-info h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.boutique-tagline {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--maroon);
  margin-bottom: 2.5rem;
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.info-icon {
  color: var(--gold);
  font-size: 1.4rem;
  margin-top: 3px;
}

.info-item h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.info-item p {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
}

/* Active Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.35rem 0.75rem;
  border-radius: 12px;
  font-weight: 600;
  margin-top: 0.5rem;
}

.status-badge.open {
  background-color: rgba(10, 61, 48, 0.1);
  color: var(--emerald);
}

.status-badge.closed {
  background-color: rgba(92, 19, 30, 0.1);
  color: var(--maroon);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status-badge.open .status-dot {
  background-color: var(--emerald);
}

.status-badge.closed .status-dot {
  background-color: var(--maroon);
}

.map-wrapper {
  border: 1px solid rgba(197, 160, 89, 0.15);
  box-shadow: var(--shadow-luxury);
  padding: 0.75rem;
  background-color: var(--white);
}

.map-wrapper iframe {
  width: 100%;
  height: 300px;
  border: none;
  filter: grayscale(10%) contrast(105%);
}

/* --- Instagram Gallery --- */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.insta-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: var(--text-primary);
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  color: var(--white);
  opacity: 0;
  transition: var(--transition-smooth);
}

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

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

.insta-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}

.insta-stat span {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
}

/* --- Footer --- */
footer {
  background-color: #111111;
  color: rgba(255, 255, 255, 0.7);
  padding: 6rem 0 3rem 0;
  border-top: 1px solid rgba(197, 160, 89, 0.15);
}

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

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 320px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.social-link:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-column h3 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 2rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-fast);
}

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

.footer-contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-contact-icon {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

/* --- Outfit Details Slider Overlay --- */
.details-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2500;
  display: flex;
  justify-content: flex-end; /* Slides in from right */
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.details-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.details-drawer {
  width: 50%;
  max-width: 650px;
  min-width: 320px;
  height: 100%;
  background-color: var(--bg-primary);
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.2);
  padding: 4rem 3.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: var(--transition-smooth);
  position: relative;
}

.details-overlay.active .details-drawer {
  transform: translateX(0);
}

.details-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(197, 160, 89, 0.3);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.details-close:hover {
  background-color: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}

.details-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(197, 160, 89, 0.1);
  margin-bottom: 3rem;
}

.details-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 0.75rem;
  display: block;
}

.details-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--maroon);
  margin-bottom: 1.5rem;
}

.details-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.details-specs {
  border-top: 1px solid rgba(197, 160, 89, 0.15);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  padding: 1.5rem 0;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.spec-item {
  font-size: 0.8rem;
  line-height: 1.6;
}

.spec-item span {
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  font-size: 0.7rem;
}

.details-cta {
  display: flex;
  gap: 1.5rem;
}

.details-cta .btn {
  flex: 1;
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Subpages Specific Styles --- */
.subpage-hero {
  height: 60vh;
  position: relative;
  overflow: hidden;
  background-color: var(--text-primary);
}

.subpage-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}

.subpage-hero-content {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
  color: var(--white);
  z-index: 3;
}

.subpage-hero-content h1 {
  font-size: 4rem;
  line-height: 1.2;
}

.subpage-hero-content h1 span {
  font-style: italic;
  font-family: var(--font-serif);
}

/* --- Responsive Adjustments (Mobile-first layout overrides) --- */
@media (max-width: 1024px) {
  :root {
    --container-width: 95%;
  }

  .nav-menu {
    gap: 1.5rem;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .about-grid {
    gap: 3rem;
  }

  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .occasion-showcase {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .fabric-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .fabric-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .lookbook-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

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

  .section-header h2 {
    font-size: 2.2rem;
  }

  .nav-menu {
    position: fixed;
    top: 85px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 85px);
    background-color: var(--bg-primary);
    flex-direction: column;
    padding: 4rem 2rem;
    gap: 2rem;
    transition: var(--transition-smooth);
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    box-shadow: var(--shadow-luxury);
  }

  header.scrolled .nav-menu {
    top: 70px;
    height: calc(100vh - 70px);
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
    margin: 0 auto;
  }

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

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .collections-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-filters {
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .inquiry-wrapper {
    padding: 2.5rem 1.5rem;
  }

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

  .form-group.full-width {
    grid-column: span 1;
  }

  .form-buttons {
    flex-direction: column;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 1rem;
  }

  .details-drawer {
    width: 100%;
    padding: 3rem 1.5rem;
  }
  
  .details-cta {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
}
