/* Keshvi Creations Fashion E-commerce Styles - New Color Theme */
:root {
  --primary-teal: #008081;
  --primary-coral: #ff6e61;
  --primary-cream: #faf9f5;
  --primary-pink: #e7aeb7;
  --dark-teal: #006666;
  --light-teal: #4db3b3;
  --dark-coral: #e55a4f;
  --light-coral: #ff8a7a;
  --dark-pink: #d19bb0;
  --light-pink: #f0c4d0;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --white: #ffffff;
  --shadow: rgba(0, 128, 129, 0.1);
  --shadow-hover: rgba(0, 128, 129, 0.2);
}

/* Modern Responsive Design - Android App Style */
body {
  padding-top: 0 !important;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--white) 100%);
  color: var(--text-dark);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Fix Header Overlap */
.main-content-section {
  padding-top: 20px;
  margin-top: 0;
}

/* Ensure content is below header */
.fashion-hero-section {
  margin-top: 0;
  padding-top: 0;
}

/* Mobile First Approach */
@media (max-width: 991px) {
  .main-header, .offer-bar { 
    position: static; 
  }
  body { 
    padding-top: 0 !important; 
  }
}
.slider-outer, .container, .container-fluid {
  overflow: visible !important;
}
/* Container Responsive Design */
.container, .container-fluid {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 15px;
  padding-right: 15px;
}

/* Main Content Section - Android App Style */
.main-content-section {
  padding: 20px 0;
  min-height: calc(100vh - 200px);
}

/* Sidebar Filter - Mobile Responsive */
.sidebar-filter {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 8px 25px var(--shadow);
  padding: 20px;
  margin-bottom: 20px;
  position: sticky;
  top: 20px;
  z-index: 100;
}

.filter-container {
  position: relative;
}

.filter-title {
  color: var(--primary-teal);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.2rem;
  text-align: center;
  border-bottom: 2px solid var(--primary-teal);
  padding-bottom: 10px;
}

.filter-group {
  margin-bottom: 25px;
}

.filter-group h5 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1rem;
}

.filter-option {
  margin-bottom: 10px;
}

.filter-option input[type="radio"] {
  margin-right: 10px;
  transform: scale(1.2);
}

.filter-option label {
  font-size: 0.9rem;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.3s ease;
}

.filter-option label:hover {
  color: var(--primary-teal);
}

/* Price Inputs */
.price-inputs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.price-input {
  flex: 1;
  min-width: 120px;
}

.price-input label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 5px;
}

.price-input .form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.price-input .form-control:focus {
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 0.2rem rgba(0, 128, 129, 0.25);
}

/* Main Product Area */
.main-product-area {
  padding-left: 20px;
}

.product-header {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 8px 25px var(--shadow);
  padding: 25px;
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.product-title h2 {
  color: var(--primary-teal);
  font-weight: 700;
  margin: 0;
  font-size: 1.8rem;
}

.product-title p {
  color: var(--text-light);
  margin: 5px 0 0 0;
  font-size: 0.9rem;
}

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

.sort-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-controls label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.sort-controls .form-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.9rem;
  min-width: 150px;
  transition: border-color 0.3s ease;
}

.sort-controls .form-select:focus {
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 0.2rem rgba(0, 128, 129, 0.25);
}

.product-count {
  background: var(--primary-teal);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}
h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-teal);
  font-weight: 700;
  text-shadow: 0 2px 4px var(--shadow);
} 
/* Old marquee styles removed - using header.php styles */

/* Fashion Product Cards - Enhanced Design */
.product-card {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 8px 25px var(--shadow);
  transition: all 0.3s ease;
  overflow: hidden;
  margin-bottom: 25px;
  position: relative;
  border: 1px solid rgba(0, 128, 129, 0.1);
  height: fit-content;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px var(--shadow-hover);
  border-color: var(--primary-coral);
}

