/* Import Google Fonts - A more curated, elegant selection */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&family=Lora:wght@400;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

/* --- Artistic Color Palette --- */
/*
  Background: #FDFDFD (Very soft off-white, canvas-like)
  Primary Text: #333333 (Deep, soft charcoal)
  Headings/Main Accent: #7A4988 (Deep Plum/Amethyst - rich, artistic)
  Secondary Accent/Buttons: #D2B2DD (Muted Lavender - softer, inviting)
  Highlight/Interactive: #A3D9CE (Soft Mint Green - contrasting, refreshing for links/hovers)
  Borders/Dividers: #E0E0E0 (Light grey, subtle)
*/

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

/* Global Image Responsiveness */
img {
  max-width: 100%; /* Ensures images never overflow their container */
  height: auto; /* Maintains aspect ratio */
  display: block; /* Prevents extra space below images, especially in flex/grid */
}

/* General Styles */
html, body {
  height: 100%;
  scroll-behavior: smooth;
  font-family: 'Source Sans Pro', sans-serif; /* Modern, clean body font */
  background-color: #FDFDFD; /* Artistic Background */
  color: #333333; /* Primary Text */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3 {
  font-family: 'Merriweather', serif; /* Elegant serif for main headings */
  color: #7A4988; /* Headings/Main Accent */
}

.hero .content h2,
.testimonials-section h2,
.faq-header h2.section-title,
.about-container h2,
.gallery-section h2,
.collection-intro h2,
.featured-saree h2,
.contact-section h2,
.blog-section h2 {
  font-family: 'Lora', serif; /* Distinct serif for section titles */
  color: #7A4988; /* Headings/Main Accent */
}

/* Main content area for sticky footer */
main {
  flex: 1;
  padding: 40px 20px;
  max-width: 1200px; /* Max width for overall content */
  margin: 40px auto;
  width: 100%; /* Ensure main takes full width available up to max-width */
}

/* Extra large screens background adjustments */
@media (min-width: 1920px) {
  body {
    background-size: contain;
    background-position: center top;
  }
}

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #D2B2DD; /* Secondary Accent/Buttons - Muted Lavender for prominent nav bar, fully opaque */
  border-bottom: 1px solid #7A4988; /* Headings/Main Accent - Stronger border */
  position: sticky;
  top: 0;
  z-index: 999;
  /* Removed backdrop-filter to ensure no transparency interference */
}

.nav-logo-container {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.nav-logo-image {
  max-height: 60px;
  width: auto;
}

nav h1 {
  font-family: 'Lora', serif; /* Artistic font for logo text */
  font-size: 2rem;
  color: #333333; /* Primary Text - Ensure contrast on new nav background */
  letter-spacing: 0.05em;
}

/* Menu Toggle (Hamburger Icon) */
.menu-toggle {
  background: none;
  border: none;
  font-size: 2rem; /* Slightly larger for touch */
  cursor: pointer;
  color: #333333; /* Primary Text */
  display: block; /* Default to showing on small screens */
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex; /* Default to flex for larger screens */
  gap: 2rem;
  flex-direction: row; /* Default to row for larger screens */
  position: static; /* Static positioning for desktop */
  width: auto;
  background-color: transparent; /* No background on desktop, relies on nav parent */
  box-shadow: none;
  z-index: auto;
  padding: 0;
  text-align: right;
}

.nav-links li {
  margin: 0;
}

.nav-links li a {
  font-size: 1.05rem;
  color: #333333; /* Primary Text */
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  display: block;
  padding: 5px 0;
  position: relative;
}

.nav-links li a:hover {
  color: #7A4988; /* Headings/Main Accent */
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: #A3D9CE; /* Highlight/Interactive */
  transition: width 0.3s ease;
}

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


/* --- Hero Section --- */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

#slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

#slideshow img.active {
  opacity: 1;
  z-index: 2;
}

.hero .content {
  position: absolute;
  bottom: 8rem; /* Adjusted for aesthetic spacing */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background-color: rgba(253, 253, 253, 0.9); /* Artistic Background with transparency */
  padding: 2.5rem 3.5rem; /* Larger padding */
  border-radius: 1.5rem; /* More rounded corners */
  color: #333333; /* Primary Text */
  max-width: 700px; /* Slightly wider */
  width: 90%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1); /* Subtle shadow */
  z-index: 10;
}

.hero .content p {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 3px; /* More spacing */
  margin-bottom: 0.8rem;
  color: #7A4988; /* Headings/Main Accent */
  font-weight: 700;
}

.hero .content h2 {
  font-size: 3rem; /* Larger heading */
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero .content button {
  background-color: #D2B2DD; /* Secondary Accent/Buttons */
  color: #333333; /* Primary Text on button */
  padding: 0.8rem 2rem; /* Larger button */
  font-weight: 600;
  border: none;
  border-radius: 0.75rem; /* More rounded */
  font-family: 'Source Sans Pro', sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hero .content button:hover {
  background-color: #7A4988; /* Headings/Main Accent for hover */
  color: #FDFDFD; /* Artistic Background for text on hover */
  transform: translateY(-2px);
}

/* Down Arrow */
.down-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem; /* Larger arrow */
  color: #A3D9CE; /* Highlight/Interactive */
  text-decoration: none;
  animation: bounce 1.5s infinite;
  z-index: 2;
}

.down-arrow:hover {
  color: #7A4988; /* Headings/Main Accent for hover */
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem; /* More spacing */
  padding: 5rem 3rem; /* More padding */
  background-color: #FDFDFD; /* Artistic Background */
  text-align: center;
}

.category-item {
  background-color: #ffffff; /* Clean white for contrast */
  border-radius: 1rem; /* Less extreme rounded corners */
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08); /* Subtle shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.category-item img {
  width: 100%;
  max-width: 180px; /* Slightly smaller images for better grid fit */
  height: auto;
  object-fit: contain;
  background-color: #fcfcfc; /* Very light background for image area */
  padding: 15px;
  border-radius: 0.75rem;
  margin-bottom: 1.2rem;
  transition: transform 0.3s ease-in-out;
}
.category-item img:hover {
  transform: scale(1.02);
}

