/* Global Styles */
:root {
  --primary: #ff3f6c;
  --secondary: #333;
  --light: #f5f5f6;
  --dark: #282c3f;
  --success: #03a685;
  --border: #d4d5d9;
  --text-light: #696e79;
  --white: #ffffff;
  --black: #000000;
  --shadow: 0 2px 16px 4px rgba(0, 0, 0, 0.1);
  --gradient: linear-gradient(135deg, #ff3f6c, #ff6b9c);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Assistant', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--white);
  color: var(--secondary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.btn {
  border-radius: 4px;
  font-weight: 600;
  padding: 12px 24px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gradient);
  border: none;
  color: white;
  box-shadow: 0 4px 15px rgba(255, 63, 108, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff1f4c, #ff4a82);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 63, 108, 0.4);
  color: white;
}

.btn-outline-primary {
  color: var(--primary);
  border: 2px solid var(--primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* ==========  NAVBAR  ========== */
.navbar {
  background: var(--black) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 0;
  transition: all 0.3s ease;
  border-bottom: 3px solid var(--primary);
}

.navbar-brand {
  font-weight: 800;
  font-size: 28px;
  color: var(--white) !important;
  letter-spacing: -1px;
  padding: 15px 0;
  display: flex;
  align-items: center;
}

.navbar-toggler {
  border: none;
  padding: 8px;
  margin-right: 10px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav {
  gap: 5px;
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--white);
  padding: 15px 20px !important;
  margin: 0 2px;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--gradient);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 10px;
}

.navbar-nav .nav-link:hover {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.navbar-nav .nav-link:hover::before {
  width: 80%;
}

.navbar-nav .nav-link.active {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.15);
}

.navbar-nav .nav-link.active::before {
  width: 80%;
}

.navbar-nav .nav-link i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* Cart Badge */
.badge {
  background: var(--gradient) !important;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-left: 5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Hero Slider */
.hero-slider {
  margin-top: 0;
}

.hero-slider .carousel-item {
  height: 500px;
  position: relative;
}

.hero-slider .carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.3), transparent);
  z-index: 1;
}

.hero-slider .carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.carousel-caption {
  bottom: 30%;
  z-index: 2;
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 20px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  background: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-indicators {
  bottom: 30px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 6px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid transparent;
}

.carousel-indicators button.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

/* Category Section */
.category-section {
  padding: 60px 0;
}

.category-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  position: relative;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.1));
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-card:hover::before {
  opacity: 1;
}

.category-card img {
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.category-card .card-body {
  padding: 25px 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.category-card h5 {
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
  font-size: 20px;
}

.category-card p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Product Cards */
.product-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  margin-bottom: 25px;
  background: var(--white);
}

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

.product-card img {
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-card .card-body {
  padding: 20px;
}

.product-card .card-title {
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 10px;
  height: 40px;
  overflow: hidden;
  line-height: 1.4;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: box;
  box-orient: vertical;
  line-clamp: 2;
}

/* Alternative approach for better browser support */
.product-card .card-title.truncate-2-lines {
  display: block;
  max-height: 2.8em;
  line-height: 1.4em;
  overflow: hidden;
  position: relative;
}

.product-card .card-title.truncate-2-lines::after {
  content: "...";
  position: absolute;
  bottom: 0;
  right: 0;
  padding-left: 5px;
  background: linear-gradient(to right, transparent, white 50%);
}

.product-card .price {
  font-weight: 700;
  color: var(--dark);
  font-size: 18px;
  margin-bottom: 5px;
}

.product-card .original-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 14px;
  margin-right: 8px;
}

.product-card .discount {
  color: var(--success);
  font-weight: 600;
  font-size: 14px;
}

.product-card .rating {
  color: #ffc107;
  font-size: 14px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 70px 0;
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
}

.feature-box {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.feature-box:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-icon i {
  font-size: 3rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
}

.feature-box p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 20px;
  margin-top: 50px;
}

.footer h5 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient);
  border-radius: 10px;
}

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

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li a {
  color: #b0b0b0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
  color: #b0b0b0;
}

/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar-brand {
    font-size: 22px;
  }
  
  .hero-slider .carousel-item {
    height: 400px;
  }
  
  .carousel-caption h2 {
    font-size: 24px;
  }
  
  .carousel-caption p {
    font-size: 14px;
  }
  
  .category-card img,
  .product-card img {
    height: 200px;
  }
  
  .feature-box {
    margin-bottom: 30px;
  }
  
  .footer .col-md-3 {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .hero-slider .carousel-item {
    height: 300px;
  }
  
  .carousel-caption {
    bottom: 20%;
  }
  
  .carousel-caption h2 {
    font-size: 20px;
  }
  
  .carousel-caption .btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .navbar-nav .nav-link {
    padding: 12px 15px !important;
  }
}

