@charset "UTF-8";
:root {
  --primary: #1a73e8;
  --primary-dark: #0d47a1;
  --primary-light: #4dabf7;
  --secondary: #212121;
  --accent: #ffca28;
  --success: #2ecc71;
  --warning: #ffb300;
  --danger: #d32f2f;
  --light: #fafafa;
  --gray-50: #f5f6fa;
  --gray-100: #eceff1;
  --gray-200: #cfd8dc;
  --gray-300: #b0bec5;
  --gray-400: #90a4ae;
  --gray-500: #78909c;
  --gray-600: #607d8b;
  --gray-700: #455a64;
  --gray-800: #37474f;
  --gray-900: #263238;
  --white: #ffffff;
  --black: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  scroll-behavior: smooth;
  background: var(--white);
  position: relative;
}

.show-full-screen {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  background: rgba(0, 0, 0, 0.8);
  padding: 1rem;
  border-radius: 12px;
  z-index: 10000;
}

.show-full-screen img {
  max-width: 90vw;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
  border: 2px solid rgba(255, 255, 255, 0.6); /* 👈 Border color */
  border-radius: 12px;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.5);
}

.no-scroll {
  overflow: hidden !important;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header Styles */
.top-banner {
  background: var(--primary);
  color: var(--white);
  padding: 0.6rem 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
}

.navbar {
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2500;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  z-index: 1000;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-link {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
  margin-left: auto;
  margin-right: auto;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

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

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

/* Search Bar Styles */
.search-container {
  position: relative;
  margin: 0 1rem;
  flex: 1;
  max-width: 400px;
  display: none;
}

.search-bar {
  width: 100%;
  padding: 0.6rem 1rem 0.6rem 2.5rem;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.search-bar:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.search-icon {
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-500);
}

/* Checkout Aside Styles */
.checkout-aside {
  position: fixed;
  top: 0;
  right: -100%;
  width: 400px;
  max-width: 90%;
  height: 100vh;
  background: var(--white);
  z-index: 3001;
  transition: right 0.3s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.checkout-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
}

.close-checkout {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-600);
  font-size: 1.5rem;
  padding: 0.5rem;
}

.close-checkout:hover {
  color: var(--primary);
}

.checkout-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.checkout-item {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: nowrap;
  flex: auto;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.checkout-item .top-side,
.checkout-item .middle-side {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.checkout-item .middle-side {
  margin-top: 1rem;
}
.checkout-item .middle-side .checkout-item-quantity {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  width: 100px;
  background-color: none;
  padding: 5px 7px;
  border: 1px solid rgba(0, 0, 0, 0.2666666667);
  border-radius: 20px;
}
.checkout-item .middle-side .checkout-item-quantity button {
  border: none;
  background: none;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.7803921569);
}
.checkout-item .item-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  margin-left: 10px;
}

.checkout-item-img {
  width: 80px;
  height: 80px;
  overflow: hidden !important;
  border-radius: 15px;
}
.checkout-item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

.checkout-item-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-900);
  flex: 1;
}

.checkout-item-quantity input {
  width: 60px;
  padding: 0.3rem;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  font-size: 0.85rem;
  text-align: center;
}

.checkout-item-price {
  font-size: 0.85rem;
  color: var(--primary-dark);
  font-weight: 600;
}

