/* Day Flooring Sales and Installation - Beach Vibe Theme */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ==================== CSS Variables - Beach Vibe ==================== */
:root {
  /* Base colors */
  --background: #fffcf7;
  --foreground: #1a1a1a;
  
  /* Teal primary */
  --primary: #0d9488;
  --primary-foreground: #ffffff;
  
  /* Light sand backgrounds */
  --secondary: #fdf6ed;
  --secondary-foreground: #0d9488;
  
  --muted: #f5ede3;
  --muted-foreground: #5a5a5a;
  
  /* Coral accent */
  --accent: #f97066;
  --accent-foreground: #ffffff;
  
  --border: #e5ddd3;
  
  /* Beach brand colors */
  --cream: #fffcf7;
  --champagne: #f8e9d6;
  --sand: #e8dcc8;
  --coral: #f97066;
  --coral-light: #ffb4ac;
  --teal: #0d9488;
  --teal-dark: #0a7a70;
  --teal-light: #5eead4;
  
  /* Spacing */
  --container-max: 1400px;
  --container-padding: 2rem;
  
  /* Border radius */
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--foreground);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

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

/* SVG sizing is handled by explicit width/height attributes in HTML */

ul, ol {
  list-style: none;
}

/* ==================== Utility Classes ==================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

.font-script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
}

.font-heading {
  font-family: 'Playfair Display', serif;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==================== Buttons ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--coral);
  color: var(--accent-foreground);
}

.btn-primary:hover {
  background-color: #e85f55;
}

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

.btn-outline:hover {
  background-color: var(--teal);
  color: var(--primary-foreground);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn svg {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
}
/* ==================== Form Elements ==================== */
.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--background);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-foreground);
}

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

/* ==================== Header / Navbar ==================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 252, 247, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
}

.logo-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.875rem;
  color: var(--coral);
}

.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  border-radius: var(--radius);
  transition: color 0.2s ease;
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-dropdown-toggle:hover {
  color: var(--teal);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  transition: background-color 0.2s ease;
}

.nav-dropdown-item:hover {
  background-color: rgba(13, 148, 136, 0.1);
}

.nav-dropdown-item-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.nav-dropdown-item-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.header-phone:hover {
  color: var(--foreground);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
  color: var(--foreground);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--background);
  padding: 2rem;
  z-index: 99;
}

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

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
}

.mobile-nav-link:hover {
  color: var(--teal);
}

/* ==================== Footer ==================== */
.footer {
  background-color: var(--teal);
  color: var(--primary-foreground);
}

.footer-main {
  padding: 4rem 0;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-brand-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--coral-light);
  margin-top: 0.25rem;
}

.footer-brand-desc {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
}

.footer-social-link:hover {
  background-color: var(--coral);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-foreground);
}

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

