/* Store Frontend Styles */
:root {
  /* Color Scheme */
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --light-color: #ecf0f1;
  --dark-color: #2c3e50;
  --text-color: #333;
  --text-light: #7f8c8d;
  --border-color: #ddd;
  --success-color: #2ecc71;
  --warning-color: #f39c12;
  --danger-color: #e74c3c;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  /* Box Shadow */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
}

/* Base Styles */
body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.btn {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-sm);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--accent-color);
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background-color: white;
  color: var(--accent-color);
}

.section-title {
  font-size: 1.75rem;
  margin-bottom: var(--spacing-md);
  color: var(--dark-color);
  position: relative;
  padding-bottom: var(--spacing-xs);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

/* Header Styles */
.store-header {
  background-color: white;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.store-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) 0;
}

.store-logo h1 {
  margin: 0;
  font-size: 1.75rem;
  color: var(--primary-color);
}

.store-logo p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-light);
}

.store-search {
  flex-grow: 1;
  margin: 0 var(--spacing-lg);
}

.search-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.search-form input {
  flex-grow: 1;
  padding: var(--spacing-xs) var(--spacing-sm);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: 0.875rem;
}

.search-form button {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 0 var(--spacing-md);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
}

.store-actions {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
}

.store-actions a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  color: var(--text-color);
}

.store-actions a.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--accent-color);
  color: white;
  font-size: 0.75rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--spacing-lg);
}

.store-nav a {
  display: block;
  padding: var(--spacing-sm) 0;
  font-weight: 500;
  position: relative;
}

.store-nav a.active {
  color: var(--accent-color);
}

.store-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
}

/* Hero Section */
.store-hero {
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://via.placeholder.com/1920x600');
  background-size: cover;
  background-position: center;
  color: white;
  padding: var(--spacing-xl) 0;
  margin-bottom: var(--spacing-xl);
}

.hero-content {
  max-width: 600px;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
}

.hero-content p {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
}