.category-item p {
  font-weight: 400;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: #333333; /* Primary Text */
}

.category-button {
  display: inline-block;
  background-color: #7A4988; /* Headings/Main Accent for buttons */
  color: #FDFDFD; /* Artistic Background for text on button */
  padding: 0.6rem 1.5rem; /* Adjusted padding */
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.6rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.category-button:hover {
  background-color: #D2B2DD; /* Secondary Accent/Buttons for hover */
  color: #333333; /* Primary Text for text on hover */
  transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
  background-color: #ffffff; /* Clean white */
  color: #333333; /* Primary Text */
  padding: 50px 30px;
  border-radius: 1rem;
  margin: 40px auto;
  max-width: 1000px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonials-section h2 {
  font-size: 2.8rem; /* Larger heading */
  color: #7A4988; /* Headings/Main Accent */
  margin-bottom: 2rem;
}

.testimonial-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px; /* Increased gap */
  margin-bottom: 30px;
}

.testimonial-container {
  background-color: #FDFDFD; /* Artistic Background */
  padding: 25px; /* Increased padding */
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Lighter shadow */
  color: #333333; /* Primary Text */
  display: flex;
  align-items: center;
  flex: 1 1 calc(50% - 25px);
  max-width: calc(50% - 25px);
  min-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .testimonial-container {
    flex: 1 1 100%;
    max-width: 100%;
    flex-direction: column;
    text-align: center;
  }
  .testimonial-container img {
    margin-right: 0;
    margin-bottom: 20px; /* Increased margin */
  }
  .testimonial-text {
    text-align: center;
  }
}

.testimonial-container img {
  width: 100px; /* Slightly smaller image */
  height: 100px;
  object-fit: cover;
  border-radius: 50%; /* Circular images for testimonials */
  margin-right: 25px; /* Increased margin */
  border: 3px solid #D2B2DD; /* Secondary Accent/Buttons border */
}

.testimonial-text {
  text-align: left;
}

.testimonial-text h4 {
  margin: 0 0 8px; /* Adjusted margin */
  font-size: 1.2rem;
  color: #7A4988; /* Headings/Main Accent */
}

.testimonial-text p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* --- Gallery Section Specific Styles --- */
.gallery-section {
  background-color: #ffffff; /* Clean white */
  color: #333333; /* Primary Text */
  padding: 50px 30px;
  border-radius: 1rem;
  margin: 40px auto;
  max-width: 1200px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Gallery Filters Button Styling */
.gallery-filters {
  text-align: center;
  margin-bottom: 40px; /* More spacing */
}
.gallery-filters button {
  margin: 8px; /* Increased margin */
  padding: 12px 25px; /* Larger buttons */
  border: none;
  background-color: #E0E0E0; /* Subtle grey for unselected */
  border-radius: 2rem; /* More rounded */
  cursor: pointer;
  transition: 0.3s ease, transform 0.2s ease;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #333333;
}
.gallery-filters button:hover,
.gallery-filters button.active {
  background-color: #D2B2DD; /* Secondary Accent/Buttons */
  color: #333333; /* Primary Text */
  transform: translateY(-2px);
}
.gallery-filters button.active {
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjusted minmax */
  gap: 25px; /* Increased gap */
  justify-content: center;
  padding: 20px 0;
}

.gallery-item-card {
  background-color: #FDFDFD; /* Artistic Background */
  padding: 20px; /* Increased padding */
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  color: #333333; /* Primary Text */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 350px; /* Adjusted min-height */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistent cards */
  object-fit: cover; /* Cover ensures no empty space */
  background-color: #fcfcfc; /* Very light background */
  padding: 10px;
  border-radius: 0.75rem;
  margin-bottom: 15px; /* Increased margin */
  transition: transform 0.3s ease-in-out;
  border: 1px solid #E0E0E0; /* Subtle border */
}
.gallery-item-card img:hover {
  transform: scale(1.02);
}

.gallery-item-card .gallery-item-text {
  margin-top: auto;
}

.gallery-item-card h4 {
  margin: 0 0 8px;
  font-size: 1.3rem; /* Larger font */
  color: #7A4988; /* Headings/Main Accent */
}

.gallery-item-card p {
  margin: 0;
  font-size: 1rem;
  color: #555555; /* Darker secondary text */
  text-align: center;
}

/* Common Zoom Modal Styles (applied to both gallery and collection modals) */
.zoom-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.85); /* Slightly darker overlay */
  justify-content: center;
  align-items: center;
}