/* Product Image Container */
.product-image {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: var(--primary-cream);
}

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

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

/* Discount Badge */
.discount-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--primary-coral) 0%, var(--dark-coral) 100%);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(255, 110, 97, 0.3);
}

/* Product Actions - Hover Effects */
.product-actions {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
  z-index: 3;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wishlist-btn {
  background: var(--white);
  color: var(--primary-coral);
}

.wishlist-btn:hover {
  background: var(--primary-coral);
  color: var(--white);
  transform: scale(1.1);
}

.cart-btn {
  background: var(--primary-teal);
  color: var(--white);
}

.cart-btn:hover {
  background: var(--dark-teal);
  transform: scale(1.1);
}

.action-btn i {
  font-size: 1.1rem;
}

/* Product Info */
.product-info {
  padding: 20px;
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-cream) 100%);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.product-brand {
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-name {
  color: var(--primary-teal);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-description {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 15px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Price Section */
.price-section {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.current-price {
  color: var(--primary-coral);
  font-weight: 700;
  font-size: 1.3rem;
}

.original-price {
  color: var(--text-light);
  font-size: 1rem;
  text-decoration: line-through;
}

/* Product Features */
.product-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}

.color-section {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: space-between;
}

.color-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.color-circle:hover {
  transform: scale(1.1);
}


.discount-badge {
  background: linear-gradient(135deg, var(--primary-coral) 0%, var(--dark-coral) 100%);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.size-section {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.size-tag {
  background: rgba(0, 128, 129, 0.1);
  color: var(--primary-teal);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.feature-tag {
  background: rgba(0, 128, 129, 0.1);
  color: var(--primary-teal);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Add to Cart Button */
.add-to-cart-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-coral) 0%, var(--dark-coral) 100%);
  border: none;
  border-radius: 25px;
  padding: 12px 20px;
  font-weight: 600;
  color: var(--white);
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 110, 97, 0.3);
  background: linear-gradient(135deg, var(--dark-coral) 0%, var(--primary-coral) 100%);
}

/* Fashion Buttons */
.btn-fashion {
  background: linear-gradient(135deg, var(--primary-coral) 0%, var(--dark-coral) 100%);
  border: none;
  color: var(--white);
  border-radius: 25px;
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-fashion:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--shadow-hover);
  color: var(--white);
  background: linear-gradient(135deg, var(--dark-coral) 0%, var(--primary-coral) 100%);
}

/* Fashion Form Styles */
.form-control:focus {
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 0.2rem var(--shadow);
}

.form-select:focus {
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 0.2rem var(--shadow);
}

/* Fashion Alert Styles */
.alert-fashion {
  background: linear-gradient(135deg, var(--primary-coral) 0%, var(--dark-coral) 100%);
  color: var(--white);
  border: none;
  border-radius: 10px;
}

/* Fashion Badge Styles */
.badge-fashion {
  background: var(--primary-teal);
  color: var(--white);
  border-radius: 15px;
  padding: 5px 12px;
  font-size: 0.8rem;
}

/* Fashion Navigation */
.nav-pills .nav-link.active {
  background: var(--primary-teal);
  color: var(--white);
}

.nav-pills .nav-link:hover {
  background: var(--light-pink);
  color: var(--primary-teal);
}

/* Fashion Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--dark-teal) 100%);
  color: var(--white);
  padding: 40px 0 20px;
  border-top: 3px solid var(--primary-coral);
}

.footer h5 {
  color: var(--primary-coral);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.footer a:hover {
  color: var(--primary-coral);
}

/* Fashion Sidebar */
.sidebar {
  background: var(--white);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 20px var(--shadow);
  border: 2px solid var(--light-pink);
}

.sidebar h5 {
  color: var(--primary-teal);
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--primary-coral);
  padding-bottom: 0.5rem;
}

/* Fashion Pagination */
.pagination .page-link {
  color: var(--primary-teal);
  border-color: var(--primary-teal);
}

.pagination .page-item.active .page-link {
  background: var(--primary-teal);
  border-color: var(--primary-teal);
  color: var(--white);
}

.pagination .page-link:hover {
  background: var(--light-pink);
  color: var(--primary-teal);
}

/* Fashion Modal */
.modal-header {
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--dark-teal) 100%);
  color: var(--white);
  border-bottom: none;
}

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

