/* ==========================================================================
   Saubhagya - Custom Stylesheet
   ========================================================================== */

/* --- CSS Variables --- */
:root {
  /* Colors */
  --color-primary: #7B2A26; /* Logo Maroon */
  --color-primary-light: #9B3934;
  --color-primary-dark: #5A1E1B;
  --color-accent: #D4AF37; /* Gold accent for premium feel */
  --color-background: #FDFDFD; /* Off-white background */
  --color-surface: #FFFFFF; /* Pure white for cards */
  --color-text-main: #333333;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-border: #E5E5E5;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  /* Spacing */
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;

  /* Other */
  --border-radius: 8px;
  --transition-speed: 0.3s;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  --box-shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
}

p {
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

a:hover {
  color: var(--color-primary-light);
}

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

ul {
  list-style: none;
}

/* --- Layout Containers --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-primary);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-primary);
}

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

.btn-outline:hover {
  background-color: var(--color-primary);
  color: #fff;
}

/* --- Hero Slider --- */
.hero-slider-container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  aspect-ratio: 1920 / 800;
  overflow: hidden;
  background-color: #f8f8f8;
}

.hero-slider {
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  text-align: center;
  color: #fff;
  z-index: 0;
}

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

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  position: relative;
  z-index: 0;
}

.slide-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 20px;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: var(--spacing-sm);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  animation: slideDown 0.8s ease forwards;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
  font-family: var(--font-body);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  animation: slideUp 0.8s ease forwards;
}

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

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 15px 20px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}
.slider-btn:hover { background: rgba(255,255,255,0.7); color: var(--color-primary); }
.prev-btn { left: 0; }
.next-btn { right: 0; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 10;
}
.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: rgba(255,255,255,0.5);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.dot.active, .dot:hover {
  background-color: #fff;
}

/* --- Header & Navigation --- */
.header {
  background-color: var(--color-surface);
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 90px; /* Adjusted logo size */
  transition: transform var(--transition-speed) ease;
}

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

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

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  color: var(--color-text-main);
  position: relative;
  transition: color var(--transition-speed) ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-primary);
  transition: width var(--transition-speed) ease;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--color-primary);
  cursor: pointer;
}

/* Header Icons */
.header-icons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.header-icon {
  color: var(--color-text-main);
  cursor: pointer;
  transition: color var(--transition-speed) ease;
  display: flex;
  align-items: center;
}

.header-icon:hover {
  color: var(--color-primary);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--color-primary-light); /* Fallback */
  background-image: linear-gradient(rgba(123, 42, 38, 0.7), rgba(123, 42, 38, 0.7)), url('../images/hero-bg.jpg'); /* Placeholder image */
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-content {
  max-width: 800px;
  padding: var(--spacing-lg);
}

.hero-title {
  color: #fff;
  font-size: 4rem;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
  font-weight: 300;
  color: #f0f0f0;
}

/* --- Features/Categories --- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.category-card {
  background-color: var(--color-surface);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

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

.category-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background-color: #eee; /* Placeholder bg */
}

.category-content {
  padding: var(--spacing-lg);
  text-align: center;
}

.category-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

/* --- Footer --- */
.footer {
  background-color: var(--color-primary-dark);
  color: #fff;
  padding: var(--spacing-xl) 0 var(--spacing-lg);
}

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

.footer-title {
  color: var(--color-accent);
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
}

.footer-link {
  color: #ccc;
  display: block;
  margin-bottom: var(--spacing-sm);
}

.footer-link:hover {
  color: #fff;
  padding-left: 5px;
}

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

