/* ==============================
   Reset & Base Styles
============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  background: #f8f9fa;
  color: #333;
}

/* ==============================
   Header & Navigation
============================== */
header {
  background: linear-gradient(135deg, #4b2e2e 0%, #6d4c41 100%);
  color: white;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  font-size: 24px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.search-container {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  gap: 5px;
  position: relative;
}

#searchInput {
  background: transparent;
  border: none;
  outline: none;
  color: white;
  padding: 8px 12px;
  width: 250px;
  font-size: 14px;
  position: relative;
  z-index: 10;
}

#searchInput::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  max-height: 400px;
  overflow-y: auto;
  display: none;
  z-index: 1001;
  margin-top: 8px;
}

.search-dropdown.show {
  display: block;
}

.search-dropdown-item {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-dropdown-item:last-child {
  border-bottom: none;
}

.search-dropdown-item:hover {
  background: #f8f9fa;
}

.search-dropdown-item-icon {
  font-size: 20px;
  min-width: 24px;
}

.search-dropdown-item-content {
  flex: 1;
}

.search-dropdown-item-title {
  color: #4b2e2e;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}

.search-dropdown-item-category {
  color: #666;
  font-size: 12px;
}

.search-dropdown-no-results {
  padding: 20px;
  text-align: center;
  color: #666;
  font-style: italic;
}

.search-highlight {
  background: #fff3cd;
  font-weight: 600;
  padding: 1px 2px;
  border-radius: 2px;
}

#searchBtn, #cameraBtn {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  padding: 5px 8px;
  margin: 0;
  font-size: 18px;
  transition: all 0.3s ease;
}

#cameraBtn {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  padding-right: 12px;
}

#searchBtn:hover, #cameraBtn:hover {
  background: transparent;
  color: #f4c542;
  transform: scale(1.1);
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f4c542;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #f4c542;
}