.checkout-item-remove {
  background: gainsboro;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  color: var(--danger);
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.checkout-item-remove:hover {
  color: var(--primary);
}

.checkout-summary {
  padding: 1rem;
  border-top: 1px solid var(--gray-200);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.summary-total {
  font-weight: 600;
  color: var(--gray-900);
}

.checkout-btn {
  width: 100%;
  padding: 0.7rem;
  font-size: 0.9rem;
  margin-top: 1rem;
  background-color: var(--primary-dark);
  color: var(--white);
}

.checkout-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(38, 50, 56, 0.5); /* --gray-900 with opacity */
  z-index: 1500;
  display: none;
}

.checkout-overlay.active {
  display: block !important;
}

@media (max-width: 768px) {
  .checkout-aside {
    width: 100%;
    max-width: 100%;
  }
  .checkout-title {
    font-size: 1.2rem;
  }
  .checkout-item-title {
    font-size: 0.85rem;
  }
  .checkout-item-quantity input {
    width: 50px;
  }
}
.nav-quick-actions {
  display: none;
  gap: 10px;
  align-items: center;
  width: 100%;
}
.nav-quick-actions .cart-icon {
  background-color: #d1cfc9;
  border: 1px solid #b0aead;
  padding: 5px 6px;
  border-radius: 3px;
  color: var(--white);
  cursor: pointer;
}
.nav-quick-actions .cart-icon i {
  font-size: 1rem;
  color: var(--primary);
}
.nav-quick-actions .cart-icon:hover {
  background-color: #b0aead;
}
.nav-quick-actions .quick-order {
  flex: auto;
}
.nav-quick-actions .quick-order .btn {
  width: 100%;
  padding: 8px 12px;
  font-size: 0.85rem;
  background-color: var(--primary);
  color: var(--white);
  text-align: center !important;
}
.nav-quick-actions .quick-order .btn:hover {
  transform: translateY(0px) !important;
  background-color: var(--primary-dark);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  overflow-y: auto;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--white);
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  height: 80vh;
  position: relative;
  overflow: scroll;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-500);
}

.close-modal:hover {
  color: var(--gray-700);
}

.modal-header {
  margin-bottom: 1.5rem;
}

.modal-title {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.modal-image {
  width: 100%;
  height: 200px;
  background-color: var(--gray-100);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.modal-image img {
  max-width: 90%;
  max-height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}

.modal-details {
  margin-bottom: 1.5rem;
}

.modal-description {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.modal-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.spec-item {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 0.3rem;
}

.spec-value {
  font-weight: 500;
  color: var(--gray-800);
}

.modal-actions {
  display: flex;
  gap: 1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
  color: var(--white);
  padding: 4rem 0;
  position: relative;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--gray-200);
  font-weight: 400;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

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

.stat-number {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-light);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray-300);
}

/* Carousel Section */
.carousel-section {
  height: 800px;
  padding: 0;
  background: var(--gray-50);
}

.carousel {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.carousel-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  image-rendering: auto;
}

.carousel-slide.active {
  opacity: 1;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  image-rendering: auto;
  display: block;
}

.carousel-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(0, 0, 0, 0.65);
  padding: 0.8rem 1rem;
  border-radius: 4px;
  color: var(--white);
  font-size: 0.9rem;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gray-800);
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-nav:hover {
  background: var(--primary);
}

.carousel-prev {
  left: 1rem;
}

.carousel-next {
  right: 1rem;
}

.carousel-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
}

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

/* Products Section */
.products-section {
  width: 100%;
  padding: 3rem 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.products-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-right: 20px;
}
.products-container .product-card {
  width: 100%;
}

.swiper-slide {
  height: auto;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary);
  background: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 4px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