/* --- Internal Pages (About, Contact, Policies) --- */
.page-header {
  background-color: var(--color-primary);
  color: #fff;
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.page-header h1 {
  color: #fff;
  margin-bottom: 0;
}

.content-box {
  background-color: var(--color-surface);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: var(--spacing-xl);
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(123, 42, 38, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  .header-container {
    padding: var(--spacing-md);
  }
  
  .nav-menu {
    display: none; /* Hide for mobile by default, can be toggled via JS */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-surface);
    flex-direction: column;
    padding: var(--spacing-md) 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-link {
    padding: var(--spacing-sm) var(--spacing-lg);
    display: block;
  }

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

  .header-icons {
    gap: 1rem;
    order: 2;
    margin-left: auto;
    margin-right: 1rem;
  }

  .header-container {
    flex-wrap: wrap;
  }

  .hero-slider-container {
    aspect-ratio: 425 / 425;
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .content-box {
    padding: var(--spacing-lg);
  }
}
/* --- Top Bar --- */
.top-bar {
  background-color: var(--color-primary);
  color: #fff;
  font-size: 0.8rem;
  text-align: center;
  padding: 8px 0;
  letter-spacing: 1px;
  font-family: var(--font-body);
  display: none;
}
/* --- Homepage New Layout CSS --- */

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.product-card {
    display: block;
    position: relative;
    text-align: left;
    text-decoration: none;
    color: var(--color-text);
    transition: transform 0.3s ease;
}
.product-card:hover {
    transform: translateY(-5px);
}
.clean-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
}
.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #000;
    color: #fff;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: bold;
    z-index: 2;
}
.badge-hot {
    background-color: #d9534f;
}
.product-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}
.product-info {
    padding: 15px 0;
}
.product-info h3 { font-size: 1rem; font-weight: 600; color: var(--color-text); margin-bottom: 5px; font-family: var(--font-heading); transition: color 0.3s; }`n.product-card:hover .product-info h3 { color: var(--color-primary); }
.price { font-size: 0.95rem; font-weight: 600; font-family: var(--font-body); color: var(--color-primary); }
.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.85rem;
    font-weight: normal;
    margin-right: 5px;
}

/* Promo Banner Strip */
.promo-banner-strip {
    background-color: #fce883; /* Yellow */
    padding: 10px 0;
    margin: 40px 0;
    overflow: hidden;
    white-space: nowrap;
}
.promo-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.promo-text {
    font-size: 0.9rem;
    font-weight: bold;
    color: #333;
}

/* Collections */
.collection-scroll {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    overflow-x: auto;
    padding-bottom: 15px;
}
.collection-item {
    text-align: center;
    text-decoration: none;
    color: var(--color-text);
}
.collection-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #f0f0f0;
    margin: 0 auto 10px;
    transition: transform 0.3s ease;
}
.collection-item:hover .collection-circle {
    transform: scale(1.05);
}

/* Custom Banner Box (A Saree For Every Woman) */
.custom-banner-box {
    display: flex;
    align-items: stretch;
    background-color: #f9ebe0;
    border-radius: 40px;
    overflow: hidden;
    margin: 40px auto;
}
.cbb-left {
    flex: 1;
}
.cbb-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.cbb-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    text-align: center;
    color: var(--color-primary);
}
.cbb-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
}
.cbb-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Reviews */
.review-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.review-card {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.stars {
    color: #f39c12;
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.review-text {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}
.review-author {
    font-weight: bold;
    font-size: 0.9rem;
}

/* Features Banner */
.features-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    margin-bottom: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}
.feature-item svg {
    color: var(--color-primary);
}
.feature-item h4 {
    font-size: 0.9rem;
    margin-bottom: 3px;
}
.feature-item p {
    font-size: 0.8rem;
    color: #666;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .review-grid { grid-template-columns: repeat(2, 1fr); }
    .features-banner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .custom-banner-box { flex-direction: column; border-radius: 20px; }
    .cbb-left { height: 300px; }
    .cbb-title { font-size: 2rem; }
    .collection-scroll { justify-content: flex-start; }
    .promo-inner { flex-direction: column; gap: 10px; }
}
@media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; } /* 2 cols on mobile for products is common */
    .review-grid { grid-template-columns: 1fr; }
    .features-banner { grid-template-columns: 1fr; }
    .collection-circle { width: 80px; height: 80px; }
}

/* --- Helper Classes --- */
.text-center {
  text-align: center !important;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-top: -15px;
  margin-bottom: 40px;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
}
/* Legacy Section */
.legacy-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    margin-bottom: 60px;
    gap: 60px;
}
.legacy-left {
    flex: 1;
    padding-right: 40px;
    text-align: left;
}
.legacy-subtitle {
    display: block;
    font-size: 0.85rem;
    color: #666;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 600;
}
.legacy-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: #111;
    margin-bottom: 35px;
    font-weight: normal;
}
.legacy-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}
.legacy-right {
    flex: 1;
}
.legacy-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .legacy-section {
        flex-direction: column;
        gap: 30px;
    }
    .legacy-left {
        padding-right: 0;
        text-align: center;
    }
    .legacy-title {
        font-size: 2.5rem;
    }
    .legacy-img {
        height: 400px;
    }
}
/* Review Slider CSS */
.review-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin: 40px auto 20px;
}
.review-slider-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 5px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.review-slider-track::-webkit-scrollbar {
    display: none;
}
.review-card {
    min-width: calc(33.333% - 20px);
    scroll-snap-align: center;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    text-align: left;
    transition: transform 0.3s;
}
.review-card:hover {
    transform: translateY(-5px);
}
.quote-icon {
    font-size: 4rem;
    color: #f1f1f1;
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: serif;
    line-height: 1;
    z-index: 0;
}
.review-card > * {
    position: relative;
    z-index: 1;
}
.review-author-box {
    display: flex;
    align-items: center;
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 15px;
}
.author-info strong {
    display: block;
    color: #333;
}
.author-info span {
    font-size: 0.8rem;
    color: #777;
}
.review-btn {
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-size: 1.2rem;
    color: var(--color-primary);
    cursor: pointer;
    position: absolute;
    z-index: 10;
}
.prev-review { left: -20px; }
.next-review { right: -20px; }
.review-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.rdot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: 0.3s;
}
.rdot.active {
    background-color: var(--color-primary);
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .review-card { min-width: calc(50% - 15px); }
}
@media (max-width: 768px) {
    .review-card { min-width: 100%; }
    .prev-review { left: 0; }
    .next-review { right: 0; }
}
/* Legacy Section Attractive Upgrades */
.legacy-right {
    flex: 1;
    position: relative;
    padding: 40px;
    background-color: #f5f2ed;
    /* Create a subtle dot pattern for the textured frame */
    background-image: radial-gradient(#d5cdc4 1px, transparent 1px);
    background-size: 8px 8px;
    border-radius: 12px;
}
.legacy-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border: 15px solid #fff;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
}
.legacy-subtitle {
    color: var(--color-primary); /* Make subtitle pop more */
    letter-spacing: 2px;
}
.legacy-title {
    font-size: 3.8rem;
    line-height: 1.1;
}
.legacy-left p {
    font-size: 1.15rem;
    color: #555;
}
/* Mosaic Grid Section */
.mosaic-section {
    margin-top: 60px;
    margin-bottom: 60px;
}
.mosaic-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 15px;
}
.mosaic-item {
    position: relative;
    overflow: hidden;
    background-color: #e5e5e5;
}
.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.mosaic-item:hover img {
    transform: scale(1.05);
}
.mosaic-item-1 { grid-column: 1; grid-row: 1; }
.mosaic-item-2 { grid-column: 1; grid-row: 2; }
.mosaic-item-main { grid-column: 2; grid-row: 1 / span 2; }
.mosaic-item-3 { grid-column: 3; grid-row: 1; }
.mosaic-item-4 { grid-column: 3; grid-row: 2; }

.mosaic-content {
    position: absolute;
    z-index: 2;
    padding: 30px;
}
.mosaic-content h3 {
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: 5px;
    color: #111;
}
.mosaic-content p {
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #333;
}
.mosaic-content p.subtitle {
    margin-bottom: 0px;
    font-size: 0.9rem;
}
.btn-mosaic {
    display: inline-block;
    padding: 10px 25px;
    background-color: #559b9e; /* Teal color from screenshot */
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: bold;
    transition: 0.3s;
}
.btn-mosaic:hover {
    background-color: #3a7578;
}

/* Positioning content */
.mosaic-content.align-center {
    top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center;
}
.mosaic-content.align-left {
    top: 50%; left: 10%; transform: translateY(-50%);
}
.mosaic-content.align-right {
    bottom: 20px; right: 20px;
}
.mosaic-item-1 .mosaic-content {
    bottom: 20px; left: 50%; transform: translateX(-50%);
}

@media (max-width: 992px) {
    .mosaic-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .mosaic-item-main { grid-column: 1 / span 2; grid-row: 1; height: 400px; }
    .mosaic-item-1 { grid-column: 1; grid-row: 2; height: 250px; }
    .mosaic-item-2 { grid-column: 2; grid-row: 2; height: 250px; }
    .mosaic-item-3 { grid-column: 1; grid-row: 3; height: 250px; }
    .mosaic-item-4 { grid-column: 2; grid-row: 3; height: 250px; }
}
@media (max-width: 768px) {
    .mosaic-grid {
        grid-template-columns: 1fr;
    }
    .mosaic-item-main { grid-column: 1; grid-row: 1; }
    .mosaic-item-1 { grid-column: 1; grid-row: 2; }
    .mosaic-item-2 { grid-column: 1; grid-row: 3; }
    .mosaic-item-3 { grid-column: 1; grid-row: 4; }
    .mosaic-item-4 { grid-column: 1; grid-row: 5; }
}

/* Mosaic Grid Readability Fix */
.mosaic-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    min-width: 150px;
}
/* Remove background for items that only have the SHOP button */
.mosaic-item-1 .mosaic-content, 
.mosaic-item-4 .mosaic-content {
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    box-shadow: none;
    min-width: auto;
}
.mosaic-content h3 {
    color: #000; /* Ensure text is pure black for max contrast */
}
/* Button Color Fix */
.btn-mosaic {
    background-color: var(--color-primary) !important;
}
.btn-mosaic:hover {
    background-color: #5a1e1b !important; /* Slightly darker shade of primary maroon */
}
/* Restore frosted box for items 1 and 4 since they now have text */
.mosaic-item-1 .mosaic-content, 
.mosaic-item-4 .mosaic-content {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(5px) !important;
    padding: 20px 25px !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
    min-width: 150px !important;
}

/* --- REVAMPED MOSAIC GRID DESIGN --- */
.mosaic-item {
    border-radius: 12px;
}
.mosaic-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
    pointer-events: none;
    z-index: 1;
    transition: background 0.4s ease;
}
.mosaic-item:hover::after {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
}
.mosaic-item img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mosaic-item:hover img {
    transform: scale(1.08);
}
/* Overriding the old ugly boxes completely */
.mosaic-content, 
.mosaic-item-1 .mosaic-content, 
.mosaic-item-4 .mosaic-content {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    padding: 30px !important;
    width: 100% !important;
    height: 100%;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
    transform: none !important;
    text-align: left !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}
.mosaic-content h3 {
    color: #ffffff !important;
    font-size: 2.2rem !important;
    font-family: var(--font-heading);
    margin-bottom: 5px !important;
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}
.mosaic-content p {
    color: #f1f1f1 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase;
    letter-spacing: 2px !important;
    margin-bottom: 5px !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
/* Sleek hover button */
.btn-mosaic {
    background-color: transparent !important;
    color: #fff !important;
    border: 2px solid #fff !important;
    padding: 8px 30px !important;
    border-radius: 30px !important;
    margin-top: 15px !important;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease !important;
}
.mosaic-item:hover .btn-mosaic {
    opacity: 1;
    transform: translateY(0);
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}
/* Fix collection circles */
.collection-circle {
    overflow: hidden !important;
}
/* --- Premium Features Banner --- */
.features-banner {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    margin: 60px auto -60px; /* Overlap footer */
    position: relative;
    z-index: 10;
    border: 1px solid #f0f0f0;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 0 15px;
    position: relative;
}
/* Divider lines between items */
.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: #f0f0f0;
}
.feature-item svg {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
    background-color: #fcf6f5; /* Very light maroon tint */
    padding: 16px;
    border-radius: 50%;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}
.feature-item:hover svg {
    transform: scale(1.1) translateY(-5px);
    background-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(123, 42, 38, 0.2);
}
.feature-item h4 {
    font-size: 1rem;
    color: #111;
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: 1px;
}
.feature-item p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .features-banner {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 20px;
        padding: 30px 20px;
    }
    .feature-item:not(:last-child)::after {
        display: none;
    }
}
/* --- Tighten Layout Spacing --- */
.section {
    padding: 30px 0 !important;
}
.mosaic-section {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}
.legacy-section {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}
.review-slider-wrapper {
    margin: 20px auto 10px !important;
}
.features-banner {
    margin: 30px auto -40px !important; /* Adjusted slightly so it doesn't overlap too much if margin is reduced */
}
/* --- FIX: Revert Features Banner to Clean Horizontal Layout --- */
.features-banner {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    background-color: transparent !important;
    padding: 40px 0 20px 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 20px auto 0 auto !important;
    border: none !important;
    border-top: 1px solid #eee !important;
}
.feature-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    text-align: left !important;
    padding: 0 !important;
}
.feature-item::after {
    display: none !important; /* Hide separator lines */
}
.feature-item svg {
    width: 36px !important;
    height: 36px !important;
    color: var(--color-primary) !important;
    background-color: transparent !important;
    padding: 0 !important;
    margin-right: 15px !important;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.feature-item:hover svg {
    transform: scale(1.1) !important;
    background-color: transparent !important;
    color: var(--color-primary) !important;
    box-shadow: none !important;
}
.feature-item h4 {
    margin-bottom: 4px !important;
    font-size: 0.95rem !important;
}
.feature-item p {
    margin-bottom: 0 !important;
    font-size: 0.8rem !important;
}
@media (max-width: 768px) {
    .features-banner {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px !important;
    }
}

/* --- Premium Footer Redesign --- */
.footer {
    background-color: var(--color-primary);
    color: #fff;
    padding-top: 70px;
    padding-bottom: 20px;
}
.footer-logo-wrapper {
    background: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.footer-title {
    color: #e5cc98; /* Soft elegant gold */
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #e5cc98;
}
.footer-link {
    display: block;
    color: #e0e0e0;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}
.footer-link:hover {
    color: #fff;
    padding-left: 5px;
}
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}
.social-links a {
    color: #fff;
    opacity: 0.7;
    transition: 0.3s;
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.social-links a:hover {
    opacity: 1;
    background: #e5cc98;
    color: var(--color-primary);
    transform: translateY(-3px);
}
.newsletter-form {
    display: flex;
    margin-top: 15px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}
.newsletter-form input {
    padding: 12px 15px;
    border: none;
    outline: none;
    width: 100%;
    color: #333;
    font-size: 0.9rem;
}
.newsletter-form button {
    padding: 12px 20px;
    background: #e5cc98;
    color: var(--color-primary);
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
}
.newsletter-form button:hover {
    background: #d4b87e;
}
.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
    color: #bbb;
}

/* --- ABOUT PAGE REDESIGN --- */

/* Hero Banner */
.about-hero {
    position: relative;
    background-image: url('../images/14.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(90, 30, 27, 0.8), rgba(0, 0, 0, 0.6));
}
.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}
.about-hero-content h1 {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.about-hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Heritage Section */
.about-heritage {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 80px;
    margin-bottom: 80px;
}
.heritage-text {
    flex: 1;
}
.heritage-text h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 25px;
    font-family: var(--font-heading);
}
.heritage-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}
.dropcap {
    float: left;
    font-size: 4.5rem;
    line-height: 0.8;
    padding-right: 15px;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 700;
}
.heritage-img {
    flex: 1;
    position: relative;
}
.heritage-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transform: rotate(2deg);
    transition: transform 0.4s ease;
}
.heritage-img:hover img {
    transform: rotate(0deg);
}

/* Core Values Section */
.values-section {
    background-color: var(--color-primary);
    padding: 80px 0;
    color: #fff;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}
.value-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}
.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}
.value-card svg {
    width: 50px;
    height: 50px;
    color: #e5cc98;
    margin-bottom: 20px;
}
.value-card h4 {
    font-size: 1.4rem;
    color: #e5cc98;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}
.value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e0e0e0;
}

/* Gallery Section */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
    margin-bottom: 80px;
}
.masonry-item {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.4s ease, filter 0.4s ease;
    cursor: pointer;
}
.masonry-item:nth-child(2), .masonry-item:nth-child(4) {
    height: 400px; /* offset heights for masonry look */
    margin-top: -50px;
}
.masonry-item:hover {
    transform: scale(1.05);
    z-index: 2;
    position: relative;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

@media (max-width: 992px) {
    .about-heritage {
        flex-direction: column;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    .masonry-item:nth-child(2), .masonry-item:nth-child(4) {
        height: 300px;
        margin-top: 0;
    }
}
/* --- Added Premium Enhancements --- */

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Founder Quote Section */
.founder-quote-section {
    background-color: #fcf6f5; /* Very soft maroon tint */
    padding: 60px 0;
    margin: 40px 0;
    border-top: 1px solid #efe5e3;
    border-bottom: 1px solid #efe5e3;
    position: relative;
}
.founder-quote-section::before {
    content: "�";
    font-size: 8rem;
    color: rgba(123, 42, 38, 0.05);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    line-height: 1;
}
.quote-text {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}
.quote-author {
    font-size: 1.1rem;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}
/* --- ULTRA LUXURY REDESIGN --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

.ultra-lux-body {
    background-color: #fcf9f5; /* Very soft warm beige */
}

/* Luxury Hero */
.lux-hero {
    position: relative;
    padding: 100px 0;
    text-align: center;
    background: #fcf9f5;
}
.lux-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 600;
}
.lux-hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    text-transform: uppercase;
    letter-spacing: 4px;
}
.lux-hero-image {
    width: 90%;
    max-width: 1200px;
    height: 60vh;
    object-fit: cover;
    margin: 40px auto 0;
    display: block;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* Luxury Overlap Section */
.lux-overlap {
    position: relative;
    margin-top: -100px;
    padding: 0 20px;
    z-index: 2;
    display: flex;
    justify-content: center;
}
.lux-overlap-box {
    background: #fff;
    padding: 80px 100px;
    max-width: 1000px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}
.lux-overlap-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 30px;
    font-style: italic;
}
.lux-overlap-box p {
    font-size: 1.1rem;
    line-height: 2;
    color: #555;
    margin-bottom: 20px;
}

/* Luxury Value Grid */
.lux-values {
    padding: 100px 0;
    background: #5a1e1b;
    color: #fff;
    margin-top: 80px;
}
.lux-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    text-align: center;
}
.lux-value-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #e5cc98; /* Gold */
    margin-bottom: 20px;
}
.lux-value-item p {
    color: #ddd;
    line-height: 1.8;
}
.lux-value-item .gold-line {
    width: 50px;
    height: 2px;
    background: #e5cc98;
    margin: 20px auto;
}
/* --- ROYAL TRADITIONAL DESIGN --- */
.royal-body {
    background-color: #3b0f0d !important;
    color: #fdfbf7;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235a1e1b' fill-opacity='0.6'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
}

.royal-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.royal-hero {
    border: 8px solid #d4af37;
    padding: 80px 20px;
    background: url('../images/15.jpg') center/cover no-repeat;
    text-align: center;
    position: relative;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.9), 0 20px 40px rgba(0,0,0,0.8);
    margin-bottom: 60px;
}
.royal-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(59, 15, 13, 0.85); /* Deep maroon overlay */
}
.royal-hero-content {
    position: relative;
    z-index: 2;
}
.royal-hero::before {
    content: '';
    position: absolute;
    top: 15px; left: 15px; right: 15px; bottom: 15px;
    border: 2px dashed #d4af37;
    pointer-events: none;
    z-index: 3;
}
.royal-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    color: #d4af37;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 6px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}
.royal-hero p {
    color: #fdfbf7;
    font-size: 1.3rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.royal-box {
    background-color: rgba(90, 30, 27, 0.95);
    border: 4px solid #d4af37;
    padding: 60px;
    margin-bottom: 60px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
    position: relative;
}
.royal-box::after {
    content: '?';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b0f0d;
    color: #d4af37;
    font-size: 24px;
    padding: 0 15px;
}
.royal-box h2 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 2.8rem;
    margin-bottom: 30px;
}
.royal-box p {
    font-size: 1.15rem;
    line-height: 2;
    color: #fdfbf7;
    margin-bottom: 25px;
    font-family: 'Georgia', serif;
}
.royal-image {
    width: 100%;
    max-width: 800px;
    border: 8px solid #d4af37;
    padding: 10px;
    background: #3b0f0d;
    margin-top: 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.royal-footer-fix {
    background: #2a0b09 !important;
    border-top: 5px solid #d4af37 !important;
}
/* --- SIMPLE & ATTRACTIVE (MINIMALIST) DESIGN --- */
.simple-hero {
    position: relative;
    height: 400px;
    background: url('../images/15.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.simple-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}
.simple-hero h1 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.simple-story-section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.simple-story-section h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}
.simple-story-section p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.simple-split {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 40px 20px 80px;
    max-width: 1100px;
    margin: 0 auto;
}
.simple-split-text {
    flex: 1;
}
.simple-split-text h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}
.simple-split-text p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}
.simple-split-img {
    flex: 1;
}
.simple-split-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.simple-values {
    background-color: #f9f9f9;
    padding: 80px 20px;
}
.simple-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.simple-value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.simple-value-card h4 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 15px;
    margin-top: 20px;
}
.simple-value-card p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .simple-split {
        flex-direction: column;
    }
    .simple-values-grid {
        grid-template-columns: 1fr;
    }
}
/* --- DYNAMIC & FUN (GLASSMORPHISM) DESIGN --- */

/* Dynamic Hero */
.dynamic-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: url('../images/14.jpg') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}
.dynamic-hero-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 60px 80px;
    border-radius: 24px;
    text-align: center;
    color: #fff;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    transform: translateY(30px);
    animation: floatUp 1s ease-out forwards;
}
@keyframes floatUp {
    to { transform: translateY(0); }
}
.dynamic-hero-glass h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -1px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.dynamic-hero-glass p {
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Zig Zag Section */
.dynamic-zigzag {
    padding: 100px 20px;
    background: linear-gradient(135deg, #fdfdfd 0%, #f4f6f8 100%);
}
.zz-row {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 100px;
}
.zz-row.reverse {
    flex-direction: row-reverse;
}
.zz-img-wrapper {
    flex: 1;
    position: relative;
}
.zz-img-wrapper img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}
.zz-img-wrapper:hover img {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
.zz-img-wrapper::before {
    content: '';
    position: absolute;
    top: -20px; left: -20px; right: 20px; bottom: 20px;
    background: var(--color-primary);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.1;
}
.zz-row.reverse .zz-img-wrapper::before {
    left: 20px; right: -20px;
}
.zz-text {
    flex: 1;
}
.zz-text h2 {
    font-size: 2.8rem;
    color: var(--color-primary);
    margin-bottom: 25px;
    line-height: 1.2;
}
.zz-text p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}
.zz-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(123, 42, 38, 0.1);
    color: var(--color-primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Glowing Cards */
.dynamic-cards {
    padding: 80px 20px 120px;
    background: #fff;
}
.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}
.glow-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: default;
}
.glow-card::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    background: var(--color-primary);
    filter: blur(60px);
    border-radius: 50%;
    top: -100px; right: -100px;
    opacity: 0.08;
    transition: all 0.6s ease;
}
.glow-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(123, 42, 38, 0.15);
    border-color: rgba(123, 42, 38, 0.3);
}
.glow-card:hover::after {
    opacity: 0.2;
    transform: scale(1.5);
}
.glow-card svg {
    color: var(--color-primary);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}
.glow-card:hover svg {
    transform: scale(1.2) rotate(5deg);
}
.glow-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}
.glow-card p {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .zz-row, .zz-row.reverse { flex-direction: column; text-align: center; gap: 40px; margin-bottom: 60px; }
    .zz-img-wrapper::before { display: none; }
    .cards-container { grid-template-columns: 1fr; }
    .dynamic-hero-glass { padding: 40px 20px; }
    .dynamic-hero-glass h1 { font-size: 2.5rem; }
}
/* --- EDITORIAL DESIGN (BASED ON REFERENCE) --- */

.editorial-body {
    background-color: #fff !important;
    color: #333;
}

/* Common Editorial Styles */
.ed-overline {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 600;
}
.ed-overline.gold {
    color: #e5cc98;
}
.editorial-body h1, .editorial-body h2 {
    font-family: 'Playfair Display', serif;
    color: #111;
    font-weight: 400;
}

/* Section 1: Hero Split */
.ed-hero {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 80px 20px;
    margin-top: 40px;
}
.ed-hero-img {
    flex: 1;
}
.ed-hero-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.ed-hero-text {
    flex: 1;
    padding-right: 40px;
}
.ed-hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}
.ed-hero-text h1 em {
    font-style: italic;
    color: var(--color-primary);
}
.ed-hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}
.ed-btn {
    display: inline-block;
    background-color: var(--color-primary);
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: background 0.3s ease;
}
.ed-btn:hover {
    background-color: #3b0f0d;
}

/* Section 2: Dark Banner */
.ed-dark-banner {
    background-color: var(--color-primary);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    margin: 60px 0;
}
.ed-dark-banner h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
}
.ed-dark-banner p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: #eee;
    font-family: 'Georgia', serif;
    font-style: italic;
}

/* Section 3: The Method */
.ed-method {
    padding: 60px 20px;
}
.ed-method h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
}
.ed-method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}
.ed-method-col {
    position: relative;
}
.ed-num {
    display: block;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.ed-method-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #222;
}
.ed-method-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

/* Section 4: The Standards (Cards) */
.ed-standards {
    padding: 60px 20px 100px;
}
.ed-standards h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
}
.ed-standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.ed-card {
    background-color: #f4f4f4;
    padding: 40px 30px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.ed-card:hover {
    transform: translateY(-5px);
    background-color: #f0f0f0;
}
.ed-card-icon {
    width: 40px;
    height: 40px;
    background-color: #eaddc4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--color-primary);
}
.ed-card-icon svg {
    width: 20px;
    height: 20px;
}
.ed-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #222;
}
.ed-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 992px) {
    .ed-hero {
        flex-direction: column;
        gap: 40px;
    }
    .ed-hero-text {
        padding-right: 0;
        text-align: center;
    }
    .ed-method-grid, .ed-standards-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ed-dark-banner h2 {
        font-size: 2.2rem;
    }
}
/* Override Editorial Fonts to match Website Theme */
.editorial-body h1, .editorial-body h2, .ed-method-col h4, .ed-card h4, .ed-dark-banner p {
    font-family: var(--font-heading), 'Montserrat', sans-serif !important;
    font-style: normal !important;
}
.editorial-body p {
    font-family: var(--font-body), 'Open Sans', sans-serif !important;
}
.ed-hero-text h1 em {
    font-style: normal !important;
    font-weight: 700;
}
/* Fix Gallery Overlap & Design */
.gallery-masonry {
    margin-top: 60px !important;
    gap: 30px !important;
}
.masonry-item {
    height: 400px !important;
    margin-top: 0 !important; /* Remove negative margin causing overlap */
    border-radius: 4px !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
}
.masonry-item:nth-child(2), .masonry-item:nth-child(4) {
    height: 400px !important;
    margin-top: 0 !important;
}
.section-title {
    font-family: var(--font-heading), 'Montserrat', sans-serif !important;
    font-size: 2.5rem !important;
    color: #222 !important;
}
.section-subtitle {
    font-family: var(--font-body), 'Open Sans', sans-serif !important;
    color: #666 !important;
}
/* Center editorial overline when used with text-center */
.text-center .ed-overline {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
/* Global elegant section title styling */
.section-title {
    font-weight: 400 !important;
    letter-spacing: 1px;
}
/* --- MODERN CONTACT PAGE DESIGN --- */
.contact-modern-section {
    padding: 80px 20px 40px;
    background: #fefefe;
}
.contact-modern-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}
/* Left: Info Box */
.contact-info-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.contact-info-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}
.contact-info-box > p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}
.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.info-icon {
    width: 45px; height: 45px;
    background: rgba(90, 30, 27, 0.08);
    color: var(--color-primary);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.info-icon svg { width: 22px; height: 22px; }
.info-text h5 { font-size: 1.05rem; margin-bottom: 5px; color: #333; font-family: var(--font-heading); font-weight: 600;}
.info-text span { color: #666; font-size: 0.95rem; }

/* Right: Form Box */
.contact-form-box {
    background: #faf6f0; /* Soft beige/warm tone */
    padding: 50px;
    border-radius: 20px;
}
.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
.tag-pill svg { color: var(--color-primary); width: 16px; height: 16px; }
.center-pill { margin: 0 auto 20px; display: flex; width: fit-content; }
.contact-form-box h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}
.contact-form-box > p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}
.modern-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.modern-form input, .modern-form select, .modern-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    background: rgba(0,0,0,0.03);
    font-family: inherit;
    font-size: 0.95rem;
    transition: 0.3s;
}
.modern-form input:focus, .modern-form select:focus, .modern-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: #fff;
    box-shadow: 0 5px 15px rgba(90, 30, 27, 0.05);
}
.modern-form textarea { margin-bottom: 20px; resize: vertical; height: 140px;}
.pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--color-primary);
    color: #fff;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}
.pill-btn:hover {
    background: #3b0f0d;
    transform: translateY(-2px);
}
.pill-btn-icon { 
    display: flex; align-items: center; justify-content: center;
    width: 24px; height: 24px; background: #fff; color: var(--color-primary); border-radius: 50%;
}

/* Map Section */
.map-section { padding: 40px 20px 100px; }
.map-section h2 { margin-bottom: 40px; max-width: 800px; margin-left: auto; margin-right: auto; line-height: 1.4; font-size: 2.2rem;}
.map-wrapper iframe {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    filter: grayscale(20%) contrast(1.1);
}

@media (max-width: 992px) {
    .contact-modern-grid { grid-template-columns: 1fr; }
    .contact-form-box { padding: 30px; }
}
@media (max-width: 768px) {
    .modern-form .form-row { flex-direction: column; gap: 20px; }
}
/* --- E-COMMERCE COLLECTIONS GRID DESIGN --- */
.shop-section {
    padding: 20px 20px 100px;
}
.shop-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid #eaeaea;
    flex-wrap: wrap;
    gap: 20px;
}
.filter-left, .filter-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.filter-label {
    font-size: 0.9rem;
    color: #666;
    margin-right: 10px;
}
.filter-dropdown {
    position: relative;
}
.filter-btn {
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 0;
}
.filter-btn svg { width: 14px; height: 14px; transition: 0.2s;}
.filter-dropdown:hover .filter-btn { color: var(--color-primary); }
.filter-dropdown:hover .filter-btn svg { transform: rotate(180deg); color: var(--color-primary); }
.filter-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 5px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 20px;
    min-width: 180px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
}
.filter-dropdown:hover .filter-menu { 
    opacity: 1; 
    visibility: visible;
    transform: translateY(0);
}
.filter-menu-title { font-weight: 600; margin-bottom: 15px; font-size: 0.9rem; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.color-option { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 0.9rem; cursor: pointer; color: #555;}
.color-swatch { width: 16px; height: 16px; border-radius: 50%; display: inline-block; border: 1px solid rgba(0,0,0,0.1);}

.view-icons { display: flex; gap: 10px; margin-left: 15px; align-items: center;}
.view-btn { background: transparent; border: 1px solid #ddd; padding: 6px; border-radius: 4px; cursor: pointer; color: #999; display: flex; align-items: center;}
.view-btn.active { color: var(--color-primary); border-color: var(--color-primary); }
.view-btn svg { width: 18px; height: 18px; fill: currentColor; }

/* Grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}
.product-card {
    transition: 0.3s;
}
.product-img-box {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 15px;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}
.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    transition: transform 0.5s ease;
}
.product-card:hover .product-img-box img { transform: scale(1.05); }

.product-details { padding: 0 5px; }
.product-title { font-size: 1rem; font-weight: 600; color: var(--color-text); margin-bottom: 5px; font-family: var(--font-heading); cursor: pointer; transition: color 0.3s;}
.product-card:hover .product-title { color: var(--color-primary); }
.product-price { font-size: 0.95rem; font-weight: 600; font-family: var(--font-body); color: var(--color-primary); margin-bottom: 10px; }
.product-colors { display: flex; gap: 6px; }
.pswatch { width: 12px; height: 12px; border-radius: 50%; display: inline-block; border: 1px solid rgba(0,0,0,0.1); cursor: pointer;}

/* Pagination */
.shop-pagination { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 40px;}
.page-num, .page-btn {
    width: 35px; height: 35px;
    border: none; background: transparent; font-size: 0.9rem; color: #666; cursor: pointer; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; transition: 0.2s;
}
.page-num.active { background: var(--color-primary); color: #fff; font-weight: 600; }
.page-num:hover:not(.active) { background: #f0f0f0; }

@media (max-width: 1024px) {
    .shop-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .product-img-box { padding: 10px; }
}
@media (max-width: 480px) {
    .shop-grid { grid-template-columns: 1fr; }
}


