body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #fff;
  color: #222;
  overflow-x: hidden;
}

/* Topbar */
.topbar {
  background: #111;
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
}
/* Search Bar */
nav input {
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
nav input:focus {
  border-color: #000;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.advanced-footer {
  background: #111;
  color: #fff;
  padding: 50px 20px 20px;
  font-size: 0.95rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-brand h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #f1c40f;
}

.footer-links h3,
.footer-newsletter h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #f1c40f;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #f1c40f;
}

.footer-newsletter p {
  margin-bottom: 10px;
}

.footer-newsletter form {
  display: flex;
  flex-direction: column;
}

.footer-newsletter input {
  padding: 10px;
  border: none;
  border-radius: 4px;
  margin-bottom: 10px;
  font-size: 1rem;
}

.footer-newsletter button {
  background: #f1c40f;
  color: #111;
  border: none;
  padding: 10px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-newsletter button:hover {
  background: #e1b900;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.footer-socials {
  margin-top: 10px;
}

.footer-socials a {
  margin: 0 10px;
  display: inline-block;
}

.footer-socials img {
  width: 24px;
  height: 24px;
  filter: invert(1);
  transition: transform 0.3s;
}

.footer-socials img:hover {
  transform: scale(1.2);
}

/* Logo Header */
header {
  background: white;
  text-align: center;
  padding: 30px 0 10px;
  position: relative;
  border-bottom: 1px solid #eee;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #111;
  letter-spacing: 2px;
}


/* Feel the Fashion Vibe
Discover our latest collection */
/* Hero Section */
.hero {
  background: url('images/hero.jpg') no-repeat center center/cover;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Aboreto', cursive;
  font-size: 1.5rem;
  font-weight: 400;
  color: #111;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}



#search-box {
  padding: 10px 15px;
  font-size: 1rem;
  border: 2px solid #ccc;
  border-radius: 25px;
  outline: none;
  transition: all 0.3s ease;
  width: 220px;
  max-width: 100%;
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

#search-box:focus {
  border-color: #e35d6a;
  box-shadow: 0 0 8px rgba(227, 93, 106, 0.4);
}



.hero-content {
  background: rgba(255,255,255,0.8);
  padding: 30px;
  border-radius: 10px;
}

.hero-content h1 {
  font-size: 1.8rem; /* Feel the Fashion Vibe */
  font-family: 'Aboreto', cursive; /* use your expressive font */
  color: #333;
  margin-bottom: 10px;
  text-align: center;
}

.hero-content button {
  padding: 12px 25px;
  background: black;
  color: white;
  border: none;
  font-weight: bold;
  margin-top: 10px;
  border-radius: 5px;
}

/* Promo Banner */
.promo-banner {
  background: #f44336;
  color: white;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  font-size: 1rem;
}

/* Section Titles */
.section {
  padding: 50px 20px;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
}
.slideshow {
  text-align: center;
  padding: 30px 0;
  background: #f8f8f8;
}

.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: auto;
}

#slideshow-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.slideshow-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
}

.slideshow-controls button {
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
}

.slideshow-controls button:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  user-select: none;
  background: rgba(0,0,0,0.5);
  border-radius: 5px;
  transform: translateY(-50%);
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
  background: rgba(0,0,0,0.8);
}


/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  padding: 1em;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.product-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.product-card h3 {
  margin: 15px;
  font-size: 1.1rem;
}

/* Rich red price tag */

.price,
#modal-product-price {
  font-family: 'Aboreto', cursive;
  font-size: 1.4rem;
  font-weight: bold;
  color: #2f3d4c;
  background: #fff0f0;
  padding: 6px 12px;
  border-left: 4px solid #778979;
  border-radius: 8px;
  display: inline-block;
  margin-top: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.price:hover,
#modal-product-price:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  overflow-y: auto;
  max-height: 90vh;
}

.modal-content img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.75rem;
  color: #666;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(2px);
}