.footer-link {
  font-size: 0.875rem;
  opacity: 0.8;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-link:hover {
  opacity: 1;
  color: var(--coral-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--coral-light);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-contact-text {
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-contact-link {
  font-size: 0.875rem;
  opacity: 0.8;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-contact-link:hover {
  opacity: 1;
  color: var(--coral-light);
}

.footer-hours {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.footer-hours-title {
  font-size: 0.875rem;
  font-weight: 600;
}

.footer-hours-text {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  opacity: 0.6;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-link {
  font-size: 0.875rem;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.footer-legal-link:hover {
  opacity: 1;
}

/* ==================== Hero Section ==================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--champagne) 100%);
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  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%3Cpath d='M30 0C13.4 0 0 13.4 0 30s13.4 30 30 30 30-13.4 30-30S46.6 0 30 0zm0 50c-11 0-20-9-20-20s9-20 20-20 20 9 20 20-9 20-20 20z' fill='%230d9488' fill-opacity='1'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  z-index: 10;
  padding: 5rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(13, 148, 136, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  width: fit-content;
}

.hero-badge-star {
  color: var(--coral);
}

.hero-badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--teal);
}

.hero-script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--coral);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1rem;
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(13, 148, 136, 0.2);
  border: 2px solid var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
}

.hero-trust-avatar:first-child {
  margin-left: 0;
}

.hero-trust-avatar svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
}

.hero-trust-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-left: 0.5rem;
}

.hero-trust-text strong {
  color: var(--foreground);
}

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

.hero-image-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-card-script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--coral);
}

.hero-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

.hero-card-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-card-stars {
  display: flex;
  gap: 0.125rem;
}

.hero-card-stars svg {
  width: 16px;
  height: 16px;
  color: var(--coral);
  fill: var(--coral);
}

.hero-decoration-1 {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  background-color: rgba(249, 112, 102, 0.2);
  border-radius: 50%;
  filter: blur(40px);
}

.hero-decoration-2 {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 8rem;
  height: 8rem;
  background-color: rgba(13, 148, 136, 0.2);
  border-radius: 50%;
  filter: blur(60px);
}

/* ==================== Section Heading ==================== */
.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading-script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--coral);
}

.section-heading-script.light {
  color: var(--coral-light);
}

.section-heading-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .section-heading-title {
    font-size: 2.5rem;
  }
}

.section-heading-title.light {
  color: var(--primary-foreground);
}

.section-heading-subtitle {
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 1rem auto 0;
}

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

/* ==================== Flooring Types Section ==================== */
.flooring-types {
  padding: 5rem 0;
  background-color: var(--background);
}

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

@media (min-width: 1024px) {
  .flooring-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.flooring-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flooring-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.flooring-card-link {
  display: block;
  aspect-ratio: 4/5;
  position: relative;
}

.flooring-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.flooring-card:hover .flooring-card-image {
  transform: scale(1.1);
}

.flooring-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 148, 136, 0.9) 0%, rgba(13, 148, 136, 0.4) 50%, transparent 100%);
}

.flooring-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  color: var(--primary-foreground);
}

.flooring-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.flooring-card-desc {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* ==================== How It Works Section ==================== */
.how-it-works {
  padding: 5rem 0;
  background-color: var(--secondary);
}

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

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  position: relative;
  background-color: var(--background);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease;
}

.step-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-foreground);
}

.step-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(13, 148, 136, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.step-icon svg {
  width: 2rem !important;
  height: 2rem !important;
  color: var(--teal);
  flex-shrink: 0;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ==================== Testimonials Section ==================== */
.testimonials {
  padding: 5rem 0;
  background-color: var(--teal);
  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%3Cpath d='M30 0C13.4 0 0 13.4 0 30s13.4 30 30 30 30-13.4 30-30S46.6 0 30 0zm0 50c-11 0-20-9-20-20s9-20 20-20 20 9 20 20-9 20-20 20z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--background);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .testimonial-card {
    padding: 3rem;
  }
}

.testimonial-quote {
  width: 3rem;
  height: 3rem;
  color: rgba(249, 112, 102, 0.2);
  margin-bottom: 1.5rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--coral);
  fill: var(--coral);
}

.testimonial-text {
  font-size: 1.125rem;
  color: var(--foreground);
  line-height: 1.7;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .testimonial-text {
    font-size: 1.25rem;
  }
}

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

@media (min-width: 640px) {
  .testimonial-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--foreground);
}

.testimonial-location {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.testimonial-product-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.testimonial-product {
  font-weight: 500;
  color: var(--coral);
}

/* ==================== Room Inspiration Section ==================== */
.room-inspiration {
  padding: 5rem 0;
  background-color: var(--background);
}

.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .rooms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.room-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.room-card-link {
  display: block;
  aspect-ratio: 3/2;
  position: relative;
}

.room-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.room-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 148, 136, 0.8) 0%, transparent 60%);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.room-card:hover .room-card-overlay {
  opacity: 0.9;
}

.room-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: var(--primary-foreground);
}

.room-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.room-card-cta {
  font-size: 0.875rem;
  opacity: 0;
  margin-top: 0.25rem;
  transition: opacity 0.3s ease;
}

.room-card:hover .room-card-cta {
  opacity: 0.8;
}

/* ==================== FAQ Section ==================== */
.faq {
  padding: 5rem 0;
  background-color: var(--secondary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--background);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: left;
  color: var(--foreground);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--teal);
}

.faq-question svg {
  width: 1.25rem !important;
  height: 1.25rem !important;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==================== CTA Section ==================== */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  text-align: center;
}

.cta-script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--coral-light);
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

.cta-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 1rem auto 0;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 1.25rem;
  color: var(--primary-foreground);
}

