body {
  font-family: 'Montserrat', sans-serif;
  background: #f2f5fe;
  margin: 0;
  padding: 0;
}

/* Vendoloop Products Section Styles */
.vendoloop-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #fafafa;
}

.vendoloop-section-title {
  font-size: 4rem;
  font-weight: bold;
  color: #111;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.vendoloop-section-subtitle {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 40px;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
}

.vendoloop-container {
  max-width: 1200px;
  margin: 0 auto;
}

.vendoloop-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px;
}

.vendoloop-product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.vendoloop-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Product Images - Full bottle display */
.vendoloop-product-card .product-image-container {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  padding: 20px;
}

.vendoloop-product-card .product-image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Product Info Styling */
.product-info {
  padding: 20px;
}

.vendoloop-product-card .product-info h3 {
  margin: 0 0 8px 0;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #111;
  line-height: 1.3;
  font-family: 'Montserrat', sans-serif;
}

.vendoloop-product-card .product-brand {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin: 5px 0;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.product-description {
  color: #666;
  font-size: 0.95rem;
  margin: 10px 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 400;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.price-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #a3202a;
  font-family: 'Montserrat', sans-serif;
}

.sale-price {
  font-size: 1.1rem;
  color: #d00;
  font-weight: 600;
  text-decoration: none;
}

.stock-status {
  font-size: 0.85rem;
  padding: 5px 14px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.stock-status.in-stock {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.stock-status.out-of-stock {
  background-color: #ffebee;
  color: #c62828;
}

/* Loading and No Products States */
.loading {
  text-align: center;
  padding: 40px;
  color: #666;
  font-size: 1.1rem;
}

.no-products {
  text-align: center;
  padding: 40px;
  color: #999;
  font-size: 1.1rem;
}

/* Modal Styles */
.product-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 0;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  padding: 10px 20px;
  cursor: pointer;
}

.modal-close:hover {
  color: #000;
}

.modal-body {
  display: flex;
  padding: 30px;
  gap: 30px;
}

.modal-image {
  flex: 1;
  text-align: center;
  background: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
}

.modal-image img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
}

.modal-details {
  flex: 1;
}

.modal-details h2 {
  margin: 0 0 10px 0;
  font-size: 2rem;
  color: #111;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
}

.modal-details .brand {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.modal-details .price-info {
  margin: 20px 0;
}

.modal-details .modal-price {
  font-size: 2rem;
  font-weight: bold;
  color: #a3202a;
}

.modal-details .modal-sale-price {
  font-size: 1.6rem;
  color: #d00;
  margin-left: 15px;
}

.modal-details .details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 20px 0;
}

.detail-item {
  padding: 10px;
  background: #f9f9f9;
  border-radius: 4px;
}

.detail-item strong {
  display: block;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .vendoloop-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }
  
  .modal-body {
    flex-direction: column;
  }
  
  .modal-details .details-grid {
    grid-template-columns: 1fr;
  }
}