/* Custom CSS for NEW RAYYAN JEWELLERS Jewelry */

:root {
  --primary-gold: #d4af37;
  --dark-gold: #b8941f;
  --light-gold: #f4e4bc;
  --dark-bg: #1a1a1a;
  --light-bg: #f8f9fa;
  --text-dark: #333;
  --text-light: #666;
}

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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), var(--dark-gold));
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Navigation */
.luxury-nav {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.luxury-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-gold) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 1rem;
  position: relative;
  transition: all 0.3s ease;
}

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

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}

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

/* Buttons */
.btn-luxury {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  border: none;
  color: #fff;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-luxury:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
  color: #fff;
}

.btn-outline-luxury {
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  background: transparent;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-outline-luxury:hover {
  background: var(--primary-gold);
  color: #fff;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("/placeholder.svg?height=1080&width=1920");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.6));
}

.hero-title {
  font-size: 4rem;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  margin-top: 2rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--primary-gold);
  border-bottom: 2px solid var(--primary-gold);
  transform: rotate(45deg);
}

/* Animations */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}
.delay-2 {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Collection Cards */
.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.collection-image {
  position: relative;
  overflow: hidden;
}

.collection-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.collection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.collection-overlay h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.collection-overlay p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

/* Feature Cards */
.feature-card {
  padding: 2rem;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #fff;
  font-size: 2rem;
}

.feature-card h5 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, var(--dark-bg), #2a2a2a);
  position: relative;
}

.newsletter-form .input-group {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form .form-control {
  border: none;
  padding: 15px 20px;
  border-radius: 50px 0 0 50px;
  font-size: 1rem;
}

.newsletter-form .btn {
  border-radius: 0 50px 50px 0;
  padding: 15px 30px;
}

/* About Page Styles */
.about-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.about-image img {
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Service Cards */
.service-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: #fff;
  font-size: 2.5rem;
}

.service-card h4 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.service-features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: bold;
}

/* Contact Section */
.contact-info {
  background: #fff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-details h6 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
}

.contact-details p {
  margin: 0;
  color: var(--text-light);
}

.contact-form-container {
  background: #fff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* Map Section */
.map-section {
  height: 400px;
  position: relative;
}

.map-container {
  height: 100%;
  position: relative;
}

.map-placeholder {
  height: 100%;
  background: linear-gradient(135deg, #e9ecef, #dee2e6);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-overlay {
  background: rgba(26, 26, 26, 0.8);
  color: #fff;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
}

.map-info h5 {
  margin-bottom: 1rem;
  color: var(--primary-gold);
}

/* Testimonials Section */
.testimonials-section {
  position: relative;
}

.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

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

.testimonial-content {
  margin-bottom: 2rem;
}

.stars {
  color: var(--primary-gold);
  font-size: 1.2rem;
}

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

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-gold);
}

.author-info h6 {
  margin: 0;
  color: var(--text-dark);
  font-weight: 600;
}

.author-info span {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Featured Products */
.featured-products {
  background: #fff;
}

.product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

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

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-gold);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.product-info {
  padding: 1.5rem;
  text-align: center;
}

.product-info h5 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin: 0;
}

/* Enhanced Map Section */
.map-section {
  background: #f8f9fa;
}

.map-container {
  height: 500px;
}

.map-container iframe {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-info-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.map-info-card h4 {
  color: var(--text-dark);
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--light-gold);
  padding-bottom: 1rem;
}

