/* Additional styles for other pages */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-color), #333);
    color: white;
    text-align: center;
  }
  
  .page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
  }
  
  .page-description {
    font-size: 1.2rem;
    color: #e5e5e5;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .category-page {
    padding: 2rem 0;
  }
  
  .category-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .category-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .category-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .products-container {
    margin-bottom: 3rem;
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  /* Cart Styles */
  .cart-page {
    padding: 2rem 0;
    min-height: 60vh;
  }
  
  .cart-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
  }
  
  .cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
  }
  
  .cart-item-info {
    flex: 1;
  }
  
  .cart-item-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .cart-item-price {
    color: var(--accent-color);
    font-weight: 700;
  }
  
  .cart-item-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .cart-total {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    margin-top: 2rem;
  }
  
  .total-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1rem;
  }
  
  .empty-cart {
    text-align: center;
    padding: 4rem 2rem;
  }
  
  .empty-cart-icon {
    font-size: 4rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
  }
  
  /* Contact Page Styles */
  .contact-section {
    padding: 4rem 0;
  }
  
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  
  .contact-info {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
  }
  
  .contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  
  .form-input,
  .form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    transition: var(--transition);
  }
  
  .form-input:focus,
  .form-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
  }
  
  .form-textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .page-title {
      font-size: 2rem;
    }
  
    .contact-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .cart-item {
      flex-direction: column;
      text-align: center;
    }
  
    .cart-item-controls {
      justify-content: center;
    }
  }
  
/* --- Product Card Image Improvements --- */
.product-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2rem 1rem 1.5rem 1rem;
  transition: box-shadow 0.2s;
}
.product-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
}
.product-image {
  width: 100%;
  max-width: 220px;
  height: 160px;
  object-fit: contain;
  background: #f3f3f3;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: block;
}
.product-info {
  width: 100%;
  text-align: center;
}
.product-title {
  font-size: 1.08rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.3rem;
}
.product-price {
  font-size: 1.1rem;
  color: #b80000;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

/* --- Quantity Controls & Add to Cart Button --- */
.product-card-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.7rem 0 0.2rem 0;
}
.quantity-btn {
  font-size: 1.2rem;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fafafa;
  cursor: pointer;
  transition: background 0.15s;
}
.quantity-btn:hover {
  background: #f3eaea;
}
.quantity-input {
  width: 2.2em;
  text-align: center;
  font-size: 1.1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0.2em 0.3em;
}
.add-to-cart-btn {
  background: #b80000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.7em 1.7em;
  margin-left: 0.7em;
  cursor: pointer;
  transition: background 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.add-to-cart-btn:hover {
  background: #d90000;
}

/* --- Lightbox Modal Styles --- */
.lightbox-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}
.lightbox-modal img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.lightbox-modal .close-lightbox {
  position: absolute;
  top: 2.5vh;
  right: 3vw;
  font-size: 2.5rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10002;
}
  