/* Desktop nav display */
@media (min-width: 769px) {
  nav {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  
  nav a::after {
    bottom: -5px;
  }
}

/* ==============================
   Hamburger Menu
============================== */
.menu-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
  transition: all 0.3s ease;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.menu-toggle:hover span {
  background: #f4c542;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

/* ==============================
   Hero Slider
============================== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideShow 20s infinite;
}

/* Hero slide images from local folder 'images/' */
.hero-slide:nth-child(1) { 
  background-image: url("../images/gallery-1.jpg"); 
  animation-delay: 0s; 
}
.hero-slide:nth-child(2) { 
  background-image: url("../images/gallery-3.jpg"); 
  animation-delay: 5s; 
}
.hero-slide:nth-child(3) { 
  background-image: url("../images/gallery-4.jpg"); 
  animation-delay: 10s; 
}
.hero-slide:nth-child(4) { 
  background-image: url("../images/hero-interior.jpg"); 
  animation-delay: 15s;
}

/* Fade animation */
@keyframes slideShow {
  0% {opacity: 0;}
  5% {opacity: 1;}
  25% {opacity: 1;}
  30% {opacity: 0;}
  100% {opacity: 0;}
}

/* Overlay for better text visibility */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero-content h2 {
  font-size: 56px;
  font-weight: bold;
  color: white;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 24px;
  color: white;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-btn {
  display: inline-block;
  padding: 15px 40px;
  background: #f4c542;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(244, 197, 66, 0.4);
}

.hero-btn:hover {
  background: #ffdb58;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 197, 66, 0.6);
}

/* ==============================
   Trust Badges Section
============================== */
.trust-section {
  background: white;
  padding: 60px 50px;
  border-bottom: 1px solid #e0e0e0;
}

.trust-badges {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.badge {
  text-align: center;
  flex: 1;
  min-width: 200px;
  padding: 20px;
}

.badge-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 15px;
}

.badge h4 {
  color: #4b2e2e;
  font-size: 20px;
  margin-bottom: 10px;
}

.badge p {
  color: #666;
  font-size: 14px;
}

/* ==============================
   Sections & Cards
============================== */
section {
  padding: 80px 50px;
  text-align: center;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 42px;
  color: #4b2e2e;
  margin-bottom: 15px;
  font-weight: bold;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
}

.services, .gallery {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  width: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  background: white;
  transition: all 0.3s ease;
  text-align: left;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-content {
  padding: 25px;
}

.card-content h3 {
  color: #4b2e2e;
  font-size: 24px;
  margin-bottom: 10px;
}

.card-content p {
  color: #666;
  font-size: 16px;
  margin-bottom: 15px;
}

.card-link {
  color: #f4c542;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

.card-link:hover {
  color: #4b2e2e;
}

.section-cta {
  margin-top: 40px;
}

.btn-primary {
  display: inline-block;
  padding: 15px 40px;
  background: #4b2e2e;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(75, 46, 46, 0.3);
}

.btn-primary:hover {
  background: #6d4c41;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(75, 46, 46, 0.4);
}

/* Gallery Section Specific */
.gallery-section {
  background: white;
}

/* ==============================
   Buttons
============================== */
button {
  padding: 12px 25px;
  background: #4b2e2e;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
}

button:hover {
  background: #6d4c41;
  transform: translateY(-2px);
}

/* ==============================
   Testimonials Section
============================== */
.testimonials-section {
  background: #f8f9fa;
  padding: 80px 50px;
}

.testimonials {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  text-align: left;
}

.stars {
  color: #f4c542;
  font-size: 20px;
  margin-bottom: 15px;
}

.testimonial-text {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  font-style: italic;
}

.customer-name {
  color: #4b2e2e;
  font-weight: bold;
  font-size: 16px;
}

/* ==============================
   Contact Section
============================== */
.contact-section {
  background: white;
  padding: 80px 50px;
}

.contact-info {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1000px;
  margin: 40px auto;
}

.contact-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  flex: 1;
  min-width: 250px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: #4b2e2e;
  color: white;
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 15px;
}

.contact-card h4 {
  color: #4b2e2e;
  font-size: 20px;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.contact-card:hover h4 {
  color: #f4c542;
}

.contact-card p {
  color: #666;
  font-size: 16px;
  transition: color 0.3s ease;
  word-wrap: break-word;
}

.contact-card:hover p {
  color: white;
}

.contact-link {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: 13px !important;
  font-style: italic;
  margin-top: 8px !important;
  opacity: 0.85;
}

.contact-card:hover .contact-note {
  opacity: 1;
  color: #f4c542 !important;
}

.contact-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.cta-btn {
  display: inline-block;
  padding: 15px 35px;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.call-btn {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.call-btn:hover {
  background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
}

.email-btn {
  background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
}

.email-btn:hover {
  background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #1ebe5d 100%);
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #1ebe5d 0%, #17a04b 100%);
}

/* ==============================
   FAQ Section
============================== */
.faq-section {
  background: #f8f9fa;
  padding: 80px 50px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: white;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transform: translateX(5px);
}

.faq-item h4 {
  color: #4b2e2e;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: bold;
}

.faq-item p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}

/* ==============================
   Footer
============================== */
footer {
  background: #2c1e1e;
  color: white;
  text-align: center;
  padding: 30px;
  font-size: 16px;
}

footer p {
  margin: 0;
}

/* ==============================
   Floating Action Buttons
============================== */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 180px;
}

.float-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

.float-icon-svg {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}

.float-text {
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.call-float {
  background: linear-gradient(135deg, #4285F4 0%, #3367D6 100%);
}

.call-float:hover {
  background: linear-gradient(135deg, #3367D6 0%, #2952B3 100%);
}

/* Circle button style for call button */
.circle-btn {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  padding: 0;
  gap: 0;
}

.circle-btn .float-icon-svg {
  width: 28px;
  height: 28px;
}

.circle-btn .float-text {
  display: none;
}

.whatsapp-float {
  background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
}

.whatsapp-float:hover {
  background: linear-gradient(135deg, #1DA851 0%, #128C7E 100%);
}

.wishlist-float {
  background: linear-gradient(135deg, #ff4d4d 0%, #cc0000 100%);
  border: none;
  position: relative;
}

.wishlist-float:hover {
  background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
}

.cart-float {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  border: none;
  position: relative;
}

.cart-float:hover {
  background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);
}

.float-btn .float-icon {
  font-size: 28px;
  display: block;
}

.float-btn .badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #f4c542;
  color: #4b2e2e;
  border-radius: 50%;
  min-width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  padding: 2px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Floating button animation */
@keyframes float-pulse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.02);
  }
}

.float-btn {
  animation: float-pulse 3s ease-in-out infinite;
}

.float-btn:hover {
  animation: none;
}

/* ==============================
   Search Results Section
============================== */
.search-results-section {
  background: white;
  border-top: 3px solid #4b2e2e;
  border-bottom: 3px solid #4b2e2e;
  padding: 60px 50px;
  text-align: center;
  min-height: 400px;
}

.search-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.search-results-header h2 {
  color: #4b2e2e;
  font-size: 36px;
}

.search-query {
  color: #f4c542;
  font-size: 20px;
  margin-bottom: 40px;
  font-weight: bold;
}

.search-results-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.clear-search-btn {
  background: #f4c542;
  color: #333;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.clear-search-btn:hover {
  background: #ffdb58;
  transform: translateY(-2px);
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}

.no-results p:first-child {
  font-size: 24px;
  color: #4b2e2e;
  margin-bottom: 20px;
  font-weight: bold;
}

.no-results p:last-child {
  font-size: 16px;
  color: #666;
}

.search-results-container .card mark {
  background-color: #f4c542;
  color: #333;
  padding: 3px 6px;
  border-radius: 4px;
  font-weight: bold;
}

/* ==============================
   Gallery Grid
============================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  padding: 40px 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item h3 {
  color: #4b2e2e;
  margin-bottom: 15px;
  font-size: 18px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item img {
  width: 100%;
  max-width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto;
  display: block;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  border-color: #4b2e2e;
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(75, 46, 46, 0.9);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-weight: 600;
  font-size: 16px;
}

.gallery-item:hover .image-overlay {
  opacity: 1;
}

.product-data {
  display: none;
}

/* ==============================
   Product Cards (Services Page)
============================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  padding: 40px 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.product-card h3 {
  color: #4b2e2e;
  margin-bottom: 15px;
  font-size: 20px;
}

.product-card img {
  width: 100%;
  max-width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin: 15px auto;
  display: block;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.product-card:hover img {
  border-color: #4b2e2e;
  transform: scale(1.05);
}

.product-card button {
  background: linear-gradient(135deg, #4b2e2e 0%, #6d4c41 100%);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.product-card button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(75, 46, 46, 0.3);
}

.product-card .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(75, 46, 46, 0.9);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
}

.product-card:hover .image-overlay {
  opacity: 1;
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 30px 20px;
  }
  
  .product-card {
    padding: 15px;
  }
  
  .product-card h3 {
    font-size: 18px;
  }
  
  .product-card img {
    max-width: 150px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px 15px;
  }
  
  .product-card img {
    max-width: 180px;
    height: 180px;
  }
}

/* ==============================
   Product Modal
============================== */
.product-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.8);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 0;
  border-radius: 15px;
  max-width: 1100px;
  width: 90%;
  box-shadow: 0 10px 50px rgba(0,0,0,0.3);
  animation: slideDown 0.4s ease;
  position: relative;
  max-height: 90vh;
  overflow: auto;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  color: #aaa;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
  transition: color 0.3s ease;
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.close-modal:hover,
.close-modal:focus {
  color: #4b2e2e;
}

.modal-body {
  display: flex;
  flex-direction: row;
  gap: 0;
}

.modal-image {
  flex: 1;
  min-width: 400px;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 15px 0 0 15px;
  overflow: hidden;
}

.modal-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 15px 0 0 15px;
  max-height: 600px;
}

.modal-details {
  flex: 1;
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-details h2 {
  color: #4b2e2e;
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 1.3;
}

.modal-category {
  color: #666;
  margin-bottom: 15px;
  font-size: 16px;
}

.modal-category strong {
  color: #4b2e2e;
}

.modal-category span {
  background: #f4c542;
  padding: 4px 12px;
  border-radius: 20px;
  color: #333;
  font-weight: bold;
  display: inline-block;
  margin-left: 5px;
}

.modal-description {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

.modal-price {
  color: #4b2e2e;
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: bold;
}

.modal-price span {
  color: #6d4c41;
}

.modal-details .whatsapp-btn {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(135deg, #25D366 0%, #1ebe5d 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  text-align: center;
  margin-top: 10px;
}

.modal-details .whatsapp-btn:hover {
  background: linear-gradient(135deg, #1ebe5d 0%, #17a04b 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ==============================
   Responsive Design
============================== */
@media (max-width: 768px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
    padding: 15px 20px;
  }
  
  header h1 {
    font-size: 18px;
  }

  .header-right {
    flex-direction: row;
    align-items: center;
    gap: 15px;
    width: auto;
  }

  .search-container {
    width: auto;
    min-width: 200px;
  }

  #searchInput {
    width: 150px;
    font-size: 13px;
  }
  
  /* Show hamburger menu */
  .menu-toggle {
    display: flex;
    order: 3;
  }

  /* Mobile navigation styles */
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #4b2e2e 0%, #2c1e1e 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
  }
  
  nav.active {
    right: 0;
  }

  nav a {
    margin: 0;
    padding: 15px 0;
    width: 100%;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }
  
  nav a:hover {
    padding-left: 10px;
    color: #f4c542;
  }
  
  .hero {
    height: 60vh;
  }
  
  .hero-content h2 {
    font-size: 36px;
  }
  
  .hero-content p {
    font-size: 18px;
  }
  
  .hero-btn {
    padding: 12px 30px;
    font-size: 16px;
  }
  
  section {
    padding: 50px 20px;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .trust-section {
    padding: 40px 20px;
  }
  
  .trust-badges {
    flex-direction: column;
  }
  
  .badge {
    min-width: 100%;
  }
  
  .card {
    width: 100%;
    max-width: 400px;
  }
  
  .testimonials {
    flex-direction: column;
    align-items: center;
  }
  
  .testimonial-card {
    max-width: 100%;
  }
  
  .contact-info {
    flex-direction: column;
  }
  
  .contact-card {
    min-width: 100%;
  }
  
  .contact-card p {
    font-size: 14px;
    word-break: break-all;
  }
  
  .contact-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 400px;
    text-align: center;
    font-size: 16px;
    padding: 12px 25px;
  }
  
  .search-results-section {
    padding: 40px 20px;
  }
  
  .search-results-header {
    flex-direction: column;
    text-align: center;
  }
  
  .search-results-header h2 {
    font-size: 28px;
  }
  
  .floating-buttons {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }
  
  .float-btn {
    padding: 12px 18px;
    font-size: 14px;
    min-width: 150px;
  }
  
  .circle-btn {
    width: 56px;
    height: 56px;
    min-width: 56px;
    padding: 0;
  }
  
  .circle-btn .float-icon-svg {
    width: 26px;
    height: 26px;
  }
  
  .float-icon-svg {
    width: 20px;
    height: 20px;
  }
  
  .float-text {
    font-size: 13px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 30px 20px;
  }
  
  .gallery-item {
    padding: 15px;
  }
  
  .gallery-item h3 {
    font-size: 16px;
    min-height: 40px;
  }
  
  .gallery-item img {
    max-width: 150px;
    height: 150px;
  }
  
  .modal-content {
    width: 95%;
    margin: 10% auto;
  }
  
  .modal-body {
    flex-direction: column;
  }
  
  .modal-image {
    min-width: 100%;
    max-width: 100%;
  }
  
  .modal-image img {
    border-radius: 15px 15px 0 0;
    max-height: 400px;
    object-fit: contain;
  }
  
  .modal-details {
    padding: 25px 20px;
  }
  
  .modal-details h2 {
    font-size: 22px;
  }
  
  .close-modal {
    right: 15px;
    top: 10px;
    width: 35px;
    height: 35px;
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 16px;
  }
  
  #searchInput {
    width: 120px;
    font-size: 12px;
  }
  
  nav {
    width: 250px;
    padding: 70px 20px 20px;
  }
  
  nav a {
    font-size: 16px;
    padding: 12px 0;
  }
  
  .hero-content h2 {
    font-size: 28px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .section-header h2 {
    font-size: 26px;
  }
  
  .badge-icon {
    font-size: 36px;
  }
  
  .badge h4 {
    font-size: 18px;
  }
  
  .header-icons {
    gap: 8px;
  }
  
  .icon-btn {
    padding: 6px 10px;
  }
  
  .icon-btn .icon {
    font-size: 18px;
  }
  
  .icon-btn .badge {
    min-width: 16px;
    height: 16px;
    font-size: 9px;
  }
  
  .side-panel {
    width: 90%;
    max-width: 400px;
  }
  
  .panel-header h3 {
    font-size: 18px;
  }
  
  .panel-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .item-image {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .item-details {
    width: 100%;
  }
  
  .cart-item-actions {
    width: 100%;
    justify-content: space-between;
    margin-top: 10px;
  }
}

/* ==============================
   Cart & Wishlist Icons
============================== */
.header-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 8px 15px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.icon-btn .icon {
  font-size: 20px;
  line-height: 1;
}

.icon-btn .badge {
  background: #ff3333;
  color: white;
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
}

/* ==============================
   Side Panels (Cart & Wishlist)
============================== */
.side-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 450px;
  max-width: 90vw;
  height: 100vh;
  background: white;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  z-index: 1002;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.side-panel.active {
  right: 0;
}

.panel-header {
  background: linear-gradient(135deg, #4b2e2e 0%, #6d4c41 100%);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-header h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

.close-panel {
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-panel:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.panel-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.panel-content::-webkit-scrollbar {
  width: 8px;
}

.panel-content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.panel-content::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.panel-content::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.empty-message {
  text-align: center;
  color: #999;
  padding: 40px 20px;
  font-size: 16px;
}

.panel-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-bottom: 1px solid #eee;
  transition: background 0.3s ease;
}

.panel-item:hover {
  background: #f9f9f9;
}

.item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.item-name {
  font-weight: 600;
  color: #333;
  font-size: 16px;
  margin: 0;
}

.item-category {
  color: #666;
  font-size: 13px;
}

.item-price {
  color: #4b2e2e;
  font-weight: 600;
  font-size: 15px;
}

.item-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.item-btn {
  padding: 6px 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.remove-btn {
  background: #ff4444;
  color: white;
}

.remove-btn:hover {
  background: #cc0000;
  transform: translateY(-2px);
}

.move-to-cart-btn {
  background: #4b2e2e;
  color: white;
}

.move-to-cart-btn:hover {
  background: #2c1e1e;
  transform: translateY(-2px);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0f0f0;
  border-radius: 5px;
  padding: 4px 8px;
}

.qty-btn {
  background: #4b2e2e;
  color: white;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.qty-btn:hover {
  background: #2c1e1e;
  transform: scale(1.1);
}

.qty-value {
  font-weight: 600;
  min-width: 30px;
  text-align: center;
  font-size: 14px;
}

.panel-footer {
  border-top: 2px solid #eee;
  padding: 20px;
  background: #f9f9f9;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.checkout-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.panel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.panel-overlay.active {
  display: block;
  opacity: 1;
}

/* ==============================
   Modal Action Buttons
============================== */
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.action-btn {
  flex: 1;
  min-width: 140px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.wishlist-modal-btn {
  background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.wishlist-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.cart-modal-btn {
  background: linear-gradient(135deg, #4b2e2e 0%, #6d4c41 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(75, 46, 46, 0.3);
}

.cart-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(75, 46, 46, 0.4);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ==============================
   Responsive Design - 480px
============================== */
@media (max-width: 480px) {
  .header-icons {
    gap: 8px;
  }
  
  .icon-btn {
    padding: 6px 10px;
  }
  
  .icon-btn .icon {
    font-size: 18px;
  }
  
  .icon-btn .badge {
    min-width: 16px;
    height: 16px;
    font-size: 9px;
  }
  
  .side-panel {
    width: 90%;
    max-width: 400px;
  }
  
  .panel-header h3 {
    font-size: 18px;
  }
  
  .panel-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .item-image {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .item-details {
    width: 100%;
  }
  
  .cart-item-actions {
    width: 100%;
    justify-content: space-between;
    margin-top: 10px;
  }
  
  .floating-buttons {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }
  
  .float-btn {
    padding: 10px 14px;
    font-size: 12px;
    min-width: 130px;
  }
  
  .circle-btn {
    width: 50px;
    height: 50px;
    min-width: 50px;
    padding: 0;
  }
  
  .circle-btn .float-icon-svg {
    width: 24px;
    height: 24px;
  }
  
  .float-icon-svg {
    width: 18px;
    height: 18px;
  }
  
  .float-text {
    font-size: 11px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px 15px;
  }
  
  .gallery-item h3 {
    font-size: 15px;
    min-height: 38px;
  }
  
  .gallery-item img {
    max-width: 180px;
    height: 180px;
  }
  
  .modal-content {
    margin: 5% auto;
  }
  
  .modal-details h2 {
    font-size: 20px;
  }
  
  .modal-details {
    padding: 20px 15px;
  }
  
  .modal-details .whatsapp-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* ==============================
   Customer Review System
============================== */
.customer-reviews-container {
  margin-top: 60px;
  padding-top: 40px;
}

.section-divider {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #e0e0e0 20%, #e0e0e0 80%, transparent);
  z-index: 0;
}

.section-divider h3 {
  display: inline-block;
  background: #f8f9fa;
  padding: 0 30px;
  font-size: 24px;
  color: #4b2e2e;
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.customer-reviews-section {
  background: white;
  padding: 60px 50px;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
  padding: 20px 0;
}

.review-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.review-card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  font-weight: 600;
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
}

.review-product {
  color: #4b2e2e;
  font-size: 13px;
  font-weight: 500;
  background: rgba(75, 46, 46, 0.1);
  padding: 3px 10px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 5px;
}

.review-date {
  font-size: 12px;
  color: #999;
}

.review-stars {
  font-size: 18px;
  color: #ffc107;
  letter-spacing: 2px;
}

.review-text-content {
  color: #555;
  line-height: 1.7;
  font-size: 15px;
  margin-top: 15px;
}

.review-media {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.review-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}

.review-photo {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #e0e0e0;
}

.review-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-color: #4b2e2e;
}

.review-video {
  width: 100%;
  max-height: 300px;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
}

.media-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #4b2e2e;
  font-weight: 500;
  margin-top: 10px;
  padding: 5px 10px;
  background: rgba(75, 46, 46, 0.1);
  border-radius: 12px;
  width: fit-content;
}

.reviews-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.pagination-btn {
  background: #4b2e2e;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
  background: #2c1e1e;
  transform: translateY(-2px);
}

.pagination-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.page-info {
  font-weight: 600;
  color: #333;
}

/* Review Modal */
.review-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
}

.review-modal-content {
  background: white;
  max-width: 600px;
  margin: 50px auto;
  padding: 40px;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-review-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 32px;
  color: #999;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-review-modal:hover {
  background: #f0f0f0;
  color: #333;
  transform: rotate(90deg);
}

.review-modal-content h2 {
  color: #4b2e2e;
  margin-bottom: 10px;
  font-size: 28px;
}

.modal-subtitle {
  color: #666;
  margin-bottom: 30px;
  font-size: 15px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.form-group input[type="text"],
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4b2e2e;
  box-shadow: 0 0 0 3px rgba(75, 46, 46, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.star-rating {
  display: flex;
  gap: 10px;
  font-size: 36px;
  cursor: pointer;
  margin-bottom: 10px;
}

.star-rating .star {
  color: #ddd;
  transition: all 0.2s ease;
  cursor: pointer;
  user-select: none;
}

.star-rating .star:hover,
.star-rating .star.active {
  color: #ffc107;
  transform: scale(1.2);
}

.rating-text {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.char-count {
  display: block;
  text-align: right;
  font-size: 12px;
  color: #999;
  margin-top: 5px;
}

.field-hint {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
  font-style: italic;
}

.form-group input[type="file"] {
  padding: 10px;
  border: 2px dashed #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  background: #f9f9f9;
  transition: all 0.3s ease;
}

.form-group input[type="file"]:hover {
  border-color: #4b2e2e;
  background: #fff;
}

.file-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  min-height: 0;
}

.file-preview:empty {
  display: none;
}

.preview-item {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e0e0e0;
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-remove {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(255, 0, 0, 0.8);
  color: white;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.preview-remove:hover {
  background: rgba(255, 0, 0, 1);
  transform: scale(1.1);
}

.form-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 30px;
}

.btn-secondary {
  background: #e0e0e0;
  color: #333;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #d0d0d0;
}

.review-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Responsive Review Styles */
@media (max-width: 768px) {
  .customer-reviews-section {
    padding: 40px 20px;
  }
  
  .customer-reviews-container {
    margin-top: 40px;
    padding-top: 30px;
  }
  
  .section-divider h3 {
    font-size: 20px;
    padding: 0 20px;
  }
  
  .reviews-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .review-card {
    padding: 20px;
  }
  
  .review-modal-content {
    margin: 20px;
    padding: 30px 20px;
  }
  
  .review-modal-content h2 {
    font-size: 24px;
  }
  
  .star-rating {
    font-size: 32px;
    gap: 8px;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .form-actions button {
    width: 100%;
  }
  
  .reviews-pagination {
    flex-direction: column;
    gap: 15px;
  }
  
  .pagination-btn {
    width: 100%;
    max-width: 200px;
  }
  
  .review-photos {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
  
  .review-photo {
    height: 100px;
  }
}

/* Media Lightbox */
.media-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10001;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.media-lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.close-lightbox {
  position: absolute;
  top: -40px;
  right: 0;
  background: white;
  color: #333;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-lightbox:hover {
  background: #f0f0f0;
  transform: rotate(90deg);
}