/* General Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Body background & text */
body {
  background: #fff0f5; /* very light pink */
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

/* Header/logo */
header {
  text-align: center;
  margin-bottom: 30px;
}

header h1 {
  font-size: 3rem;
  color: #c71585; /* medium violet-red */
  font-weight: 900;
  text-shadow: 1px 1px 3px #ffb6c1;
}

/* Product list grid */
#product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

/* Each product card */
.product-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(199, 21, 133, 0.15);
  text-align: center;
  transition: transform 0.3s ease;
}

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

/* Product image */
.product-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* Product name */
.product-name {
  font-size: 1.5rem;
  color: #c71585;
  margin-bottom: 10px;
  font-weight: 700;
}

/* Product price */
.product-price {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #8a2be2; /* blue violet */
  font-weight: 600;
}

/* Product rating stars */
.product-rating {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #ff69b4; /* hot pink */
}

/* Buttons container */
.product-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* Buttons styles */
.product-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

/* Add to cart button */
.add-to-cart {
  background-color: #ff69b4; /* hot pink */
  color: white;
}

.add-to-cart:hover {
  background-color: #c71585; /* medium violet-red */
}

/* Order now button */
.order-now {
  background-color: #8a2be2; /* blue violet */
  color: white;
}

.order-now:hover {
  background-color: #551a8b; /* darker blue violet */
}

/* Mailchimp subscribe form */
#mc_embed_signup {
  max-width: 600px;
  margin: 0 auto 50px;
  background: white;
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(199, 21, 133, 0.1);
}

#mc_embed_signup h2 {
  color: #c71585;
  text-align: center;
  margin-bottom: 15px;
}

/* Responsive text sizes */
@media (max-width: 600px) {
  header h1 {
    font-size: 2.2rem;
  }

  #product-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Container for all product items */
#product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

/* Single product card */
.product-item {
  width: 250px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 16px;
  text-align: center;
  transition: transform 0.3s ease;
}

.product-item:hover {
  transform: scale(1.03);
}

/* Product image */
.product-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

/* Product name */
.product-item h3 {
  font-size: 18px;
  color: #c71585;
  margin: 10px 0 5px;
}

/* Price */
.product-item p {
  font-size: 15px;
  color: #555;
}

/* Add to Cart button */
.product-item button {
  background-color: #c71585;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 25px;
  margin-top: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.product-item button:hover {
  background-color: #a0136c;
}

.product-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.product-buttons button {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.product-buttons button:first-child {
  background-color: #c71585;
  color: white;
}

.product-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.product-buttons button {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.product-buttons button:first-child {
  background-color: #c71585;
  color: white;
}

.product-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.product-buttons button {
  flex: 1rem;
  padding: 8px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.product-buttons button:first-child {
  background-color: #c71585;
  color: white;
}

.product-buttons button:last-child {
  background-color: #f8b400;
  color: black;
}

.announcement-banner {
  background-color: #ffe4e1;
  color: #c71585;
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
  font-size: 16px;
  border-bottom: 2px solid #c71585;
}

.hero-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Center the search bar and give it spacing */
.search-bar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin: 20px auto;
  max-width: 600px;
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Input field styling */
#search-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

/* Button styling */
#search-button {
  padding: 12px 20px;
  background-color: #e91e63;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

#search-button:hover {
  background-color: #c2185b;
}

nav {
  background-color: #fff0f5;
  padding: 12px 0;
  margin: 20px 0;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  max-width: 100%;
  text-align: center;
  justify-content:flex-end ;
  display: flex;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 40px;
}

nav ul li a {
  text-decoration: none;
  color: #e91e63;
  font-size: 18px;
  font-weight: bold;
  transition: color 0.3s ease, transform 0.2s;
}

nav ul li a:hover {
  color: #c2185b;
  transform: scale(1.1);
}
footer {
  text-align: center;
  padding: 20px;
  background-color: #fff0f5;
  border-top: 2px solid #c71585;
  margin-top: 40px;
}

footer p {
  color: #555;
  font-size: 14px;
}

#toggle-dark-mode {
  position: fixed;
  top: 10px;
  left: 10px; 
  padding: 8px 14px;
  background-color: #e91e63;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  z-index: 999;
}

body.dark-mode {
  background-color: #121212;
  color: #f0f0f0;
}

body.dark-mode a,
body.dark-mode button {
  color: #f06292;
  background-color: #1e1e1e;
}

.product-video-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 12px;
  margin-top: 2rem;
}

.video-description {
  flex: 1;
  min-width: 250px;
}

.video-description h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.video-description p {
  font-size: 1rem;
  color: #444;
}

.video-container {
  flex: 1;
  min-width: 300px;
}

.video-player {
  max-width:480px ;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 100%;
  height: auto;
  max-height: 300px;

}

.model-gallery {
  text-align: center;
  padding: 2rem;
  background-color: #fff;
}

.model-gallery h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #e91e63;
}

.model-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1;
  margin-bottom: 2rem;
}

.model-card {
  max-width: 220px;
  background-color: #fefefe;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
  padding: 1rem;
}

.model-card img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  height: 220px;
}

.model-card p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #444;
}

.testimonials {
  padding: 2rem 1rem;
  background-color: #fdfdfd;
  text-align: center;
}

.testimonials h2 {
  color: #e91e63;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

.testimonial-card {
  max-width: 500px;
  margin: 1rem auto;
  padding: 1rem 1.5rem;
  border-left: 4px solid #e91e63;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-style: italic;
}

@media (max-width: 768px) {
  .product-video-section,
  .model-cards {
    flex-direction: column;
    align-items: center;
  }

  .model-card {
    max-width: 90%;
  }

  .video-container {
    max-width: 100%;
  }

  footer {
    margin-top: 2rem;
  }

    .testimonial-card {
        max-width: 90%;
    }   
}

.main-banner {
  background-color: #fff0f5;
  text-align: center;
  padding: 40px 20px;
}

.banner-text h2 {
  color: #c71585;
  font-size: 2rem;
  margin-bottom: 20px;
}

.banner-text button {
  padding: 12px 24px;
  background-color: #e91e63;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.banner-text button:hover {
  background-color: #c2185b;
}

.promo-section {
  background-color: #fff;
  padding: 30px 20px;
  text-align: center;
  position: relative;
}

.back-button {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  background-color: #e91e63;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.promo-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.promo-item {
  max-width: 150px;
  text-align: center;
}

.promo-item img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.promo-item p {
  font-weight: bold;
  color: #c71585;
  font-size: 1.1rem;
}

/* Utility */
.hidden {
  display: none;
}

/* Subscribe section container */
.subscribe-section {
  padding: 40px 20px;
  background-color: #fff0f5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* New custom h2 inside subscribe-section */
.subscribe-section h2 {
  font-size: 1.8rem;
  color: #c71585;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
  text-shadow: 1px 1px 2px #f8b6d6;
}

.social-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 10px;
}

.social-links li a {
  text-decoration: none;
  color: #e91e63;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

.social-links li a i {
  margin-right: 8px;
  font-size: 18px;
}

.social-links li a:hover {
  color: #c2185b;
}

.product-rating {
  color: #ff69b4; 
  font-size: 1.2rem;
  margin: 5px 0;
}