/* Categories Section */
.featured-categories {
  padding: var(--spacing-xl) 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.category-card {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.category-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.category-card h3 {
  padding: var(--spacing-sm);
  margin: 0;
  text-align: center;
  background-color: white;
}

/* Products Section */
.featured-products {
  padding: var(--spacing-xl) 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

.view-all {
  font-size: 0.875rem;
  color: var(--accent-color);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.product-card {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.product-badge {
  position: absolute;
  top: var(--spacing-sm);
  left: var(--spacing-sm);
  background-color: var(--accent-color);
  color: white;
  padding: 0.25rem var(--spacing-sm);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
  z-index: 1;
}

.product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-actions {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-actions {
  opacity: 1;
}

.wishlist-btn, .quickview-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  color: var(--text-color);
  transition: all 0.3s ease;
}

.wishlist-btn:hover, .quickview-btn:hover {
  background-color: var(--accent-color);
  color: white;
}

.product-info {
  padding: var(--spacing-md);
}

.product-title {
  font-size: 1rem;
  margin: 0 0 var(--spacing-xs) 0;
}

.product-title a {
  color: var(--text-color);
}

.product-price {
  margin: var(--spacing-xs) 0 var(--spacing-sm) 0;
}

.current-price {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent-color);
}

.old-price {
  font-size: 0.875rem;
  text-decoration: line-through;
  color: var(--text-light);
  margin-left: var(--spacing-xs);
}

.add-to-cart {
  width: 100%;
  padding: var(--spacing-xs);
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.add-to-cart:hover {
  background-color: var(--dark-color);
}

/* Promo Banner */
.promo-banner {
  background-color: var(--primary-color);
  color: white;
  padding: var(--spacing-lg) 0;
  margin: var(--spacing-xl) 0;
  text-align: center;
}

.promo-banner h2 {
  margin-bottom: var(--spacing-xs);
}

.promo-banner p {
  margin-bottom: var(--spacing-md);
  font-size: 1.125rem;
}

/* Newsletter */
.newsletter {
  background-color: var(--light-color);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.newsletter h2 {
  margin-bottom: var(--spacing-xs);
}

.newsletter p {
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex-grow: 1;
  padding: var(--spacing-sm);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: 1rem;
}

.newsletter-form button {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 0 var(--spacing-lg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  font-weight: 500;
}

/* Footer */
.store-footer {
  background-color: var(--dark-color);
  color: white;
  padding: var(--spacing-xl) 0 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.footer-col h3, .footer-col h4 {
  color: white;
  margin-bottom: var(--spacing-md);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-col ul li a {
  color: #bdc3c7;
}

.footer-col ul li a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.social-links a {
  color: white;
  font-size: 1.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--spacing-md) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.payment-methods {
  display: flex;
  gap: var(--spacing-sm);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .store-top-bar {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .store-search {
    margin: var(--spacing-sm) 0;
    width: 100%;
  }
  
  .store-nav ul {
    overflow-x: auto;
    padding-bottom: var(--spacing-sm);
  }
}

@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
}


.ecommerce-header {
  z-index: 1030;
}

.announcement-bar {
  font-size: 0.875rem;
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--bs-dark);
}

.search-form .form-control {
  border-radius: 0;
}

.search-form .btn {
  border-radius: 0 4px 4px 0;
}

.search-category {
  border-radius: 4px 0 0 4px;
  border-right: 0;
}

.header-actions .action-item {
  position: relative;
}

.header-actions .badge {
  font-size: 0.6rem;
  padding: 0.25rem 0.35rem;
}

.navbar .nav-link {
  font-weight: 500;
  padding: 0.75rem 1rem;
  color: var(--bs-dark);
}

.navbar .nav-link.active {
  color: var(--bs-danger);
}

.navbar .dropdown-menu {
  border: 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.offcanvas-body .nav-link {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 1rem 0;
  }
  
  .navbar .nav-item {
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  .navbar .dropdown-menu {
    box-shadow: none;
    border-radius: 0;
  }
}


/* Shop Page Specific Styles */
.shop-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/assets/img/shop-hero.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 5rem 0;
  text-align: center;
  margin-bottom: 3rem;
}

.shop-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.shop-hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero-search {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
}

.hero-search input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 1rem;
}

.hero-search button {
  background: #fa5a54;
  color: white;
  border: none;
  padding: 0 1.5rem;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-weight: 500;
}

/* Product Card Enhancements */
.product-card {
  position: relative;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fa5a54;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  z-index: 2;
}

.product-image {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-actions {
  opacity: 1;
}

.wishlist-btn, .quickview-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.wishlist-btn:hover, .quickview-btn:hover {
  background: #fa5a54;
  color: white;
}

.wishlist-btn.active {
  background: #fa5a54;
  color: white;
}

.product-info {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1rem;
  margin: 0 0 0.5rem 0;
  font-weight: 500;
}

.product-title a {
  color: #333;
  text-decoration: none;
}

.product-price {
  margin: 0.5rem 0;
}

.current-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fa5a54;
}

.old-price {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: #999;
  margin-left: 0.5rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.5rem 0;
  font-size: 0.85rem;
}

.stock {
  font-weight: 500;
}

.stock.in-stock {
  color: #2ecc71;
}

.stock.low-stock {
  color: #e74c3c;
}

.product-rating {
  color: #f39c12;
}

.add-to-cart {
  width: 100%;
  padding: 0.5rem;
  background: #2c3e50;
  color: white;
  border: none;
  border-radius: 4px;
  margin-top: auto;
  cursor: pointer;
  transition: background 0.3s ease;
}

.add-to-cart:hover {
  background: #1a252f;
}

/* Quick View Modal */
.modal-content {
  border-radius: 10px;
  overflow: hidden;
}

.modal-header {
  background: #2c3e50;
  color: white;
}

.btn-close {
  filter: invert(1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .shop-hero {
    padding: 3rem 0;
  }
  
  .shop-hero h1 {
    font-size: 2rem;
  }
  
  .hero-search {
    flex-direction: column;
  }
  
  .hero-search input {
    border-radius: 4px;
    margin-bottom: 0.5rem;
  }
  
  .hero-search button {
    border-radius: 4px;
    padding: 0.75rem;
  }
  
  .product-actions {
    opacity: 1;
  }
}

/* Category Navigation */
.category-navigation {
  padding: 1rem 0;
  background-color: #f8f9fa;
  border-bottom: 1px solid #eee;
}

.category-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-category-dropdown {
  background-color: #fff;
  border: 1px solid #ddd;
  color: #333;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-category-dropdown:hover {
  background-color: #f1f1f1;
}

.dropdown-menu {
  max-height: 400px;
  overflow-y: auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: none;
  padding: 0.5rem;
}

.dropdown-item {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #e74c3c;
}

.category-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 4px;
}

.view-all-categories a {
  color: #666;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.view-all-categories a:hover {
  color: #e74c3c;
}

/* Featured Products */
.featured-products {
  padding: 3rem 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 1.75rem;
  color: #2c3e50;
  margin: 0;
}

.view-all {
  color: #e74c3c;
  text-decoration: none;
  font-weight: 500;
}

.view-all:hover {
  text-decoration: underline;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* Enhanced Product Card */
.product-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-color: #e0e0e0;
}

.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: white;
}

.discount-badge {
  background: #e74c3c;
}

.new-badge {
  background: #2ecc71;
}

.product-image-container {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}

.product-image-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.03);
  transition: background 0.3s ease;
}

.product-card:hover .image-overlay {
  background: rgba(0,0,0,0.1);
}

.product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-actions {
  opacity: 1;
}

.action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.action-btn:hover {
  background: #e74c3c;
  color: white;
  transform: scale(1.1);
}

.action-btn i {
  font-size: 16px;
}

.product-info {
  padding: 16px;
}

.product-category {
  font-size: 12px;
  color: #777;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Product Grid Layout */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 1rem 0;
}

/* Product Card Styling */
.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image-container {
  position: relative;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  overflow: hidden;
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1.1rem;
  margin: 0.5rem 0;
  line-height: 1.4;
}

.product-price-container {
  margin: 0.5rem 0;
  font-weight: bold;
}

.discounted-price .old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
  margin-left: 0.5rem;
}

.product-actions {
  margin-top: auto;
  padding-top: 1rem;
}

.add-to-cart {
  width: 100%;
  padding: 0.75rem;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.add-to-cart:hover {
  background: #0069d9;
}

/* Badges */
.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.badge {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
  margin-right: 0.5rem;
}

.discount-badge {
  background: #dc3545;
  color: white;
}

.new-badge {
  background: #28a745;
  color: white;
}
.product-title {
  font-size: 15px;
  margin: 0 0 8px 0;
  font-weight: 500;
  line-height: 1.4;
}

.product-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-title a:hover {
  color: #e74c3c;
}

.product-price-container {
  margin: 12px 0;
}

.discounted-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.current-price {
  font-size: 18px;
  font-weight: 700;
  color: #e74c3c;
}

.old-price {
  font-size: 14px;
  text-decoration: line-through;
  color: #999;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0 16px;
  font-size: 13px;
}

.stock-status {
  display: flex;
  align-items: center;
  gap: 4px;
}

.stock-status.in-stock {
  color: #2ecc71;
}

.stock-status.low-stock {
  color: #e74c3c;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.stars {
  color: #f39c12;
  display: flex;
  gap: 1px;
}

.review-count {
  color: #777;
  font-size: 12px;
}

.add-to-cart-btn {
  width: 100%;
  padding: 12px;
  background: #2c3e50;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.add-to-cart-btn:hover {
  background: #1a252f;
}

.add-to-cart-btn .cart-icon {
  transition: transform 0.3s ease;
}

.add-to-cart-btn:hover .cart-icon {
  transform: scale(1.1);
}