.section-title {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
  text-align: center;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient);
  border-radius: 10px;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Filter Box */
.filter-box {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: none;
  margin-bottom: 30px;
}

.filter-box h5 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  font-size: 18px;
}

.form-check {
  margin-bottom: 12px;
}

.form-check-label {
  color: var(--text-light);
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.form-range::-webkit-slider-thumb {
  background: var(--gradient);
}

.form-range::-moz-range-thumb {
  background: var(--gradient);
}

/* Product View Page */
.product-gallery img {
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.product-info {
  padding-left: 30px;
}

.product-title {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
  font-size: 28px;
}

.product-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.product-description {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 25px;
}

.size-options .btn {
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
  padding: 10px 20px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
}

.quantity-input {
  width: 60px;
  height: 40px;
  border: 1px solid var(--border);
  border-left: none;
  border-right: none;
  text-align: center;
  font-weight: 600;
}

/* Cart Page */
.cart-item {
  background: var(--white);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: none;
}

.cart-summary {
  background: var(--white);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: none;
  position: sticky;
  top: 100px;
}

/* Checkout Page */
.checkout-form {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: none;
}

/* About Page */
.about-hero {
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3)), url('../images/about-hero.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
  border-radius: 0 0 30px 30px;
}

.team-member {
  text-align: center;
  margin-bottom: 30px;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 5px solid var(--light);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Contact Page */
.contact-info {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: none;
  height: 100%;
}

.contact-form {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: none;
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success Animation */
.success-animation {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #4bb71b;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #4bb71b;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #4bb71b;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #4bb71b;
  }
}

/* Subcategory Cards */
.subcategory-card {
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  background: var(--white);
  border: 1px solid #f0f0f0;
}

.subcategory-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.subcategory-card .card-body {
  padding: 25px 20px;
}

.subcategory-card .card-title {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 18px;
}

.subcategory-card .card-text {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* About Page Styles */
.about-hero {
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3)), url('../images/about-hero.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: #b0b0b0;
  font-size: 0.9rem;
  margin: 0;
}

.hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
}

.value-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

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

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.value-icon i {
  font-size: 2rem;
  color: white;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 5px solid var(--light);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-box h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Contact Page Styles */
.contact-info, .contact-form {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: none;
  height: 100%;
}

.contact-info h5 {
  color: var(--dark);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info h5 i {
  color: var(--primary);
  width: 20px;
}

/* Checkout Page Styles */
.checkout-form {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: none;
}

.checkout-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}

/* Confirmation Page Styles */
.confirmation-box {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.confirmation-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient);
}

/* Product View Page Styles */
.product-gallery img {
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.product-thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.product-thumbnail:hover,
.product-thumbnail.active {
  opacity: 1;
  border-color: var(--primary);
}

.review-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
}

/* Search Page Styles */
.search-bar {
  margin-bottom: 30px;
}

.search-bar .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.search-bar .form-control {
  border: none;
  padding: 15px 25px;
  font-size: 16px;
}

.search-bar .btn {
  padding: 15px 30px;
  border-radius: 0 50px 50px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-item h3 {
    font-size: 2rem;
  }
  
  .confirmation-box {
    padding: 30px 20px;
  }
  
  .checkout-form,
  .contact-form,
  .contact-info {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .about-hero {
    padding: 80px 0;
  }
  
  .hero-image {
    height: 300px;
  }
  
  .stat-box h3 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .navbar-brand {
    font-size: 22px;
  }
  
  /* Hero Slider */
  .hero-slider .carousel-item {
    height: 500px; 
  }
  
  .hero-slider .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    object-position: center; 
  }
  
  .carousel-caption h2 {
    font-size: 24px;
  }
  
  .carousel-caption p {
    font-size: 14px;
  }
  
  /* Category Cards  */
  .category-card img {
    height: 250px; 
    object-fit: cover;
    width: 100%;
  }
  
  /* Product Cards */
  .product-card img {
    height: 280px; 
    object-fit: cover;
    width: 100%;
  }
  
  .feature-box {
    margin-bottom: 30px;
  }
  
  .footer .col-md-3 {
    margin-bottom: 30px;
  }
  
  .product-gallery img {
    width: 100%;
    height: auto;
    min-height: 350px;
    object-fit: cover;
  }
  
  .product-thumbnail {
    width: 70px !important;
    height: 70px !important;
  }
}