.swiper-pagination-bullet {
  background: var(--gray-400);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
  height: 450px;
  max-height: 450px;
  width: 300px;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  margin-left: 1rem;
  border: rgba(38, 50, 56, 0.231372549) 1px solid;
}
.product-card .view-details {
  display: none !important;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.product-image {
  height: 200px !important;
  max-height: 300px !important;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-image img {
  max-width: 90%;
  max-height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  image-rendering: auto;
  transition: transform 0.3s ease;
}

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

.product-badge {
  position: absolute;
  display: none;
  top: 0.6rem;
  right: 0.6rem;
  background: var(--success);
  color: var(--white);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

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

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.product-description {
  color: var(--gray-600);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* max number of lines */
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: auto;
  width: 100%;
}
.product-actions .separate-action-btns {
  display: flex;
  flex-direction: row;
  flex: auto;
}
.product-actions .separate-action-btns .cart {
  margin-left: 8px;
}
.product-actions .btn {
  flex: 1;
}
.product-actions .cart {
  background-color: orange;
  align-items: center;
  border-radius: 0.6rem;
  color: var(--white);
}
.product-actions .cart i {
  font-size: 1rem;
}
.product-actions .cart span {
  display: none;
}
.product-actions .cart:hover {
  background-color: darkorange;
}

.product-content .price {
  margin-bottom: 1rem;
}
.product-content .price span {
  color: #0d47a1;
  font-size: 1rem;
  font-weight: 500;
}
.product-content .price del {
  text-decoration: line-through;
  color: var(--gray-400);
  font-size: smaller;
}

.quantity-input {
  width: 60px;
  padding: 0.3rem;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 10px;
}

/* Testimonial Section */
.testimonials-section {
  padding: 3rem 0;
  background: var(--gray-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  padding: 1.2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.testimonial-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 0.8rem;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  image-rendering: auto;
}

.testimonial-text {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 0.8rem;
}

.testimonial-author {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* Features Section */
.features-section {
  padding: 3rem 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 8px;
  background: var(--gray-50);
  transition: all 0.2s ease;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.feature-card.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  position: absolute;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--gray-900);
}

.feature-description {
  color: var(--gray-600);
  font-size: 0.85rem;
}

/* Contact Section */
.contact-section {
  padding: 3rem 0;
  background: var(--gray-900);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  transition: all 0.2s ease;
  text-decoration: none;
  color: var(--white);
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(2px);
}

.contact-icon {
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.2rem;
  border-radius: 8px;
}

.contact-form h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.7rem;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
}

.contact-form textarea {
  resize: vertical;
}

/* Sticky Order Button */
.sticky-order {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background: var(--primary);
  color: var(--white);
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  z-index: 999;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.sticky-order i {
  font-size: 1.5rem;
}
.sticky-order .cart_count {
  position: absolute;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -6px;
  right: 0;
  background-color: crimson;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.sticky-order:hover {
  background: var(--primary-dark);
  transform: scale(1.03);
}

/* Responsive Design */
@media (min-width: 769px) {
  .checkout-overlay {
    z-index: 3000 !important;
  }
}
@media (min-width: 600px) {
  .products-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px; /* uniform spacing between cards */
  }
}
@media (max-width: 599px) {
  .product-actions {
    display: flex;
  }
  .product-actions .btn {
    flex: 1;
    text-align: center;
    align-items: center;
  }
  .product-actions .cart {
    border-radius: 4px;
    padding-top: 5px;
  }
  .product-actions .cart span {
    display: initial;
  }
}
@media (min-width: 900px) {
  .products-container {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 20px;
  }
  .product-card {
    width: 100%; /* let it stretch within the grid cell */
  }
}
@media (max-width: 1024px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .carousel {
    height: 350px;
  }
}
@media (max-width: 900px) {
  .search-container {
    order: 3;
    flex: 0 0 100%;
    max-width: 100%;
    margin: 1rem 0 0 0;
  }
}
@media (max-width: 768px) {
  .nav-quick-actions {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: -100%;
    right: 0;
    width: 100%;
    height: auto;
    background: var(--white);
    flex-direction: column;
    border-top: 1px solid var(--gray-200);
    padding: 1.5rem 1rem 2rem;
    transition: top 0.3s ease;
    z-index: 999;
  }
  .nav-menu.active {
    top: 8%;
  }
  .mobile-menu-btn {
    display: block;
    z-index: 1000;
  }
  .search-container {
    display: none;
  }
  .nav-menu.active .search-container {
    display: block;
    margin: 0 0 1.5rem 0;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .carousel-section {
    height: auto !important;
  }
  .carousel {
    height: 280px;
  }
  .carousel-caption {
    font-size: 0.85rem;
    padding: 0.6rem;
  }
  .sticky-order {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  .modal-content {
    padding: 1.5rem;
  }
  .modal-specs {
    grid-template-columns: 1fr;
  }
  .modal-actions {
    flex-direction: column;
  }
  .nav-actions {
    display: none;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .products-grid,
  .testimonials-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  .carousel {
    height: 220px;
  }
  .product-actions {
    flex-direction: column;
  }
  .product-actions .view-details {
    flex: 1;
    width: 100%;
    text-align: center !important;
  }
}
/* Loading Animation */
.loading {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.loading.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  z-index: 9999;
  transition: width 0.2s ease;
}

/* Search Results */
.no-results {
  text-align: center;
  padding: 2rem;
  color: var(--gray-500);
  display: none;
}

.no-results.show {
  display: block;
}/*# sourceMappingURL=index.css.map */