.zoom-modal .close {
  position: absolute;
  top: 25px; /* Adjusted position */
  right: 35px; /* Adjusted position */
  color: #fff;
  font-size: 45px; /* Larger close button */
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
  text-shadow: 0 0 10px rgba(0,0,0,0.5); /* Text shadow for visibility */
}

/* Gallery Specific Zoom Modal Content Styling */
/* This will now apply to the .zoom-content directly */
#zoomModal .zoom-content { /* Targeting the image within the gallery modal */
  display: block;
  margin: auto; /* Centers the image */
  max-width: 90%; /* Limits width to 90% of modal */
  max-height: 90vh; /* Limits height to 90% of viewport height */
  object-fit: contain; /* Ensures entire image is visible, might leave empty space */
  border-radius: 12px; /* More rounded */
  background-color: #FDFDFD; /* Artistic Background for the image area */
  padding: 20px; /* Increased padding around the image */
  box-shadow: 0 10px 40px rgba(0,0,0,0.3); /* Stronger shadow */
}


/* --- Collection Page Zoom Modal Specific Styles (re-applied for consistency) --- */
/* (This applies to #sareeZoomModal specifically) */
#sareeZoomModal {
  padding-top: 0;
  display: none; /* Make sure this is 'none' by default */
  justify-content: center;
  align-items: center;
}

.modal-content-wrapper {
  display: flex;
  background-color: #FDFDFD; /* Artistic Background */
  margin: auto;
  padding: 30px; /* Increased padding */
  border-radius: 1rem;
  max-width: 950px; /* Wider modal */
  width: 90%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  flex-direction: column; /* Default to column for small screens */
}

.saree-image-container {
  position: relative;
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 25px; /* Increased margin */
}

.saree-image-container .zoom-content {
  width: 100%;
  max-height: 550px; /* Taller image */
  object-fit: contain;
  border-radius: 0.75rem;
  background-color: #ffffff; /* Clean white */
  padding: 15px; /* Increased padding */
  border: 1px solid #E0E0E0; /* Subtle border */
}

.saree-image-container .prev,
.saree-image-container .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 18px; /* Larger buttons */
  color: white;
  font-weight: bold;
  font-size: 24px; /* Larger font */
  transition: 0.6s ease;
  border-radius: 0.5rem; /* More rounded */
  user-select: none;
  background-color: rgba(0,0,0,0.6); /* Slightly darker overlay */
  z-index: 1;
}

.saree-image-container .prev {
  left: 10px; /* Pushed slightly in */
  border-radius: 0.5rem 0 0 0.5rem; /* Specific border radius */
}

.saree-image-container .next {
  right: 10px; /* Pushed slightly in */
  border-radius: 0 0.5rem 0.5rem 0; /* Specific border radius */
}

.saree-image-container .prev:hover,
.saree-image-container .next:hover {
  background-color: rgba(0,0,0,0.9); /* Darker on hover */
}

.saree-description-box {
  flex: 1;
  padding: 0 25px; /* Increased padding */
  text-align: left;
  color: #333333; /* Primary Text */
}

.saree-description-box h4 {
  font-size: 1.8rem; /* Larger font */
  color: #7A4988; /* Headings/Main Accent */
  margin-bottom: 12px;
  font-family: 'Lora', serif;
}

.saree-description-box p {
  font-size: 1.05rem; /* Slightly larger text */
  line-height: 1.7;
  margin: 0;
  text-align: left;
}


/* About Container */
.about-container {
  background: #ffffff; /* Clean white background */
  padding: 50px; /* Increased padding */
  margin: 40px auto;
  max-width: 1000px;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  color: #333333; /* Primary Text */
}

.about-container h2 {
  color: #7A4988; /* Headings/Main Accent */
  border-bottom: 1px solid #E0E0E0; /* Subtle border */
  padding-bottom: 10px; /* Increased padding */
  margin-bottom: 20px; /* Increased margin */
  font-size: 2.8rem; /* Larger heading */
}

.about-container p,
.about-container li {
  font-size: 1.05rem; /* Slightly larger text */
  line-height: 1.7;
  margin-bottom: 15px; /* Add margin to paragraphs */
}

.about-container ul {
  padding-left: 25px; /* Increased padding */
}