.close-image-popup:hover {
  background: rgba(255, 255, 255, 1);
  transform: rotate(90deg) scale(1.1);
  color: #000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ask-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 1rem;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 5px;
  width: 100%;
}


form input,
form textarea,
form button {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form textarea {
  resize: vertical;
  min-height: 80px;
}




form {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 15px;
}





.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 600px;
  margin: 20px auto;
  padding: 15px;
  box-sizing: border-box;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form button {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-size: 1em;
}

.city-postal-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 500px) {
  .city-postal-group {
    flex-direction: row;
  }

  .city-postal-group input {
    flex: 1;
  }
}

.advanced-footer {
  background-color: #0d0d0d;
  color: #f5f5f5;
  font-family: 'Playfair Display', serif;
  padding: 60px 20px 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
}

.footer-brand h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #fff;
}

.footer-brand p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
}

.footer-links h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: gold;
}

.footer-newsletter h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}

.footer-newsletter p {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 12px;
}

.footer-newsletter form {
  display: flex;
  gap: 10px;
}

.footer-newsletter input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 4px;
  flex: 1;
  font-size: 14px;
}

.footer-newsletter button {
  padding: 10px 20px;
  background-color: gold;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  color: #000;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer-newsletter button:hover {
  background-color: #ffd700;
}

.accordion-toggle {
  cursor: pointer;
}

.accordion-content {
  display: none;
  background-color: #1a1a1a;
  padding: 10px 15px;
  margin-top: 10px;
  border-radius: 6px;
  font-size: 13px;
  color: #ddd;
  line-height: 1.5;
}

.accordion-content a {
  color: gold;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: #888;
  border-top: 1px solid #222;
  padding-top: 20px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-newsletter form {
    flex-direction: column;
    width: 100%;
  }

  .footer-newsletter input[type="email"] {
    width: 100%;
  }

  .footer-newsletter button {
    width: 100%;
  }
}


/* Footer */
footer {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
}

footer .socials {
  margin-top: 10px;
}

footer .socials a {
  margin: 0 10px;
  text-decoration: none;
  color: #f1c40f;
}

#inquiry-form button[type="submit"] {
  background-color: #3d3a3a;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

select[name="size"] {
  margin-top: 10px;
  margin-bottom: 15px;
  padding: 12px 16px;
  border: 2px solid #8d8d8d;
  border-radius: 6px;
  width: 100%;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  background-color: #8f8d8d;
  color: #c0c0c0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='white' height='10' viewBox='0 0 24 24' width='10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  transition: all 0.3s ease;
}

select[name="size"]:hover {
  background-color: #eeeeee;
}

select[name="size"]:focus {
  outline: none;
  border-color: #fff;
}


#inquiry-form button[type="submit"]:hover {
  background-color: #333;
}

footer .socials a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .footer-newsletter form {
    flex-direction: column;
  }
}




@media (max-width: 480px) {
  .logo-text {
    font-size: 1.8rem;
  }

  #search-box {
    width: 90%;
    padding: 10px 15px;
  }

  .hero {
    height: 260px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    padding: 10px;
  }

  .product-card img {
    height: 180px;
  }

  .city-postal-group {
    flex-direction: column;
  }

  .modal-content {
    padding: 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    margin-top: 25px;
  }
}

@media (min-width: 768px) {
  .hero {
    height: 400px;
  }

  .hero-content {
    padding: 40px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  #slideshow-image {
    height: 300px;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

/* Prevent iOS Zoom */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="search"],
select,
textarea {
  font-size: 16px;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  touch-action: manipulation; /* improves tap response, optional */
}

* {
  box-sizing: border-box;
  max-width: 100%;
}



.support-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #203327; /* WhatsApp green */
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 10000;
  transition: background-color 0.3s;
}

.support-btn:hover {
  background-color: #4e5e54;
}




























.cart-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  background-color: #000;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}




.payment-options {
  margin-top: 20px;
}

