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

a {
  color: unset;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #1e293b;
  background-color: #f8fafc;
  line-height: 1.6;
  scroll-behavior: smooth;
}
body h1, body h2, body h3, body h4, body h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
header .top-bar .logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}
header .top-bar .logo-area .logo > img {
  object-fit: contain;
  height: 50px;
}
header .top-bar .logo-area .brand-name h1 {
  font-size: 18px;
  line-height: 1.3;
  color: #2563eb;
}
header .top-bar .logo-area .brand-name span {
  font-size: 12px;
  color: #64748b;
  display: block;
  font-weight: normal;
}
header .top-bar .search-bar {
  flex: 0 1 500px;
  position: relative;
}
header .top-bar .search-bar input {
  width: 100%;
  padding: 12px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 30px;
  font-size: 14px;
  transition: all 0.3s;
  padding-left: 45px;
}
header .top-bar .search-bar input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
header .top-bar .search-bar i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
}
header .top-bar .user-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
header .top-bar .user-actions a {
  color: #1e293b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
header .top-bar .user-actions a:hover {
  color: #2563eb;
}
header .top-bar .user-actions .cart-icon {
  position: relative;
}
header .top-bar .user-actions .cart-icon .cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #f97316;
  color: white;
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav {
  background-color: #2563eb;
  padding: 0;
}
header nav .nav-container {
  display: flex;
}
header nav .nav-container .categories {
  position: relative;
  width: 250px;
  background-color: #1d4ed8;
}
header nav .nav-container .categories .categories-title {
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
header nav .nav-container .categories .categories-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 8px 8px;
  display: none;
  z-index: 10;
}
header nav .nav-container .categories .categories-menu ul {
  list-style: none;
}
header nav .nav-container .categories .categories-menu ul li {
  padding: 0;
}
header nav .nav-container .categories .categories-menu ul li a {
  display: block;
  padding: 12px 20px;
  color: #1e293b;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}
header nav .nav-container .categories .categories-menu ul li a:hover {
  background-color: #f1f5f9;
  border-left: 3px solid #2563eb;
  padding-left: 17px;
}
header nav .nav-container .categories:hover .categories-menu {
  display: block;
}
header nav .nav-container .main-menu {
  flex: 1;
  display: flex;
}
header nav .nav-container .main-menu a {
  color: white;
  text-decoration: none;
  padding: 15px 20px;
  font-size: 14px;
  transition: background-color 0.2s;
}
header nav .nav-container .main-menu a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hero {
  margin: 25px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 400px;
  position: relative;
}
.hero .slide {
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .slide > img {
  object-fit: contain;
  height: 100%;
}
.hero .slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.hero .slider-nav .slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
.hero .slider-nav .slider-dot.active {
  background-color: white;
}

.products-section {
  padding: 50px 0;
  scroll-padding-top: 90px;
}
.products-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.products-section .section-header .section-title {
  font-size: 26px;
  position: relative;
  padding-bottom: 10px;
}
.products-section .section-header .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #2563eb;
  border-radius: 3px;
}
.products-section .section-header .view-all {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.products-section .section-header .view-all:hover {
  text-decoration: underline;
}
.products-section .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}
.products-section .products-grid .product-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.products-section .products-grid .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
.products-section .products-grid .product-card .product-image {
  height: 200px;
  position: relative;
}
.products-section .products-grid .product-card .product-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.products-section .products-grid .product-card .product-image .product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #f97316;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.products-section .products-grid .product-card .product-info {
  padding: 20px;
}
.products-section .products-grid .product-card .product-info .product-category {
  color: #64748b;
  font-size: 12px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.products-section .products-grid .product-card .product-info .product-name {
  line-height: 22px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  height: 40px;
  overflow: hidden;
}
.products-section .products-grid .product-card .product-info .product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 700;
}
.products-section .products-grid .product-card .product-info .add-to-cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e2e8f0;
}
.products-section .products-grid .product-card .product-info .add-to-cart .rating {
  color: #f59e0b;
}
.products-section .products-grid .product-card .product-info .add-to-cart .add-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #2563eb;
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.products-section .products-grid .product-card .product-info .add-to-cart .add-btn:hover {
  background-color: #1d4ed8;
  transform: scale(1.1);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 50px 0;
}
.features .feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}
.features .feature-card:hover {
  transform: translateY(-5px);
}
.features .feature-card .feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #2563eb;
  font-size: 24px;
}
.features .feature-card .feature-title {
  font-size: 18px;
  margin-bottom: 10px;
}
.features .feature-card .feature-desc {
  color: #64748b;
  font-size: 14px;
}