.cta-phone svg {
  width: 1.25rem !important;
  height: 1.25rem !important;
  color: var(--coral-light);
  flex-shrink: 0;
}

/* ==================== Page Headers ==================== */
.page-header {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--champagne) 100%);
  text-align: center;
}

.page-header-script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--coral);
}

.page-header-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .page-header-title {
    font-size: 3rem;
  }
}

.page-header-desc {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 1rem auto 0;
}

/* ==================== Process Page Steps ==================== */
.process-steps {
  padding: 5rem 0;
  background-color: var(--background);
}

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

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-card {
  background-color: var(--secondary);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.process-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(249, 112, 102, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.process-card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--coral);
}

.process-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-card-desc {
  color: var(--muted-foreground);
}

/* ==================== Products Page ==================== */
.products-section {
  padding: 5rem 0;
  background-color: var(--background);
}

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

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card-link {
  display: block;
}

.product-card-image-wrapper {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}

.product-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 148, 136, 0.8) 0%, transparent 100%);
}

.product-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: var(--primary-foreground);
}

.product-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.product-card-desc {
  opacity: 0.8;
  margin-top: 0.25rem;
}

/* ==================== Product Detail Page ==================== */
.product-detail {
  padding: 3rem 0;
  background-color: var(--secondary);
}

.product-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  transition: color 0.2s ease;
}

.product-detail-back:hover {
  color: var(--foreground);
}

.product-detail-back svg {
  width: 1rem;
  height: 1rem;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .product-detail-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.product-detail-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-detail-script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--coral);
}

.product-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .product-detail-title {
    font-size: 3rem;
  }
}

.product-detail-desc {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
}

.product-detail-benefits {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-detail-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-detail-benefit svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--coral);
}

/* ==================== About Page ==================== */
.about-content {
  padding: 5rem 0;
  background-color: var(--background);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--coral);
}

.about-title {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.about-text {
  color: var(--muted-foreground);
  margin-top: 1rem;
  line-height: 1.7;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

@media (min-width: 1024px) {
  .about-values {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-value-card {
  background-color: var(--secondary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}

.about-value-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(249, 112, 102, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.about-value-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--coral);
}

.about-value-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
}

.about-value-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

/* ==================== Contact Page ==================== */
.contact-section {
  padding: 5rem 0;
  background-color: var(--background);
}

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

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-wrapper {
  background-color: var(--secondary);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.contact-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.contact-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.contact-info-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.contact-info-text a {
  transition: color 0.2s ease;
}

.contact-info-text a:hover {
  color: var(--teal);
}

.contact-why-us {
  margin-top: 2rem;
  background-color: var(--teal);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  color: var(--primary-foreground);
}

.contact-why-us-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.contact-why-us-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0.8;
}

/* ==================== Portfolio Gallery ==================== */
.portfolio-section {
  padding: 5rem 0;
  background-color: var(--secondary);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.portfolio-label {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 500;
}

/* ==================== Testimonials Carousel ==================== */
.testimonials-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}

.testimonial-card-carousel {
  background-color: var(--background);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .testimonial-card-carousel {
    padding: 2.5rem;
  }
}

.testimonial-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-initials {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--coral));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
}

.testimonial-stars {
  display: flex;
  gap: 0.125rem;
  margin-top: 0.25rem;
}

.testimonial-stars svg {
  width: 1rem !important;
  height: 1rem !important;
  color: var(--coral);
  fill: var(--coral);
  flex-shrink: 0;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background-color: rgba(13, 148, 136, 0.1);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--teal);
}

.google-badge svg {
  width: 1rem !important;
  height: 1rem !important;
  flex-shrink: 0;
}