.about-visit-section img {
  border-radius: 1rem;
  margin-top: 25px;
  width: 100%;
  max-width: 650px; /* Slightly larger image */
  margin: 25px auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Featured Products Carousel */
.featured-products {
  background-color: #ffffff; /* Clean white */
  margin: 40px auto;
  padding: 40px; /* Increased padding */
  border-radius: 1rem;
  max-width: 1200px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.featured-products h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
}

.product-carousel {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px; /* Increased gap */
}

.product-card {
  background-color: #FDFDFD; /* Artistic Background */
  border-radius: 1rem;
  padding: 20px; /* Increased padding */
  flex: 1 1 300px;
  max-width: 350px;
  min-height: 380px; /* Adjusted min-height */
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* Lighter shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Adjust product card on smaller screens */
@media (max-width: 600px) {
  .product-card {
    flex-basis: 100%;
    max-width: 90%;
  }
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover; /* Ensures image fills space */
  background-color: #fcfcfc; /* Very light background */
  padding: 10px;
  border-radius: 0.75rem;
  transition: transform 0.3s ease-in-out;
  border: 1px solid #E0E0E0; /* Subtle border */
}
.product-card img:hover {
  transform: scale(1.02);
}

.product-card p {
  margin: 15px 0 8px; /* Increased margin */
  font-weight: 500;
  font-size: 1.1rem;
  color: #333333; /* Primary Text */
}

.product-card span {
  color: #7A4988; /* Headings/Main Accent for price */
  font-weight: bold;
  font-size: 1.25rem;
}

/* Reviews Marquee */
.reviews-marquee {
  background: #D2B2DD; /* Secondary Accent/Buttons */
  margin: 30px auto;
  padding: 15px 25px; /* Increased padding */
  border-radius: 1rem;
  font-style: italic;
  color: #333333; /* Primary Text */
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Craft Promise */
.our-craft {
  background-color: #ffffff; /* Clean white */
  padding: 50px 30px;
  border-radius: 1rem;
  margin: 40px auto;
  max-width: 1000px;
  text-align: center;
  color: #333333; /* Primary Text */
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.our-craft h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}
.our-craft p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Map Section */
.map-section {
  margin: 40px auto;
  padding: 25px; /* Increased padding */
  max-width: 1000px;
  background-color: #ffffff; /* Clean white */
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.map-section h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}
.map-section iframe {
  width: 100%;
  height: 350px; /* Taller map */
  border-radius: 0.75rem;
  border: 1px solid #E0E0E0; /* Subtle border */
}

/* Newsletter Section */
.newsletter {
  margin: 40px auto;
  padding: 40px 30px; /* Increased padding */
  background-color: #D2B2DD; /* Secondary Accent/Buttons - softer, inviting background */
  border-radius: 1rem;
  max-width: 1000px;
  text-align: center;
  color: #333333; /* Primary Text */
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.newsletter h2 {
  color: #7A4988; /* Headings/Main Accent */
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.newsletter p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.newsletter form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Increased gap */
    max-width: 450px; /* Wider form */
    margin: 0 auto;
}

.newsletter input[type="email"] {
  padding: 12px; /* Increased padding */
  width: 100%;
  border: 1px solid #A3D9CE; /* Highlight/Interactive border */
  border-radius: 0.75rem; /* More rounded */
  font-size: 1.05rem;
  background-color: #FDFDFD; /* Artistic Background */
  color: #333333;
}

.newsletter button {
  padding: 12px 25px; /* Increased padding */
  background-color: #7A4988; /* Headings/Main Accent for button */
  color: #FDFDFD; /* Artistic Background for text */
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  width: auto;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.newsletter button:hover {
  background-color: #A3D9CE; /* Highlight/Interactive for hover */
  color: #333333; /* Primary Text for text on hover */
  transform: translateY(-2px);
}

/* FAQ page specific styles */
.faq-header {
  background: #7A4988; /* Headings/Main Accent */
  color: #fff;
  padding: 30px 40px; /* Increased padding */
  border-radius: 1rem;
  max-width: 750px; /* Wider header */
  margin: 0 auto 50px auto; /* Increased margin */
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.faq-header h2.section-title {
  font-size: 3rem; /* Larger heading */
  margin-bottom: 15px;
  color: inherit; /* Inherit white color */
}

.faq-header p {
  font-size: 1.15rem; /* Slightly larger text */
  margin-top: 0;
  font-weight: 400;
  font-family: 'Source Sans Pro', sans-serif;
  opacity: 0.95;
  line-height: 1.6;
}

.faq-list-container {
  max-width: 850px; /* Wider container */
  margin: 0 auto;
  padding: 25px;
}

.faq-item {
  background: #ffffff; /* Clean white */
  border-radius: 0.75rem; /* More rounded */
  margin-bottom: 20px; /* Increased margin */
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
  cursor: pointer;
  padding: 20px 30px; /* Increased padding */
  font-size: 1.3rem; /* Larger font */
  font-weight: 600;
  color: #333333; /* Primary Text */
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid #E0E0E0; /* Subtle border */
}

.faq-question:hover {
  background-color: #f8f8f8; /* Very light hover background */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease; /* Smooth transition */
  padding: 0 30px;
  font-size: 1.05rem; /* Slightly larger text */
  color: #555555; /* Darker secondary text */
  line-height: 1.7;
  background: #FDFDFD; /* Artistic Background */
}

.faq-item.active .faq-answer {
  max-height: 600px; /* Increased max-height */
  padding: 15px 30px 25px;
}

.faq-question i {
  font-size: 1.4rem; /* Larger icon */
  color: #A3D9CE; /* Highlight/Interactive */
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/* Overlay Container for Sticky Footer */
.overlay-container {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* Footer styles */
footer {
  background-color: #2D2D2D; /* Deep Charcoal Grey - Secondary for nav bar/footer */
  color: #FDFDFD; /* Artistic Background for text */
  padding: 50px 30px; /* Increased padding */
  width: 100%;
  box-sizing: border-box;
  font-family: 'Source Sans Pro', sans-serif;
  z-index: 1000;
  flex-shrink: 0;
  margin-top: auto; /* Pushes footer to the bottom */
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1;
  min-width: 220px; /* Slightly wider columns */
  margin: 15px; /* Increased margin */
}

.footer-column h3 {
  margin-bottom: 15px; /* Increased margin */
  font-size: 1.4rem;
  color: #D2B2DD; /* Secondary Accent/Buttons */
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #FDFDFD; /* Artistic Background for links */
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.05rem;
}

.footer-column ul li a:hover {
  color: #A3D9CE; /* Highlight/Interactive for hover */
  text-decoration: underline;
}

.footer-social a {
  color: #FDFDFD; /* Artistic Background for social icons */
  margin-right: 20px; /* Increased margin */
  font-size: 24px; /* Larger icons */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #A3D9CE; /* Highlight/Interactive for hover */
}

.footer-bottom {
  text-align: center;
  margin-top: 40px; /* Increased margin */
  font-size: 15px;
  color: rgba(253, 253, 253, 0.8); /* Slightly faded text */
}

/* Sections (General Section Padding) */
section {
  padding: 80px 50px; /* More generous padding for sections */
  max-width: 1200px;
  margin: auto;
}

section h2 {
  text-align: center;
  font-size: 3rem; /* Larger headings for sections */
  color: #7A4988; /* Headings/Main Accent */
  margin-bottom: 2.5rem; /* More spacing */
}

section p {
  font-size: 1.15rem; /* Slightly larger text */
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  color: #333333; /* Primary Text */
}

/* --- Collection Page Specific Styles --- */
.collection-intro {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 30px;
}

.collection-intro h2 {
  color: #7A4988; /* Headings/Main Accent */
  margin-bottom: 15px;
  font-size: 3rem;
}
.collection-intro p {
  color: #333333; /* Primary Text */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.15rem;
}

.filters {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}
.filters button {
  margin: 8px;
  padding: 12px 25px;
  border: none;
  background-color: #E0E0E0; /* Subtle grey for unselected */
  border-radius: 2rem;
  cursor: pointer;
  transition: 0.3s ease, transform 0.2s ease;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #333333;
}
.filters button:hover,
.filters button.active {
  background-color: #D2B2DD; /* Secondary Accent/Buttons */
  color: #333333; /* Primary Text */
  transform: translateY(-2px);
}

.saree-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjusted minmax */
  gap: 30px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.saree-card {
  background-color: #ffffff; /* Clean white */
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 20px; /* Increased padding */
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px; /* Adjusted min-height */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.saree-card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  background-color: #fcfcfc; /* Very light background */
  padding: 15px;
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
  margin-bottom: 15px;
  border: 1px solid #E0E0E0; /* Subtle border */
}
.saree-card:hover img {
  transform: scale(1.02);
}
.saree-card h3 {
  margin: 10px 0 8px;
  font-size: 1.4rem; /* Larger font */
  color: #7A4988; /* Headings/Main Accent */
}
.saree-card p {
  font-size: 1.15rem; /* Slightly larger text */
  font-weight: 500;
  color: #333333; /* Primary Text */
  margin-top: auto;
}

.load-more {
  text-align: center;
  margin: 40px;
}
.load-more button {
  padding: 15px 30px; /* Larger button */
  border: none;
  background-color: #7A4988; /* Headings/Main Accent for button */
  color: #FDFDFD; /* Artistic Background for text */
  font-size: 1.1rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.load-more button:hover {
  background-color: #A3D9CE; /* Highlight/Interactive for hover */
  color: #333333; /* Primary Text for text on hover */
  transform: translateY(-2px);
}

.featured-saree {
  text-align: center;
  margin: 70px auto;
  background-color: #ffffff; /* Clean white */
  padding: 40px; /* Increased padding */
  border-radius: 1rem;
  max-width: 1000px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.featured-saree h2 {
  color: #7A4988; /* Headings/Main Accent */
  margin-bottom: 20px;
  font-size: 2.8rem;
}
.featured-saree img {
  width: 100%;
  max-width: 500px; /* Larger image */
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
  margin: 25px auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: 1px solid #E0E0E0; /* Subtle border */
}

/* Account Page Specific Styles */
.account-section {
  padding: 3rem; /* More padding */
  max-width: 550px; /* Wider form */
  margin: 50px auto;
  background-color: #ffffff; /* Clean white */
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  color: #333333; /* Primary Text */
}

.account-section h2 {
  font-size: 2.5rem;
  color: #7A4988; /* Headings/Main Accent */
  margin-bottom: 1.5rem;
  font-family: 'Lora', serif;
}
.account-section p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: #555555; /* Darker secondary text */
}

.account-form {
  margin-top: 2rem;
  text-align: left;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: #333333; /* Primary Text */
  font-size: 1rem;
}

.form-input {
  width: 100%;
  padding: 0.9rem; /* Increased padding */
  border: 1px solid #E0E0E0; /* Subtle border */
  border-radius: 0.6rem; /* More rounded */
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #FDFDFD; /* Artistic Background */
  color: #333333;
}
.form-input:focus {
  outline: none;
  border-color: #A3D9CE; /* Highlight/Interactive for focus border */
  box-shadow: 0 0 0 3px rgba(163, 217, 206, 0.3); /* Subtle glow */
}

.form-button {
  width: 100%;
  background-color: #D2B2DD; /* Secondary Accent/Buttons */
  color: #333333; /* Primary Text on button */
  padding: 0.9rem 1.5rem; /* Increased padding */
  font-weight: 600;
  border: none;
  border-radius: 0.6rem;
  cursor: pointer;
  font-size: 1.15rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.form-button:hover {
  background-color: #7A4988; /* Headings/Main Accent for hover */
  color: #FDFDFD; /* Artistic Background for text on hover */
  transform: translateY(-2px);
}

.account-links {
  margin-top: 1.5rem;
  font-size: 0.95rem;
}
.account-links a {
  color: #A3D9CE; /* Highlight/Interactive for links */
  text-decoration: none;
  transition: color 0.3s ease;
}
.account-links a:hover {
  text-decoration: underline;
  color: #7A4988; /* Headings/Main Accent for hover */
}

/* Contact Page Specific Styles */
.contact-section {
  padding: 50px 30px;
  max-width: 1000px;
  margin: 50px auto;
  text-align: center;
  background-color: #ffffff; /* Clean white */
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  color: #333333; /* Primary Text */
}
.contact-section h2 {
  color: #7A4988; /* Headings/Main Accent */
  margin-bottom: 1.5rem;
  font-size: 2.8rem;
}
.contact-intro-text {
  font-size: 1.15rem;
  margin-bottom: 40px;
  color: #555555; /* Darker secondary text */
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Adjusted minmax */
  gap: 30px;
  margin-bottom: 50px;
  text-align: left;
}

.contact-info-card {
  background-color: #FDFDFD; /* Artistic Background */
  padding: 30px; /* Increased padding */
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.contact-info-card h3 {
  font-size: 1.5rem;
  color: #7A4988; /* Headings/Main Accent */
  margin-bottom: 15px;
}
.contact-info-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333333; /* Primary Text */
  margin-bottom: 10px;
  text-align: left;
}
.contact-info-card p i {
  margin-right: 12px; /* Increased margin */
  color: #A3D9CE; /* Highlight/Interactive for icons */
  font-size: 1.2em;
}
.contact-info-card a {
  color: #A3D9CE; /* Highlight/Interactive for links */
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-info-card a:hover {
  text-decoration: underline;
  color: #7A4988; /* Headings/Main Accent for hover */
}

.contact-map iframe {
  width: 100%;
  height: 300px; /* Taller map */
  border-radius: 0.75rem;
  margin-top: 20px;
  border: 1px solid #E0E0E0; /* Subtle border */
}

.contact-form-container {
  background-color: #FDFDFD; /* Artistic Background */
  padding: 40px; /* Increased padding */
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
}
.contact-form-container h3 {
  font-size: 2.2rem;
  color: #7A4988; /* Headings/Main Accent */
  margin-bottom: 25px;
  text-align: center;
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 10px;
  color: #333333; /* Primary Text */
  font-size: 1.05rem;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #E0E0E0; /* Subtle border */
  border-radius: 0.6rem;
  font-size: 1rem;
  font-family: 'Source Sans Pro', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #ffffff; /* Clean white */
  color: #333333;
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px; /* Increased min-height */
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #A3D9CE; /* Highlight/Interactive for focus border */
  box-shadow: 0 0 0 3px rgba(163, 217, 206, 0.3);
}
.contact-form .form-button {
  width: auto;
  padding: 12px 30px; /* Larger button */
  font-size: 1.1rem;
  display: block;
  margin: 30px auto 0 auto;
  background-color: #D2B2DD; /* Secondary Accent/Buttons */
  color: #333333; /* Primary Text on button */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.contact-form .form-button:hover {
  background-color: #7A4988; /* Headings/Main Accent for hover */
  color: #FDFDFD; /* Artistic Background for text on hover */
}


/* Blog Page Specific Styles */
.blog-section {
  padding: 50px 30px;
  max-width: 1200px;
  margin: 50px auto;
  text-align: center;
  background-color: #ffffff; /* Clean white */
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  color: #333333; /* Primary Text */
}
.blog-section h2 {
  color: #7A4988; /* Headings/Main Accent */
  margin-bottom: 1.5rem;
  font-size: 2.8rem;
}
.blog-intro-text {
  font-size: 1.15rem;
  margin-bottom: 40px;
  color: #555555; /* Darker secondary text */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjusted minmax */
  gap: 30px;
  padding: 20px 0;
  justify-content: center;
}

.blog-post-card {
  background-color: #FDFDFD; /* Artistic Background */
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-post-card img {
  width: 100%;
  height: 220px; /* Fixed height for blog images */
  object-fit: cover;
  border-bottom: 1px solid #E0E0E0; /* Subtle border */
  transition: transform 0.3s ease;
}
.blog-post-card img:hover {
  transform: scale(1.02);
}

.blog-post-content {
  padding: 20px 25px; /* Increased padding */
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.blog-post-content h3 {
  font-size: 1.5rem;
  color: #7A4988; /* Headings/Main Accent */
  margin-bottom: 10px;
  font-family: 'Lora', serif;
  line-height: 1.3;
}
.blog-post-content .blog-date {
  font-size: 0.95rem;
  color: #555555; /* Darker secondary text */
  margin-bottom: 15px;
  text-align: left;
}
.blog-post-content .blog-snippet {
  font-size: 1.05rem;
  color: #333333; /* Primary Text */
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
}
.blog-post-content .blog-read-more {
  display: inline-block;
  margin-top: auto;
  color: #A3D9CE; /* Highlight/Interactive for links */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 1rem;
}
.blog-post-content .blog-read-more:hover {
  color: #7A4988; /* Headings/Main Accent for hover */
  text-decoration: underline;
}
.blog-post-content .blog-read-more i {
  margin-left: 8px; /* Increased margin */
}


/* --- Responsive Media Queries --- */

/* For screens up to 1024px (Tablets, smaller desktops) */
@media (max-width: 1024px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .hero {
    height: 70vh;
  }
  .hero .content {
    bottom: 5rem;
    padding: 2rem 2.5rem;
  }
  .hero .content h2 {
    font-size: 2.5rem;
  }
  .hero .content p {
    font-size: 1rem;
  }

  section {
    padding: 50px 30px;
  }
  section h2 {
    font-size: 2.5rem;
  }
  section p {
    font-size: 1rem;
  }

  .category-grid {
    padding: 4rem 2rem;
    gap: 2rem;
  }
  .category-item img {
    max-width: 160px;
  }
  .category-item p {
    font-size: 1.05rem;
  }

  .testimonial-container {
    padding: 20px;
    flex: 1 1 calc(100% - 25px); /* Adjusted for better stacking on some tablets */
    max-width: calc(100% - 25px);
  }

  .gallery-filters button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .gallery-item-card {
    min-height: 320px;
    padding: 15px;
  }
  .gallery-item-card img {
    height: 180px;
  }

  .product-card {
    min-height: 350px;
    padding: 15px;
  }
  .product-card img {
    height: 200px;
  }

  /* Collection specific adjustments for tablet */
  .saree-grid {
    gap: 25px;
    padding: 15px;
  }
  .saree-card {
    min-height: 370px;
    padding: 15px;
  }
  .saree-card img {
    height: 220px;
  }
  .saree-card h3 {
    font-size: 1.3rem;
  }

  /* Account page adjustments */
  .account-section {
    padding: 2.5rem;
  }
  .account-section h2 {
    font-size: 2.2rem;
  }
  .form-input {
    padding: 0.8rem;
  }
  .form-button {
    padding: 0.8rem 1.2rem;
    font-size: 1.05rem;
  }

  /* Contact page adjustments */
  .contact-section {
    padding: 40px 25px;
  }
  .contact-grid {
    gap: 25px;
  }
  .contact-info-card {
    padding: 25px;
  }
  .contact-info-card h3 {
    font-size: 1.4rem;
  }
  .contact-form-container {
    padding: 30px;
  }
  .contact-form-container h3 {
    font-size: 2rem;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 10px;
  }

  /* Blog page adjustments */
  .blog-section {
    padding: 40px 25px;
  }
  .blog-grid {
    gap: 25px;
  }
  .blog-post-card img {
    height: 200px;
  }
  .blog-post-content h3 {
    font-size: 1.4rem;
  }
  .blog-post-content .blog-snippet {
    font-size: 1rem;
  }
}

/* For screens up to 768px (Mobile phones, small tablets) */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none; /* Hidden by default for mobile */
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #D2B2DD; /* Secondary Accent/Buttons - Muted Lavender for mobile menu, fully opaque */
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    z-index: 998;
    padding: 1rem 0;
    text-align: center;
    gap: 0; /* Remove gap for vertical list */
  }

  .nav-links.show {
    display: flex !important; /* Shown when menu-toggle is active */
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-links li a {
    padding: 10px 20px; /* Add padding for touch targets */
    width: 100%;
    box-sizing: border-box;
  }
  .nav-links li a::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .nav-links li a:hover::after {
    width: 80%; /* Shorter line for mobile hover */
  }

  nav {
    padding: 1rem 1rem;
  }

  .nav-logo-image {
    max-height: 50px;
  }

  .hero {
    height: 55vh;
  }

  .hero .content {
    padding: 1.5rem;
    bottom: 2rem;
    width: 95%;
  }
  .hero .content h2 {
    font-size: 2rem;
  }
  .hero .content p {
    font-size: 0.95rem;
    letter-spacing: 2px;
  }
  .hero .content button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  section {
    padding: 30px 15px;
  }

  section h2 {
    font-size: 2rem;
  }
  section p {
    font-size: 1rem;
  }

  .category-grid {
    grid-template-columns: 1fr; /* Force single column on smaller phones */
    gap: 1.5rem;
    padding: 3rem 1rem;
  }
  .category-item img {
    max-width: 150px;
  }

  .testimonial-row {
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-container {
    flex-direction: column;
    text-align: center;
    padding: 15px;
    min-width: unset;
    max-width: 95%;
    margin: 0 auto;
  }
  .testimonial-container img {
    margin: 0 auto 15px auto;
  }
  .testimonial-text {
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr; /* Force single column on smaller phones */
    gap: 15px;
  }
  .gallery-item-card {
    min-height: 280px;
    padding: 15px;
  }
  .gallery-item-card img {
    height: 160px;
  }
  .gallery-item-card h4 {
    font-size: 1.2rem;
  }

  .product-card {
    flex-basis: 95%;
    max-width: 95%;
    min-width: unset;
    min-height: 320px;
  }
  .product-card img {
    height: 180px;
  }

  /* Collection specific adjustments for mobile */
  .saree-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 10px;
  }
  .saree-card {
    min-height: 320px;
    padding: 15px;
  }
  .saree-card img {
    height: 200px;
  }
  .saree-card h3 {
    font-size: 1.2rem;
  }
  .filters {
    padding: 0 10px;
  }
  .filters button {
    font-size: 0.9rem;
    padding: 10px 18px;
  }
  .featured-saree {
    margin: 50px 15px;
    padding: 25px;
  }
  .featured-saree img {
    max-width: 300px;
  }

  /* Account page adjustments */
  .account-section {
    padding: 2rem;
    margin: 30px auto;
  }
  .account-section h2 {
    font-size: 2rem;
  }

  /* Contact page adjustments */
  .contact-section {
    padding: 30px 20px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-info-card {
    padding: 20px;
  }
  .contact-info-card h3 {
    font-size: 1.3rem;
  }
  .contact-info-card p {
    font-size: 0.95rem;
  }
  .contact-form-container {
    padding: 25px;
  }
  .contact-form-container h3 {
    font-size: 1.8rem;
  }
  .contact-form label {
    font-size: 1rem;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 10px;
    font-size: 1rem;
  }
  .contact-form .form-button {
    padding: 10px 20px;
    font-size: 1rem;
  }

  /* Blog page adjustments */
  .blog-section {
    padding: 30px 20px;
  }
  .blog-intro-text {
    font-size: 1.05rem;
    margin-bottom: 30px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .blog-post-card img {
    height: 180px;
  }
  .blog-post-content {
    padding: 15px 20px;
  }
  .blog-post-content h3 {
    font-size: 1.3rem;
  }
  .blog-post-content .blog-date,
  .blog-post-content .blog-snippet,
  .blog-post-content .blog-read-more {
    font-size: 0.9rem;
  }
}

/* New Media Query for Larger Screens (Overriding mobile styles for nav) */
@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    width: auto;
    background-color: transparent; /* No background needed, parent nav has solid color */
    box-shadow: none;
    z-index: auto;
    padding: 0;
    gap: 2rem;
  }

  .nav-links li a {
    padding: 0;
  }
  .nav-links li a::after {
    left: 0;
    transform: none;
  }
}

/* Smallest mobile screens */
@media (max-width: 480px) {
  .hero {
    height: 45vh;
  }
  .hero .content {
    font-size: 0.9rem;
    padding: 1rem;
    bottom: 1.5rem;
  }
  .hero .content h2 {
    font-size: 1.8rem;
  }
  .category-grid {
    padding: 2.5rem 0.5rem;
  }
  .category-item {
    width: 95%;
    margin: 0 auto;
    padding: 15px;
  }
  .category-item img {
    max-width: 120px;
  }
  .category-item p {
    font-size: 1rem;
  }

  .gallery-grid {
    gap: 10px;
  }
  .gallery-item-card {
    width: 95%;
    margin: 0 auto;
    min-height: 250px;
    padding: 10px;
  }
  .gallery-item-card img {
    height: 140px;
  }

  .product-card {
    width: 95%;
    margin: 0 auto;
    min-height: 280px;
  }
  .product-card img {
    height: 160px;
  }

  .testimonials-section {
    padding: 20px 10px;
  }
  .testimonial-container {
    padding: 10px;
  }
  .testimonial-container img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }
  .testimonial-text h4 {
    font-size: 1.1rem;
  }
  .testimonial-text p {
    font-size: 0.9rem;
  }

  .map-section {
    padding: 15px;
  }
  .newsletter {
    padding: 25px 15px;
  }
  .newsletter h2 {
    font-size: 2rem;
  }
  .newsletter p {
    font-size: 1rem;
  }
  .newsletter input[type="email"] {
    padding: 10px;
    font-size: 0.95rem;
  }
  .newsletter button {
    padding: 10px 20px;
    font-size: 1rem;
  }

  /* Collection specific adjustments for very small screens */
  .saree-card {
    padding: 10px;
    min-height: 290px;
  }
  .saree-card img {
    height: 180px;
  }
  .saree-card h3 {
    font-size: 1.1rem;
  }
  .saree-card p {
    font-size: 1rem;
  }
  .filters button {
    margin: 3px;
    padding: 8px 15px;
    font-size: 0.85rem;
  }
  .featured-saree h2 {
    font-size: 2.2rem;
  }
  .featured-saree img {
    max-width: 250px;
  }

  /* Account page adjustments */
  .account-section {
    padding: 1.5rem;
  }
  .form-group {
    margin-bottom: 1rem;
  }
  .form-label {
    font-size: 0.95rem;
  }
  .form-input {
    padding: 0.7rem;
    font-size: 0.95rem;
  }
  .form-button {
    padding: 0.7rem 1rem;
    font-size: 1.05rem;
  }
  .account-links {
    font-size: 0.9rem;
  }

  /* Contact page adjustments */
  .contact-section {
    padding: 20px 15px;
  }
  .contact-intro-text {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .contact-info-card {
    padding: 15px;
  }
  .contact-info-card h3 {
    font-size: 1.2rem;
  }
  .contact-info-card p {
    font-size: 0.95rem;
  }
  .contact-form-container {
    padding: 20px;
  }
  .contact-form-container h3 {
    font-size: 1.5rem;
  }
  .contact-form label {
    font-size: 0.95rem;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 9px;
    font-size: 0.95rem;
  }
  .contact-form .form-button {
    padding: 9px 20px;
    font-size: 1rem;
  }

  /* Blog page adjustments */
  .blog-section {
    padding: 20px 15px;
  }
  .blog-intro-text {
    font-size: 1.05rem;
    margin-bottom: 25px;
  }
  .blog-grid {
    gap: 15px;
  }
  .blog-post-card img {
    height: 160px;
  }
  .blog-post-content {
    padding: 15px 15px;
  }
  .blog-post-content h3 {
    font-size: 1.2rem;
  }
  .blog-post-content .blog-date,
  .blog-post-content .blog-snippet,
  .blog-post-content .blog-read-more {
    font-size: 0.85rem;
  }
}