.payment-toggle {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.payment-toggle input[type="radio"] {
  display: none;
}

.toggle-label {
  padding: 10px 18px;
  border: 2px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  background-color: #f9f9f9;
  font-weight: 500;
}

.toggle-label:hover {
  background-color: #eee;
  border-color: #aaa;
}

.payment-toggle input[type="radio"]:checked + .toggle-label {
  background-color: #222;
  color: #fff;
  border-color: #000;
}

.payment-note {
  display: none;
  color: #c0392b;
  font-size: 0.9em;
  margin-top: 10px;
}

.contact-seller-btn {
  margin-top: 15px;
  background-color: #000000;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

.contact-seller-btn:hover {
  background-color: #18201b;
}

.modal-content.cart-content {
  max-width: 600px;
  margin: auto;
}

#cart-items {
  margin: 20px 0;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

.cart-total {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.city-postal-group {
  display: flex;
  gap: 10px;
}

.city-postal-group input {
  flex: 1;
}


.add-to-cart-btn {
  background-color: #000; /* Black background */
  color: #fff;            /* White text */
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 5px;
  margin-left: 05px;
  margin-top: 10px;
}

.add-to-cart-btn:hover {
  background-color: #333; /* Slightly lighter on hover */
}



form button[type="submit"] {
  background-color: #f5f5f5;
  color: #000;
  padding: 12px 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  width: 100%;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

form button[type="submit"]:hover {
  background-color: #eaeaea;
}




/* Submit Order button */
#cart-form button[type="submit"],
#inquiry-form button[type="submit"] {
  background-color: #cccccc;
  color: #000;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 12px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#cart-form button[type="submit"]:hover,
#inquiry-form button[type="submit"]:hover {
  background-color: #e5e5e5;
}

/* Contact Seller button */
.contact-seller-btn {
  background-color: #141414;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.contact-seller-btn:hover {
  background-color: #4e4d4d;
}







.success-message {
  padding: 20px;
  background-color: #2b2b2b;
  border: 1px solid #202020;
  border-radius: 8px;
  text-align: center;
}
























.payment-options { 
  margin-top: 20px; 
}

.payment-toggle {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.payment-toggle input[type="radio"] { 
  display: none; 
}

.toggle-label {
  padding: 10px 18px;
  border: 2px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  background-color: #f9f9f9;
  font-weight: 500;
}

.toggle-label:hover {
  background-color: #eee;
  border-color: #aaa;
}

.payment-toggle input[type="radio"]:checked + .toggle-label {
  background-color: #222;
  color: #fff;
  border-color: #000;
}

.payment-note {
  display: none;
  color: #c0392b;
  font-size: 0.9em;
  margin-top: 10px;
}

.contact-seller-btn {
  margin-top: 15px;
  background-color: #1a251e;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

.contact-seller-btn:hover {
  background-color: #000000;
}

select[name="size"] {
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}


.submit-order-btn {
  background-color: #181a1b;  /* Change to your desired color */
  color: white;
  font-weight: bold;
  border: none;
  padding: 12px 25px;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.submit-order-btn:hover {
  background-color: #141618;  /* Darker shade on hover */
  transform: scale(1.05);  /* Slightly increase size on hover */
}

.submit-order-btn:active {
  transform: scale(0.98);  /* Slightly shrink when clicked */
  background-color: #171a1d;  /* Darker shade when active */
}













/* Blurred Blue Premium Cart Button */
#cart-btn {
  font-family: 'Playfair Display', serif;
  position: fixed; /* Fixed position to keep it in the corner */
  top: 20px; /* Distance from the top of the screen */
  right: 20px; /* Distance from the right side */
  background-color: rgba(124, 124, 124, 0.247); /* Semi-transparent blue background */
  color: #fff; /* White text */
  font-size: 16px; /* Smaller font size */
  font-weight: bold;
  padding: 8px 18px; /* Padding for the button */
  border: none;
  border-radius: 30px; /* Rounded edges */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px); /* Blurred background effect */
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2); /* Slight shadow for depth */
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1; /* Send to the back when the slides are active */
}

#cart-btn:hover {
  background-color: rgb(82, 82, 82); /* Solid blue when hovering */
  transform: translateY(-2px); /* Slight upward movement */
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.3); /* Deeper shadow on hover */
}

#cart-btn:focus {
  outline: none;
}