/* Fashion Loading Spinner */
.spinner-border-fashion {
  color: var(--primary-teal);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--dark-teal) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.8;
}

/* Stats Banner */
.stats-banner {
  background: var(--white);
  padding: 40px 0;
  box-shadow: 0 4px 15px var(--shadow);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.stat-card i {
  font-size: 3rem;
  color: var(--primary-teal);
}

.stat-info h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-teal);
  margin: 0;
}

.stat-info p {
  color: var(--text-light);
  margin: 0;
  font-size: 1rem;
}

/* Main Content */
.main-content {
  padding: 40px 0;
  background: var(--primary-cream);
  overflow: hidden;
}

/* Sidebar Filter */
.sidebar-filter {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 8px 25px var(--shadow);
  padding: 25px;
  margin-bottom: 30px;
  position: sticky;
  top: 20px;
  width: 280px;
  float: left;
}

.filter-title {
  color: var(--primary-teal);
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 1.3rem;
  text-align: center;
  border-bottom: 2px solid var(--primary-teal);
  padding-bottom: 15px;
}

.filter-group {
  margin-bottom: 25px;
}

.filter-group h5 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1rem;
}

.filter-option {
  margin-bottom: 12px;
}

.filter-option input[type="radio"] {
  margin-right: 12px;
  transform: scale(1.2);
}

.filter-option label {
  font-size: 0.9rem;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.3s ease;
}

.filter-option label:hover {
  color: var(--primary-teal);
}

.price-inputs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.price-input {
  flex: 1;
  min-width: 120px;
}

.price-input label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 5px;
}

.price-input .form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.price-input .form-control:focus {
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 0.2rem rgba(0, 128, 129, 0.25);
}

/* Main Product Area */
.main-product-area {
  padding-left: 20px;
  width: calc(100% - 300px);
  float: left;
}

.product-header {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 8px 25px var(--shadow);
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.product-title h2 {
  color: var(--primary-teal);
  font-weight: 700;
  margin: 0;
  font-size: 2rem;
}

.product-title p {
  color: var(--text-light);
  margin: 5px 0 0 0;
  font-size: 1rem;
}

.product-controls {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.sort-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sort-controls label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
}

.sort-controls .form-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 1rem;
  min-width: 180px;
  transition: border-color 0.3s ease;
}

.sort-controls .form-select:focus {
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 0.2rem rgba(0, 128, 129, 0.25);
}

.product-count {
  background: var(--primary-teal);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
}

