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

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text&display=swap');

/* Base Styling */
body {
  font-family: 'DM Serif Text', serif;
  color: #153929;
  background-color: #fff;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

main.container {
  flex: 1;
  padding-top: 30px;
  padding-bottom: 50px;
}

/* Header & Navigation */
header {
  background-color: #d9dbc4;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.3rem;
  font-weight: bold;
  color: #153929;
  text-decoration: none;
}

.logo a {
  color: #153929;
  text-decoration: none;
}

.cart {
  text-align: left;
  margin-right: auto;
}

.cart a {
  font-size: 1.0rem;
  color: #153929;
  text-decoration: none;
  padding: 5px;
  position: relative;
}

.cart a i {
  font-size: 1.0rem;
  color: #153929;
}

/* Hamburger Menu */
.hamburger {
  width: 30px;
  height: 24px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 10px;
}

.hamburger .bar {
  width: 100%;
  height: 4px;
  background-color: #153929;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hamburger Animation */
.hamburger.open .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.open .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Nav Menu */
.nav-menu {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #d9dbc4;
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1000;
}

.nav-menu.active {
  display: block;
  opacity: 1;
}

.nav-menu ul {
  list-style: none;
  padding: 20px;
}

.nav-menu li {
  text-align: center;
  padding: 10px 0;
}

.nav-menu li a {
  text-decoration: none;
  font-family: 'DM Serif Text', serif;
  font-size: 1.50em;
  color: #153929;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #316142;
}

/* Full-width Image Container */
.slider-section {
  width: 100%;
  position: relative;
  margin-bottom: 60px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* New Slider Image ID */
#slider-image {
  width: 100%;
  height: 400px;
  background-image: url('slider-image.jpg'); /* Placeholder - replace with your actual image */
  background-size: cover;
  background-position: center;
}

/* New Slider Content ID */
#slider-content {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px;
  text-align: center;
  border-radius: 5px;
  max-width: 400px;
  margin-top: 30px;
  margin-bottom: 30px;
  font-family: 'DM Serif Text', serif;
}

#slider-content h4 {
  font-size: 1.0rem;
  margin-bottom: 20px;
  color: #153929;
  text-transform: capitalize;
  font-family: 'DM Serif Text', serif;
}

.shop-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #153929;
  color: #d9dbc4;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.0rem;
  transition: all 0.3s ease;
  font-family: 'DM Serif Text', serif;
}

.shop-btn:hover {
  background-color: #1e5036;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Featured Products Section */
.featured-products, .products {
  padding: 20px 0 60px;
}

.featured-products h2, .products h2 {
  text-align: center;
  font-size: 1.0rem;
  margin-bottom: 40px;
  color: #153929;
}

.product-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* Different product card sizes for different pages */
.featured-products .product-card {
  width: 270px;
}

.featured-products .product-card img {
  height: 270px;
}

/* Smaller product cards for category pages */
.products .product-card {
  width: 220px; /* Smaller size for category pages */
}

.products .product-card img {
  height: 220px; /* Smaller size for category pages */
}

.product-card {
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-card img {
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

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

.product-card h3 {
  margin-top: 15px;
  font-size: 1.0rem;
  color: #153929;
}

.product-card p {
  color: #153929;
  font-size: 1.0rem;
  margin: 10px 0 15px;
}

.product-card .new-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #153929;
  color: #d9dbc4;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.0rem;
  transition: all 0.3s ease;
}

.product-card .new-btn:hover {
  background-color: #1e5036;
}

/* Footer */
footer {
  background-color: #153929;
  color: #d9dbc4;
  padding: 40px 0;
  margin-top: auto;
}

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

.footer-column {
  width: 25%;
  padding: 0 15px;
  margin-bottom: 30px;
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 1.0rem;
}

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

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

.footer-column a {
  color: #d9dbc4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(217, 219, 196, 0.3);
  width: 100%;
}

/* Responsive Styles */
@media (max-width: 992px) {
  #slider-image {
    height: 350px;
  }
  
  #slider-content {
    max-width: 350px;
  }
  
  .footer-column {
    width: 50%;
  }
  
  .header-container {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  #slider-image {
    height: 300px;
  }
  
  #slider-content {
    max-width: 320px;
  }
  
  .products .product-card {
    width: 180px;
  }
  
  .products .product-card img {
    height: 180px;
  }
  
  .featured-products .product-card {
    width: 220px;
  }
  
  .featured-products .product-card img {
    height: 220px;
  }
  
  .header-container {
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  #slider-image {
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* Creates a square aspect ratio for mobile */
  }
  
  #slider-content {
    max-width: 80%;
  }
  
  #slider-content h4 {
    font-size: 1.0rem;
  }
  
  .product-grid {
    gap: 15px;
  }
  
  .products .product-card,
  .featured-products .product-card {
    width: 45%;
    max-width: 160px;
  }
  
  .products .product-card img,
  .featured-products .product-card img {
    height: 160px;
  }
  
  .featured-products h2, .products h2 {
    font-size: 1.0rem;
  }
  
  .footer-column {
    width: 100%;
  }
  
  .header-container {
    padding: 0 15px;
  }
}