.map-info-card h6 {
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-detail {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  color: var(--text-light);
}

.contact-detail i {
  width: 20px;
  color: var(--primary-gold);
  margin-right: 0.5rem;
}

.hours-info {
  margin: 2rem 0;
}

.hours-grid {
  margin-top: 1rem;
}

.day-hours {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.day {
  font-weight: 500;
  color: var(--text-dark);
}

.time {
  color: var(--text-light);
}

/* Team Section */
.team-section {
  background: var(--light-bg);
}

.team-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

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

.team-image {
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.team-info {
  padding: 2rem;
  text-align: center;
}

.team-info h5 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.team-role {
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-bio {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* History Section */
.history-section {
  background: #fff;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-gold), var(--dark-gold));
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 2rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 0;
  width: 15px;
  height: 15px;
  background: var(--primary-gold);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--primary-gold);
}

.timeline-year {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

.timeline-content h5 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.history-images img:first-child {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.history-images img:last-child {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Footer */
.footer {
  background: var(--dark-bg);
  color: #fff;
}

.footer-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--primary-gold);
  color: #fff;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--dark-gold);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

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

  .hero-buttons .btn {
    display: block;
    margin: 0.5rem 0;
    width: 100%;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    margin: 0 auto 1rem;
  }

  .map-section .row {
    flex-direction: column-reverse;
  }

  .map-info-card {
    height: auto;
    margin-bottom: 2rem;
  }

  .timeline {
    padding-left: 1rem;
  }

  .timeline-item {
    padding-left: 1.5rem;
  }

  .timeline-item::before {
    left: -1.75rem;
  }

  .testimonial-author {
    flex-direction: column;
    gap: 0.5rem;
  }

  .day-hours {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .feature-card,
  .service-card,
  .contact-info,
  .contact-form-container {
    padding: 1.5rem;
  }

  .newsletter-form .input-group {
    flex-direction: column;
  }

  .newsletter-form .form-control,
  .newsletter-form .btn {
    border-radius: 50px;
    margin: 0.25rem 0;
  }

  .product-info {
    padding: 1rem;
  }

  .team-info {
    padding: 1.5rem;
  }

  .map-info-card {
    padding: 1.5rem;
  }

  .history-images img {
    margin-bottom: 1rem;
  }
}

/* Bangle Image Styles */
.bangle-image {
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.bangle-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  transition: left 0.5s ease;
}

.bangle-image:hover::before {
  left: 100%;
}

.bangle-image:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Modal Styles */
.modal-content {
  border: none;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: #fff;
  border-bottom: none;
  border-radius: 15px 15px 0 0;
}

.modal-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #fff;
}

.btn-close {
  filter: invert(1);
  opacity: 0.8;
}

.btn-close:hover {
  opacity: 1;
}

.modal-body {
  padding: 2rem;
}

.text-gold {
  color: var(--primary-gold);
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.bangle-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.bangle-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.bangle-features li:last-child {
  border-bottom: none;
}

.bangle-features li i {
  color: var(--primary-gold);
  width: 20px;
}

.price-info {
  margin-top: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 10px;
  border-left: 4px solid var(--primary-gold);
}

.price {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  font-family: "Arial", "Helvetica", sans-serif;
}

.price-note {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.modal-footer {
  border-top: 1px solid #f0f0f0;
  padding: 1.5rem 2rem;
}

.modal-footer .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.modal-footer .btn-secondary {
  background: #6c757d;
  border: none;
  color: #fff;
}

.modal-footer .btn-secondary:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

/* Enhanced Product Card Styles for Bangles */
.product-card:hover .bangle-image {
  transform: scale(1.05);
}

.product-info h5 {
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-price {
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 1.1rem;
  font-family: "Arial", "Helvetica", sans-serif;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-dialog {
    margin: 1rem;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
  
  .modal-footer {
    padding: 1rem 1.5rem;
  }
  
  .price {
    font-size: 1.3rem;
  }
}

/* Modal Animation Styles */
.modal-content {
  transition: all 0.3s ease;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
  transform: none;
}

/* Enhanced Bangle Image Hover Effects */
.bangle-image {
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.bangle-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  transition: left 0.5s ease;
}

.bangle-image:hover::before {
  left: 100%;
}

.bangle-image:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Product Card Enhancement for Bangles */
.product-card {
  transition: all 0.3s ease;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  transition: all 0.3s ease;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

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

/* Modal Backdrop Enhancement */
.modal-backdrop {
  background: rgba(0, 0, 0, 0.6);
}

.modal-backdrop.show {
  opacity: 1;
}