footer {
  background-color: #1e293b;
  color: white;
  padding: 60px 0 30px;
  margin-top: 50px;
}
footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
footer .footer-content .footer-column h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
footer .footer-content .footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #2563eb;
}
footer .footer-content .footer-column .footer-links {
  list-style: none;
}
footer .footer-content .footer-column .footer-links li {
  margin-bottom: 12px;
}
footer .footer-content .footer-column .footer-links li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 14px;
}
footer .footer-content .footer-column .footer-links li a:hover {
  color: white;
}
footer .footer-content .footer-column .contact-info {
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
}
footer .footer-content .footer-column .social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
footer .footer-content .footer-column .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s;
}
footer .footer-content .footer-column .social-links a:hover {
  background-color: #2563eb;
  transform: translateY(-3px);
}
footer .copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 14px;
}

.promo-banner {
  background: linear-gradient(to right, #2563eb, #4f46e5);
  color: white;
  padding: 15px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 992px) {
  .search-bar {
    flex: 0 1 300px;
  }
}
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }
  .search-bar {
    width: 100%;
  }
  .nav-container {
    flex-direction: column;
  }
  .categories {
    width: 100%;
  }
  .categories-menu {
    position: static;
    display: block;
    box-shadow: none;
    border-radius: 0;
  }
  .main-menu {
    overflow-x: auto;
    padding: 10px 0;
  }
  .hero {
    height: 300px;
  }
  .slide-content {
    padding: 0 30px;
  }
  .slide-content h2 {
    font-size: 28px;
  }
}
.main-content.login-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  /* Responsive Design */
}
.main-content.login-content .auth-container {
  display: flex;
  width: 100%;
  max-width: 1000px;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.main-content.login-content .auth-container .auth-image {
  flex: 1;
  background: linear-gradient(rgba(37, 99, 235, 0.8), rgba(37, 99, 235, 0.9)), url("https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  color: white;
  display: none;
}
.main-content.login-content .auth-container .auth-image h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
.main-content.login-content .auth-container .auth-image p {
  margin-bottom: 30px;
  opacity: 0.9;
}
.main-content.login-content .auth-container .auth-image .auth-features {
  list-style: none;
}
.main-content.login-content .auth-container .auth-image .auth-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-content.login-content .auth-container .auth-form {
  flex: 1;
  padding: 50px;
  max-width: 500px;
}
.main-content.login-content .auth-container .auth-form .auth-header {
  margin-bottom: 30px;
  text-align: center;
}
.main-content.login-content .auth-container .auth-form .auth-header h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #2563eb;
}
.main-content.login-content .auth-container .auth-form .auth-header p {
  color: #64748b;
}
.main-content.login-content .auth-container .auth-form .auth-header p a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}
.main-content.login-content .auth-container .auth-form .auth-header p a:hover {
  text-decoration: underline;
}
.main-content.login-content .auth-container .auth-form form .form-group {
  margin-bottom: 20px;
}
.main-content.login-content .auth-container .auth-form form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
}
.main-content.login-content .auth-container .auth-form form .form-group .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s;
}
.main-content.login-content .auth-container .auth-form form .form-group .form-control:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.main-content.login-content .auth-container .auth-form form .form-group .password-field {
  position: relative;
}
.main-content.login-content .auth-container .auth-form form .form-group .password-field .password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  cursor: pointer;
}
.main-content.login-content .auth-container .auth-form form .btn {
  display: inline-block;
  width: 100%;
  padding: 14px;
  background-color: #2563eb;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 20px;
}
.main-content.login-content .auth-container .auth-form form .btn:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
}
@media (min-width: 768px) {
  .main-content.login-content .auth-image {
    display: flex !important;
  }
}
@media (max-width: 576px) {
  .main-content.login-content .auth-form {
    padding: 30px !important;
  }
}