/* Checkout Section Styles */
.checkout-section {
    padding: 40px 0;
    max-width: 800px;
    margin: 0 auto;
}

.checkout-section h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #153929;
}

.checkout-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cart Count Badge */
.cart a[data-count]:after {
    content: attr(data-count);
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #153929;
    color: #d9dbc4;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.8rem;
    min-width: 18px;
    text-align: center;
}

/* Price Display */
.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #153929;
    margin: 10px 0;
}

/* Responsive Checkout */
@media (max-width: 768px) {
    .checkout-section {
        padding: 20px;
    }
    
    .checkout-container {
        padding: 20px;
        min-height: 300px;
    }
}

/* About Section Styles */
.about-section {
    padding: 40px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.about-section h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #153929;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Section Styles */
.contact-section {
    padding: 40px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-section h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #153929;
}

.contact-content {
    display: flex;
    gap: 40px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #153929;
}

.contact-details {
    margin-top: 30px;
}

.contact-details p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details i {
    color: #153929;
    font-size: 1.2rem;
}

.contact-form {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #153929;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #d9dbc4;
    border-radius: 5px;
    font-family: 'DM Serif Text', serif;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: #153929;
    color: #d9dbc4;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.0rem;
    transition: all 0.3s ease;
    font-family: 'DM Serif Text', serif;
}

.submit-btn:hover {
    background-color: #1e5036;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive About and Contact */
@media (max-width: 768px) {
    .about-content,
    .contact-content {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-form {
        margin-top: 30px;
    }
}

/* Cart Section Styles */
.cart-section {
    padding: 40px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.cart-section h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #153929;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 5px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h3 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: #153929;
}

.cart-item-details p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-quantity button {
    width: 30px;
    height: 30px;
    border: 1px solid #153929;
    background: none;
    border-radius: 5px;
    color: #153929;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-item-quantity button:hover {
    background-color: #153929;
    color: #d9dbc4;
}

.cart-item-total {
    text-align: right;
    min-width: 100px;
}

.cart-item-total p {
    margin: 0 0 10px;
    font-weight: bold;
    color: #153929;
}

.remove-btn {
    background: none;
    border: none;
    color: #cc0000;
    cursor: pointer;
    transition: color 0.3s ease;
}

.remove-btn:hover {
    color: #ff0000;
}

.cart-summary {
    margin-top: 40px;
    text-align: right;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Discount Section Styles */
.discount-section {
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.discount-input-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

#discount-code {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

#discount-code:focus {
    outline: none;
    border-color: #153929;
}

#apply-discount {
    padding: 8px 16px;
    background-color: #153929;
    color: #d9dbc4;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

#apply-discount:hover {
    background-color: #1e5036;
}

#apply-discount:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.discount-message {
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 20px;
}

.discount-message.success {
    color: #28a745;
}

.discount-message.error {
    color: #dc3545;
}

.discount-row {
    color: #28a745;
    font-weight: bold;
}

/* Price display styles for cart */
.price .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
    margin-right: 8px;
}

.price .discounted-price {
    color: #28a745;
    font-weight: bold;
    font-size: 1.1em;
}

.price .discounted-price::before {
    content: "Now: ";
    font-weight: normal;
}

/* Order summary price display styles */
.original-subtotal {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
    margin-right: 8px;
}

.discounted-subtotal {
    color: #28a745;
    font-weight: bold;
    font-size: 1.1em;
}

.discounted-subtotal::before {
    content: "Now: ";
    font-weight: normal;
}

/* Total display styles */
.original-total {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
    margin-right: 8px;
}

.discounted-total {
    color: #28a745;
    font-weight: bold;
    font-size: 1.1em;
}

.discounted-total::before {
    content: "Now: ";
    font-weight: normal;
}

/* Cart item total display styles */
.cart-item-total .original-total {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
    margin-right: 8px;
}

.cart-item-total .discounted-total {
    color: #28a745;
    font-weight: bold;
    font-size: 1.1em;
}

.cart-item-total .discounted-total::before {
    content: "Now: ";
    font-weight: normal;
}

.cart-total h3 {
    margin: 0 0 20px;
    color: #153929;
}

.checkout-btn {
    background-color: #153929;
    color: #d9dbc4;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background-color: #1e5036;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.empty-cart {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 1.1rem;
}

/* Cart Badge */
.cart a {
    position: relative;
}

.cart a[data-count]:after {
    content: attr(data-count);
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #153929;
    color: #d9dbc4;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.8rem;
    min-width: 18px;
    text-align: center;
}

/* Responsive Cart */
@media (max-width: 768px) {
    .cart-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .cart-item-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .cart-item-details,
    .cart-item-total {
        width: 100%;
        text-align: center;
    }

    .cart-item-quantity {
        justify-content: center;
        margin: 15px 0;
    }

    .cart-summary {
        text-align: center;
    }
    
    /* Discount section responsive styles */
    .discount-input-row {
        flex-direction: column;
        gap: 8px;
    }
    
    #discount-code {
        width: 100%;
        text-align: center;
    }
    
    #apply-discount {
        width: 100%;
        padding: 10px;
    }
}