/* Mobile Responsive Design - Android App Style */
@media (max-width: 1200px) {
  .main-product-area {
    padding-left: 15px;
  }
  
  .product-header {
    flex-direction: column;
    text-align: center;
  }
  
  .product-controls {
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .sidebar-filter {
    position: static;
    margin-bottom: 20px;
  }
  
  .main-product-area {
    padding-left: 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }
  
  .stat-card i {
    font-size: 2.5rem;
  }
  
  .stat-info h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .container, .container-fluid {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  /* Hero Section Mobile */
  .fashion-hero-section {
    min-height: 50vh;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-outline {
    width: 200px;
    text-align: center;
  }
  
  /* Stats Banner Mobile */
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }
  
  .stat-card {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .stat-card i {
    font-size: 2rem;
  }
  
  .stat-info h3 {
    font-size: 1.5rem;
  }
  
  /* Product Cards Mobile */
  .product-card {
    min-height: 200px !important;
    overflow: hidden !important;
    margin-bottom: 15px !important;
  }
  
  .product-image {
    height: 120px;
  }
  
  .product-info {
    padding: 10px 10px 10px 10px !important;
    display: flex;
    flex-direction: column;
    min-height: 70px !important;
    justify-content: space-between;
    overflow: hidden !important;
  }
  
  .product-name {
    font-size: 1rem;
    color: #dc3545; /* Red color for product name */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    min-height: 24px;
    line-height: 1.2;
    flex-wrap: wrap;
  }
  
  .product-brand {
    display: none; /* Hide brand on mobile */
  }
  
  .product-description {
    display: none; /* Hide description on mobile */
  }
  
  .discount-badge {
    position: static;
    display: inline-block;
    font-size: 10px;
    padding: 4px 8px;
    margin-left: 8px;
  }
  
  .current-price {
    font-size: 1.2rem;
  }
  
  .add-to-cart-btn {
    padding: 4px 15px !important;
    font-size: 0.8rem !important;
    margin-top: 2px !important;
    margin-bottom: 0px !important;
    width: 100% !important;
    display: block !important;
    position: relative !important;
    z-index: 10 !important;
  }
  
  .product-header {
    padding: 20px;
  }
  
  .product-title h2 {
    font-size: 1.5rem;
  }
  
  .product-controls {
    flex-direction: column;
    gap: 15px;
  }
  
  .sort-controls {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  
  .sort-controls .form-select {
    min-width: 200px;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .btn-fashion {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  /* Hero Section Small Mobile */
  .fashion-hero-section {
    min-height: 40vh;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .hero-stats {
    gap: 15px;
  }
  
  .stat-number {
    font-size: 1.3rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .btn-primary, .btn-outline {
    width: 180px;
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  /* Stats Banner Small Mobile */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .stat-card i {
    font-size: 1.8rem;
  }
  
  .stat-info h3 {
    font-size: 1.3rem;
  }
  
  .stat-info p {
    font-size: 0.8rem;
  }
  
  .main-content-section {
    padding: 15px 0;
  }
  
  .sidebar-filter {
    padding: 15px;
    margin-bottom: 15px;
  }
  
  .filter-title {
    font-size: 1.1rem;
  }
  
  .product-header {
    padding: 15px;
  }
  
  .product-title h2 {
    font-size: 1.3rem;
  }
  
  .product-title p {
    font-size: 0.8rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .product-card {
    margin-bottom: 20px;
    min-height: 180px;
    padding-bottom: 10px;
  }
  
  /* Product Cards Small Mobile */
  .product-card {
    margin-bottom: 15px !important;
    min-height: 180px !important;
    padding-bottom: 0px !important;
    overflow: hidden !important;
  }
  
  .product-image {
    height: 100px;
  }
  
  .product-info {
    padding: 8px 8px 8px 8px !important;
    display: flex;
    flex-direction: column;
    min-height: 70px !important;
    justify-content: space-between;
    overflow: hidden !important;
  }
  
  .product-name {
    font-size: 0.95rem;
    color: #dc3545; /* Red color for product name */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    min-height: 22px;
    line-height: 1.2;
    flex-wrap: wrap;
  }
  
  .product-brand {
    display: none; /* Hide brand on mobile */
  }
  
  .product-description {
    display: none; /* Hide description on mobile */
  }
  
  .discount-badge {
    position: static;
    display: inline-block;
    font-size: 10px;
    padding: 4px 8px;
    margin-left: 8px;
  }
  
  .current-price {
    font-size: 1.1rem;
  }
  
  .add-to-cart-btn {
    padding: 3px 12px !important;
    font-size: 0.75rem !important;
    margin-top: 1px !important;
    margin-bottom: 0px !important;
    width: 100% !important;
    display: block !important;
    position: relative !important;
    z-index: 10 !important;
  }
  
  .action-btn {
    width: 35px;
    height: 35px;
  }
  
  .action-btn i {
    font-size: 1rem;
  }
  
  .price-inputs {
    flex-direction: column;
  }
  
  .price-input {
    min-width: 100%;
  }
}

/* Products Grid - Desktop Vertical, Mobile Horizontal */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0;
  width: 100%;
}

/* Desktop - Vertical Grid */
@media (min-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

/* Tablet - Vertical Grid */
@media (max-width: 1199px) and (min-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* Mobile - Horizontal Grid */
@media (max-width: 991px) {
  .products-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .product-card {
    display: flex;
    flex-direction: row;
    height: 200px;
    margin-bottom: 0;
  }
  
  .product-image {
    width: 40%;
    height: 100%;
    flex-shrink: 0;
  }
  
  .product-info {
    width: 60%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .product-name {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #dc3545; /* Red color for product name */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 24px;
    line-height: 1.2;
    flex-wrap: wrap;
  }
  
  .product-brand {
    display: none; /* Hide brand on mobile */
  }
  
  .product-description {
    display: none; /* Hide description on mobile */
  }
  
  .discount-badge {
    position: static;
    display: inline-block;
    font-size: 10px;
    padding: 4px 8px;
    margin-left: 8px;
  }
  
  .product-features {
    margin-bottom: 10px;
    gap: 6px;
  }
  
  .color-section {
    gap: 4px;
    justify-content: space-between;
  }
  
  .color-circle {
    width: 16px;
    height: 16px;
  }
  
  .discount-badge {
    font-size: 10px;
    padding: 3px 6px;
  }
  
  .size-section {
    gap: 4px;
  }
  
  .size-tag {
    font-size: 0.7rem;
    padding: 2px 6px;
  }
  
  .feature-tag {
    font-size: 0.7rem;
    padding: 2px 6px;
  }
  
  .price-section {
    margin-bottom: 10px;
  }
  
  .current-price {
    font-size: 1.1rem;
  }
  
  .add-to-cart-btn {
    padding: 3px 12px !important;
    font-size: 0.75rem !important;
    margin-top: 1px !important;
    margin-bottom: 0px !important;
    width: 100% !important;
  }
  
  .product-actions {
    top: 10px;
    right: 10px;
    gap: 8px;
  }
  
  .action-btn {
    width: 35px;
    height: 35px;
  }
  
  .action-btn i {
    font-size: 1rem;
  }
}

/* Small Mobile - Single Column */
@media (max-width: 576px) {
  .products-grid {
    gap: 15px;
  }
  
  .product-card {
    height: 120px;
  }
  
  .product-image {
    width: 35%;
  }
  
  .product-info {
    width: 65%;
    padding: 8px 8px 4px 8px;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
  }
  
  .product-name {
    font-size: 0.9rem;
    color: #dc3545; /* Red color for product name */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    min-height: 20px;
    line-height: 1.2;
    flex-wrap: wrap;
  }
  
  .product-brand {
    display: none; /* Hide brand on mobile */
  }
  
  .product-description {
    display: none; /* Hide description on mobile */
  }
  
  .discount-badge {
    position: static;
    display: inline-block;
    font-size: 10px;
    padding: 4px 8px;
    margin-left: 8px;
  }
  
  .current-price {
    font-size: 1rem;
  }
  
  .add-to-cart-btn {
    padding: 5px 10px !important;
    font-size: 0.75rem !important;
    margin-top: 3px !important;
    margin-bottom: 0px !important;
    width: 100% !important;
  }
}

/* Fashion Color Swatches */
.color-swatch {
  display: inline-block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin: 2px;
  border: 2px solid var(--light-pink);
  cursor: pointer;
  transition: all 0.3s ease;
}

.color-swatch.selected {
  border-color: var(--primary-coral);
  transform: scale(1.2);
  box-shadow: 0 0 0 2px var(--primary-teal);
}

/* Fashion Size Buttons */
.size-btn {
  display: inline-block;
  padding: 8px 12px;
  margin: 2px;
  border: 2px solid var(--light-pink);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--white);
  color: var(--text-dark);
  font-weight: 500;
}

.size-btn.selected {
  border-color: var(--primary-coral);
  background: var(--primary-coral);
  color: var(--white);
}

.size-btn:hover {
  border-color: var(--primary-teal);
  background: var(--light-pink);
  color: var(--primary-teal);
}

/* Fashion Search Bar */
.search-bar {
  background: var(--white);
  border-radius: 25px;
  border: 2px solid var(--primary-teal);
  padding: 10px 20px;
  box-shadow: 0 4px 15px var(--shadow);
}

.search-bar:focus {
  outline: none;
  box-shadow: 0 4px 20px var(--shadow-hover);
  border-color: var(--primary-coral);
}

/* Fashion Category Cards */
.category-card {
  background: var(--white);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-hover);
  border-color: var(--primary-coral);
}

.category-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.category-card h5 {
  color: var(--primary-teal);
  font-weight: 600;
  margin-bottom: 10px;
}

/* Old hero section styles removed - using new design below */

/* Fashion Information Section */
.fashion-info-section {
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--white) 100%);
  padding: 60px 0;
  margin: 40px 0;
}

.fashion-info-content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.fashion-main-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: 15px;
  text-shadow: 0 2px 4px var(--shadow);
}

.fashion-subtitle {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 50px;
  font-weight: 500;
  opacity: 0.9;
}

.fashion-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.fashion-info-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
}

.fashion-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px var(--shadow-hover);
}

.fashion-info-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.fashion-info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.fashion-info-rate {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: white;
  color: black;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border: 1px solid #ddd;
}

/* Mobile Responsive - Stack Cards Vertically */
@media (max-width: 768px) {
  .fashion-info-section {
    padding: 40px 0;
    margin: 20px 0;
  }
  
  .fashion-main-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
  
  .fashion-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .fashion-info-grid {
    grid-template-columns: 1fr !important; /* Force single column */
    gap: 20px;
    margin-top: 30px;
  }
  
  .fashion-info-image {
    height: 250px;
  }
  
  .fashion-info-rate {
    font-size: 0.8rem;
    padding: 4px 8px;
    bottom: 10px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .fashion-info-section {
    padding: 30px 0;
  }
  
  .fashion-main-title {
    font-size: 1.8rem;
  }
  
  .fashion-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .fashion-info-image {
    height: 200px;
  }
}

/* Fashion Categories Section */
.machines-section {
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--white) 100%);
  padding: 60px 0;
  margin: 40px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: 15px;
  text-shadow: 0 2px 4px var(--shadow);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-dark);
  font-weight: 500;
  opacity: 0.9;
}

.machines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.machine-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
}

.machine-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px var(--shadow-hover);
}

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

.machine-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
}

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

.machine-content {
  padding: 20px;
}

.machine-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-teal);
  margin-bottom: 10px;
}

.machine-content p {
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.6;
}

.machine-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tag {
  background: var(--primary-coral);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Mobile Responsive for Categories */
@media (max-width: 768px) {
  .machines-section {
    padding: 40px 0;
    margin: 20px 0;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .machines-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  
  .machine-image {
    height: 200px;
  }
  
  .machine-content {
    padding: 15px;
  }
  
  .machine-content h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .machines-section {
    padding: 30px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .machine-image {
    height: 180px;
  }
}

/* Fashion Newsletter */
.newsletter-section {
  background: linear-gradient(135deg, var(--light-pink) 0%, var(--primary-pink) 100%);
  padding: 40px 0;
  text-align: center;
}

.newsletter-section h3 {
  color: var(--primary-teal);
  font-weight: 600;
  margin-bottom: 20px;
}

/* Fashion Social Media */
.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--primary-coral);
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px var(--shadow);
} 