.product-detail {
  padding: 40px 0;
}
.product-detail .product-container {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}
.product-detail .product-container .product-image {
  flex: 1;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  height: 400px;
}
.product-detail .product-container .product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.product-detail .product-container .product-info {
  flex: 1;
  max-width: 500px;
}
.product-detail .product-container .product-info .product-title {
  font-size: 28px;
  margin-bottom: 10px;
  color: #1e293b;
}
.product-detail .product-container .product-info .product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #f59e0b;
  margin-bottom: 15px;
}
.product-detail .product-container .product-info .product-price {
  margin-bottom: 25px;
}
.product-detail .product-container .product-info .product-price .current-price {
  font-size: 32px;
  font-weight: 700;
  color: #2563eb;
}
.product-detail .product-container .product-info .product-price .original-price {
  font-size: 20px;
  color: #64748b;
  text-decoration: line-through;
  margin-left: 10px;
}
.product-detail .product-container .product-info .product-price .discount-badge {
  display: inline-block;
  background-color: #f97316;
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-left: 10px;
}
.product-detail .product-container .product-info .product-description {
  margin-bottom: 25px;
  color: #1e293b;
  line-height: 1.7;
}
.product-detail .product-container .product-info .quantity-selector {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.product-detail .product-container .product-info .quantity-selector .quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
}
.product-detail .product-container .product-info .quantity-selector .quantity-control .quantity-btn {
  width: 40px;
  height: 40px;
  background-color: #f1f5f9;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail .product-container .product-info .quantity-selector .quantity-control .quantity-input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  font-size: 16px;
  font-weight: 600;
}
.product-detail .product-container .product-info .product-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}
.product-detail .product-container .product-info .product-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 16px;
  border: 2px solid transparent;
}
.product-detail .product-container .product-info .product-actions .btn.btn-primary {
  background-color: #2563eb;
  color: white;
  flex: 1;
}
.product-detail .product-container .product-info .product-actions .btn.btn-primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
}
.product-detail .product-container .product-info .product-actions .btn.btn-secondary {
  background-color: white;
  color: #2563eb;
  border-color: #2563eb;
}
.product-detail .product-container .product-info .product-actions .btn.btn-secondary:hover {
  background-color: #f1f5f9;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .product-detail .product-container {
    flex-direction: column;
  }
  .product-detail .product-container .product-image {
    height: 300px;
  }
  .product-detail .product-container .product-actions {
    flex-direction: column;
  }
  .product-detail .product-container .product-actions .btn {
    width: 100%;
  }
}
.cart-page .page-title {
  text-align: center;
  padding: 12px 0;
}
.cart-page .page-title h2 {
  font-size: 36px;
  margin-bottom: 10px;
}
.cart-page .page-title p {
  font-size: 18px;
}
.cart-page .cart-content {
  padding: 40px 0;
}
.cart-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.cart-page .cart-container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
}
.cart-page .cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-page .cart-table th,
.cart-page .cart-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.cart-page .cart-table th {
  background-color: #f9f9f9;
  font-weight: 600;
}
.cart-page .product-cell {
  display: flex;
  align-items: center;
}
.cart-page .product-image {
  width: 80px;
  height: 80px;
  margin-right: 20px;
  border-radius: 4px;
  overflow: hidden;
}
.cart-page .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-page .product-info {
  display: flex;
  flex-direction: column;
}
.cart-page .product-name {
  font-size: 18px;
  font-weight: 600;
}
.cart-page .product-price {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
.cart-page .quantity-selector {
  display: flex;
  align-items: center;
}
.cart-page .qty-btn {
  width: 30px;
  height: 30px;
  background-color: #f9f9f9;
  border: 1px solid #eee;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}
.cart-page .qty-btn:hover {
  background-color: #eee;
}
.cart-page .qty-input {
  width: 50px;
  height: 30px;
  text-align: center;
  border: 1px solid #eee;
  margin: 0 5px;
}
.cart-page .remove-btn {
  background-color: transparent;
  border: none;
  color: #2563eb;
  cursor: pointer;
  font-size: 18px;
  transition: color 0.3s ease;
}
.cart-page .remove-btn:hover {
  color: #d83d57;
}
.cart-page .cart-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.cart-page .btn {
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}
.cart-page .btn-outline {
  background-color: transparent;
  border: 1px solid #333;
  color: #333;
}
.cart-page .btn-outline:hover {
  background-color: #333;
  color: #fff;
}
.cart-page .checkout-btn {
  background-color: #2563eb;
  color: #fff;
}
.cart-page .subtotal {
  font-size: 24px;
  font-weight: 600;
  color: #333;
}

.search-page {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f7fa;
  color: #333;
}
.search-page .results-header {
  background-color: #e9f4ff;
  padding: 20px 40px;
  border-bottom: 1px solid #dce6f2;
}
.search-page .results-header .results-title {
  margin: 0;
  color: #007BFF;
}
.search-page .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px;
}
.search-page .products-grid .product-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #333;
  transition: transform 0.3s ease;
}
.search-page .products-grid .product-card:hover {
  transform: translateY(-5px);
}
.search-page .products-grid .product-card .product-image {
  height: 200px;
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.search-page .products-grid .product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search-page .products-grid .product-card .product-info {
  padding: 15px;
}
.search-page .products-grid .product-card .product-info .product-name {
  margin: 0 0 10px 0;
  font-size: 1.2em;
  font-weight: 600;
}
.search-page .products-grid .product-card .product-info .product-price {
  color: #007BFF;
  font-weight: 600;
  font-size: 1.1em;
}
.search-page .products-grid .no-results {
  text-align: center;
  padding: 40px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  grid-column: 1/-1;
}
.search-page .products-grid .no-results i {
  font-size: 3em;
  color: #007BFF;
  margin-bottom: 20px;
}
.search-page .products-grid .no-results .suggestions {
  margin-top: 20px;
}
.search-page .products-grid .no-results .suggestions h4 {
  margin-bottom: 10px;
}
.search-page .products-grid .no-results .suggestions div {
  margin-bottom: 5px;
}
.search-page .pagination {
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
}
.search-page .pagination a {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 5px;
  background-color: white;
  border: 1px solid #dce6f2;
  border-radius: 4px;
  text-decoration: none;
  color: #007BFF;
  transition: background-color 0.3s ease;
}
.search-page .pagination a.active {
  background-color: #007BFF;
  color: white;
  border-color: #007BFF;
}
.search-page .pagination a:hover {
  background-color: #e9f4ff;
}

/*# sourceMappingURL=index.css.map */