/* Product Page Styles */
.product-section {
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.product-details-container {
    display: flex;
    gap: 40px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-image {
    flex: 1;
    max-width: 500px;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
}

.product-info {
    flex: 1;
}

.product-info h1 {
    margin: 0 0 20px;
    color: #153929;
    font-size: 2rem;
}

.product-info .price {
    font-size: 1.5rem;
    color: #153929;
    font-weight: bold;
    margin: 0 0 20px;
}

.product-info .description {
    color: #666;
    line-height: 1.6;
    margin: 0 0 30px;
}

.product-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-selector button {
    width: 30px;
    height: 30px;
    border: 1px solid #153929;
    background: none;
    border-radius: 5px;
    color: #153929;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-selector button:hover {
    background-color: #153929;
    color: #d9dbc4;
}

.quantity-selector span {
    min-width: 30px;
    text-align: center;
    font-weight: bold;
}

.add-to-cart-btn {
    background-color: #153929;
    color: #d9dbc4;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: #1e5036;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Make product cards clickable */
.product-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Responsive Product Page */
@media (max-width: 768px) {
    .product-details-container {
        flex-direction: column;
        padding: 20px;
    }

    .product-image {
        max-width: 100%;
    }

    .product-info h1 {
        font-size: 1.5rem;
    }

    .product-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .quantity-selector {
        justify-content: center;
    }
}

/* Cart Page Styles */
.cart-section {
    padding: 2rem 0;
}

.cart-section h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.cart-item {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
    align-items: center;
    flex-wrap: wrap;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    margin-right: 1.5rem;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    margin: 0 1.5rem;
}

.cart-item-quantity button {
    background-color: #f0f0f0;
    border: none;
    width: 30px;
    height: 30px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
}

.cart-item-quantity button:hover {
    background-color: #e0e0e0;
}

.cart-item-quantity span {
    padding: 0 10px;
    font-size: 1rem;
}

.cart-item-total {
    display: flex;
    align-items: center;
    font-weight: bold;
}

.cart-item-total p {
    margin-right: 1rem;
}

.remove-btn {
    color: #d9534f;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.remove-btn:hover {
    color: #c9302c;
}

.empty-cart {
    text-align: center;
    padding: 3rem;
    font-size: 1.2rem;
    color: #777;
}

.cart-summary {
    margin-top: 2rem;
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 5px;
}

.cart-total {
    margin-bottom: 2rem;
}

.cart-total h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.summary-row.total {
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.continue-shopping {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.continue-shopping:hover {
    background-color: #e0e0e0;
}

.checkout-btn {
    padding: 0.8rem 1.5rem;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.checkout-btn:hover {
    background-color: #45a049;
}

.checkout-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* Responsive styles for cart page */
@media (max-width: 768px) {
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cart-item-image {
        margin-bottom: 1rem;
    }
    
    .cart-item-quantity {
        margin: 1rem 0;
    }
    
    .cart-item-total {
        width: 100%;
        justify-content: space-between;
        margin-top: 1rem;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .continue-shopping, .checkout-btn {
        width: 100%;
        text-align: center;
    }
}

/* Add these styles to your existing CSS */
.sold-out-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
}

.product-image {
    position: relative;
}

.add-to-cart-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Add these styles to your existing CSS */
.mto-notice {
    color: #666;
    font-style: italic;
    margin: 10px 0;
    padding: 10px;
    background-color: #f9f9f9;
    border-left: 3px solid #153929;
}

.quantity-notice {
    color: #666;
    font-size: 0.9em;
    margin-top: 5px;
}

.quantity-selector button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}