/* Cart icon styling */
#cart-btn .cart-icon {
  margin-right: 8px; /* Space between the icon and the text */
  font-size: 18px; /* Adjusted icon size */
}
































.product-modal-form-container {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.product-modal-form-container form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-modal-form-container input,
.product-modal-form-container textarea,
.product-modal-form-container select,
.product-modal-form-container button {
  padding: 10px;
  font-size: 16px;
}

.product-modal-form-container .form-group {
  display: flex;
  flex-direction: column;
}

.product-modal-form-container .city-postal-group {
  display: flex;
  gap: 10px;
}

.product-modal-form-container .payment-toggle {
  display: flex;
  gap: 10px;
}

.product-modal-form-container .payment-note {
  font-size: 14px;
  color: #555;
}




.remove-btn{
  background-color: #e35d6a;  /* Same background color for consistency */
  color: white;
  font-weight: normal;  /* Lighter weight */
  border: none;
  padding: 5px 10px;  /* Smaller padding for a compact size */
  font-size: 0.9rem;  /* Smaller font size */
  border-radius: 05px;  /* Slightly more rounded corners */
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);  /* Subtle shadow */
}

.remove-btn:hover {
  background-color: #eb7581;
  transform: scale(1.1);  /* Slightly more pronounced scale on hover */
}

.remove-btn:active {
  transform: scale(0.9);  /* Slight reduction when clicked */
  background-color: #dd737e;  /* Maintain consistency on active state */
}















/* LOGO 
header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin: 0;
  padding-left: 20px;
  letter-spacing: 2px;
  transition: transform 0.3s ease;
}

header h1:hover {
  color: #e35d6a;
  transform: scale(1.05);
}

*/

header h1 {
  font-family: 'Aboreto', cursive;
  font-size: 3rem;
  font-weight: 400;
  color: #111;
  margin: 0;
  padding-left: 20px;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}

header h1:hover {
  color: #e35d6a;
  transform: scale(1.05);
}





/* Premium style for product names */
.product-info h3 {
  font-family: 'Aboreto', cursive;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem;
  text-transform: capitalize;
}

/* Premium style for prices */
.product-info p {
  font-family: 'Aboreto', cursive;
  font-size: 0.8rem;
  font-weight: 500;
  color: #b1926a; /* Gold-ish tone for luxury feel */
  margin: 0;
  margin-left: 16px; /* Shift slightly to the right */
  margin-bottom: 10px;
}


















.product-image-multi {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  max-height: 120px;
}
.product-image-multi img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}




.modal-gallery-img {
  width: 100px;
  margin-right: 10px;
  border-radius: 8px;
  object-fit: cover;
}