.testimonial-text-carousel {
  font-size: 1rem;
  color: var(--foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .testimonial-text-carousel {
    font-size: 1.125rem;
  }
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.carousel-btn:hover {
  background-color: var(--coral);
}

.carousel-btn svg {
  width: 1.5rem !important;
  height: 1.5rem !important;
  color: white;
  flex-shrink: 0;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.carousel-dot.active {
  background-color: white;
  transform: scale(1.25);
}

.view-all-reviews {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  color: white;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.view-all-reviews:hover {
  color: var(--coral-light);
}

.view-all-reviews svg {
  width: 1.25rem !important;
  height: 1.25rem !important;
  flex-shrink: 0;
}

/* ==================== Service Area Section ==================== */
.service-area {
  padding: 5rem 0;
  background-color: var(--cream);
}

.service-area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .service-area-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-area-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-area-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

@media (min-width: 768px) {
  .service-area-map iframe {
    height: 450px;
  }
}

.service-area-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.service-area-content > p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.service-area-states {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-area-state h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-area-state h4 svg {
  width: 1.25rem !important;
  height: 1.25rem !important;
  flex-shrink: 0;
}

.service-area-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .service-area-list {
    grid-template-columns: 1fr 1fr;
  }
}

.service-area-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-area-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.service-area-item svg {
  width: 1.25rem !important;
  height: 1.25rem !important;
  color: var(--coral);
  flex-shrink: 0;
}

.service-area-item span {
  font-size: 0.875rem;
  color: var(--foreground);
}

.service-area-cta {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(249, 112, 102, 0.1));
  border-radius: var(--radius-lg);
  text-align: center;
}

.service-area-cta p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

/* ==================== Reviews Page ==================== */
.reviews-section {
  padding: 5rem 0;
  background-color: var(--background);
}

.reviews-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .reviews-header {
    flex-direction: row;
    justify-content: space-between;
  }
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background-color: var(--secondary);
  border-radius: var(--radius-lg);
}

.reviews-summary-rating {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
}

.reviews-summary-stars {
  display: flex;
  gap: 0.25rem;
}

.reviews-summary-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--coral);
  fill: var(--coral);
}

.reviews-summary-count {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.review-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-card-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.review-card-initials {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--coral));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-card-author {
  flex: 1;
}

.review-card-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--foreground);
}

.review-card-date {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.review-card-stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 0.75rem;
}

.review-card-stars svg {
  width: 1rem;
  height: 1rem;
  color: var(--coral);
  fill: var(--coral);
}

.review-card-text {
  font-size: 0.875rem;
  color: var(--foreground);
  line-height: 1.6;
}

.review-card-google {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.review-card-google svg {
  width: 1rem;
  height: 1rem;
}

/* ==================== Brands Section ==================== */
.brands-section {
  padding: 4rem 0;
  background: var(--cream);
  overflow: hidden;
}

.brands-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 2rem;
}

/* Gradient fade edges */
.brands-container::before,
.brands-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.brands-container::before {
  left: 0;
  background: linear-gradient(to right, var(--cream), transparent);
}

.brands-container::after {
  right: 0;
  background: linear-gradient(to left, var(--cream), transparent);
}

/* Auto-scrolling animation */
.brands-track {
  display: flex;
  gap: 2rem;
  animation: scroll-brands 45s linear infinite;
  width: max-content;
}

.brands-track:hover {
  animation-play-state: paused;
}

/* Brand cards */
.brand-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  height: 80px;
  min-width: 160px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.brand-item img {
  max-height: 45px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.85;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.brand-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll-brands {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .brands-section {
    padding: 3rem 0;
  }
  
  .brand-item {
    min-width: 140px;
    height: 60px;
    padding: 0.75rem 1.25rem;
  }
  
  .brand-item img {
    max-height: 35px;
    max-width: 110px;
  }
  
  .brands-track {
    gap: 1.5rem;
  }
  
  .brands-container::before,
  .brands-container::after {
    width: 50px;
  }
}

/* ==================== Brands Page ==================== */
.brands-page-header {
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--cream) 100%);
  text-align: center;
}

.brands-page-header .section-heading-script {
  color: var(--coral);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.brands-page-header .section-heading-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.brands-page-header .section-heading-subtitle {
  max-width: 700px;
  margin: 0 auto;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  padding: 4rem 0;
}

.brand-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.brand-card-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.brand-card-logo img {
  max-height: 60px;
  max-width: 180px;
  object-fit: contain;
}

.brand-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.brand-card-description {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.brand-card-products {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.brand-card-tag {
  padding: 0.25rem 0.75rem;
  background: var(--secondary);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
}

@media (max-width: 768px) {
  .brands-page-header .section-heading-title {
    font-size: 2rem;
  }
  
  .brands-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 3rem 0;
  }
  
  .brand-card {
    padding: 1.5rem;
  }
}

/* ==================== Animations ==================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}