.product-images-container {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.product-images-container img {
  max-width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

















/* Image Viewer Modal */
.image-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
}

.image-modal img {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close-image-viewer {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* Payment Note */
.payment-note {
  display: none;
  background: #f8f8f8;
  padding: 10px;
  border-radius: 5px;
  margin-top: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .product-images-container {
    flex-direction: column;
  }
  
  .product-images-container img {
    max-width: 100%;
    margin-bottom: 10px;
  }
  
  .image-modal img {
    max-width: 95%;
    max-height: 80%;
  }
  
  .close-image-viewer {
    top: 10px;
    right: 20px;
    font-size: 30px;
  }
}


/* SIZE POPUP STYLES */
.size-popup .modal-content {
  max-width: 400px;
  padding: 25px;
  text-align: center;
}

.size-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 20px 0;
}

#size-selector {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  width: 100%;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
}

.confirm-size-btn {
  background-color: #000;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.confirm-size-btn:hover {
  background-color: #333;
}

.size-chart-container {
  margin-top: 20px;
}

.size-chart-btn {
  background: none;
  border: none;
  color: #666;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
  padding: 5px 0;
}

.size-chart-image-container {
  display: none;
  margin-top: 15px;
  border: 1px solid #eee;
  padding: 10px;
  background: #f9f9f9;
}

.size-chart-image-container img {
  width: 100%;
  height: auto;
}

/* SUCCESS MESSAGE STYLES */
.success-message {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #242424;
  color: white;
  padding: 15px 25px;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  display: none;
  animation: slideIn 0.5s forwards;
}

.success-content {
  position: relative;
}

.close-success-message {
  position: absolute;
  top: -10px;
  right: -10px;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}

/* DROPDOWN MENU STYLES */
select {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  font-size: 14px;
  width: 100%;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  transition: border-color 0.3s;
}

select:focus {
  outline: none;
  border-color: #000;
}


































































/* ========== ENHANCED PRODUCT SLIDER ========== */
.product-slider-container {
  position: relative;
  margin: 2.5rem 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
}

.product-slider {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  cursor: grab;
  user-select: none;
  scroll-behavior: smooth;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 2rem 1.5rem;
  box-sizing: border-box;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.product-slider.grabbing {
  cursor: grabbing;
  scroll-snap-type: none;
  transition: none;
}

.slider-product-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.slider-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.slider-product-card .product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.slider-product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.slider-product-card:hover img {
  transform: scale(1.03);
}

/* ========== PRODUCT TITLE ========== */
.product-info {
  padding: 0.75rem 1rem; /* Increased right padding */
}

.product-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  margin: 0.5rem 0 0.25rem;
  padding-left: 0.5rem; /* Added left padding */
}

/* ========== SLIDER BUTTONS ========== */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: white;
  color: #222;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  opacity: 0.9;
}

.slider-btn:hover {
  background: #f8f8f8;
  transform: translateY(-50%) scale(1.08);
  opacity: 1;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.slider-btn i {
  font-size: 1.2rem;
}

.prev-btn {
  left: 1rem;
}

.next-btn {
  right: 1rem;
}

/* ========== IMAGE POPUP ========== */
.image-popup-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.image-popup-content img {
  max-height: 80vh;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 6px;
}

.close-image-popup {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.8rem;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
}

.close-image-popup:hover {
  color: #000;
  background: rgba(255, 255, 255, 1);
  transform: rotate(90deg) scale(1.1);
}

/* ========== PRICING ========== */
.price-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.5rem 0.75rem; /* Adjusted padding */
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
}

.discounted-price {
  color: #d32f2f;
  font-weight: 600;
  font-size: 1.1rem;
}

/* ========== OUT OF STOCK BADGE ========== */
.out-of-stock-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 10;
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */
/* Large Desktop (4 cards) */
@media (min-width: 1440px) {
  .slider-product-card {
    width: calc(25% - 1rem);
  }
}

/* Standard Desktop (4 cards) */
@media (min-width: 1024px) and (max-width: 1439px) {
  .slider-product-card {
    width: calc(25% - 1rem);
  }
}

/* Tablet Landscape (3 cards) */
@media (min-width: 768px) and (max-width: 1023px) {
  .slider-product-card {
    width: calc(33.333% - 1rem);
  }
}

/* Tablet Portrait (2 cards) */
@media (min-width: 576px) and (max-width: 767px) {
  .slider-product-card {
    width: calc(50% - 0.75rem);
  }
}

/* Mobile (1.5 cards peek) */
@media (max-width: 575px) {
  .product-slider {
    padding: 0 1.25rem 1.25rem;
  }
  
  .slider-product-card {
    width: calc(50% - 0.5rem);
  }
  
  .slider-btn {
    width: 36px;
    height: 36px;
  }
  
  .image-popup-content {
    padding: 1.5rem;
  }
  
  .close-image-popup {
    width: 32px;
    height: 32px;
    font-size: 1.5rem;
  }
}

/* Small Mobile (1 card) */
@media (max-width: 400px) {
  .slider-product-card {
    width: calc(80% - 0.5rem);
  }
}