body {
  font-family: "Montserrat", "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
}

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

header .top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
header .top-bar .logo-area {
  display: flex;
  align-items: center;
}
header .top-bar .logo-area .logo img {
  width: 50px;
  height: 50px;
}
header .top-bar .logo-area .brand-name {
  margin-left: 10px;
}
header .top-bar .logo-area .brand-name h1 {
  margin: 0;
  font-size: 24px;
}
header .top-bar .logo-area .brand-name span {
  font-size: 14px;
  color: #777;
}
header .top-bar .search-bar {
  position: relative;
}
header .top-bar .search-bar i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
}
header .top-bar .search-bar input {
  padding: 10px 30px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
header .top-bar .cart-icon {
  position: relative;
  color: #333;
  margin-left: 20px;
}
header .top-bar .cart-icon .cart-count {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #f00;
  color: #fff;
  border-radius: 50%;
  padding: 2px 5px;
  font-size: 12px;
}
header .top-bar a {
  color: #333;
  text-decoration: none;
  margin-left: 20px;
}
header nav .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
header nav .nav-container .categories {
  position: relative;
}
header nav .nav-container .categories .categories-title {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
}
header nav .nav-container .categories .categories-title span {
  margin-right: 10px;
}
header nav .nav-container .categories .categories-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  z-index: 1;
}
header nav .nav-container .categories .categories-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
header nav .nav-container .categories .categories-menu ul li a {
  display: block;
  padding: 5px 0;
  color: #333;
  text-decoration: none;
}
header nav .nav-container .main-menu a {
  display: inline-block;
  padding: 10px;
  color: #333;
  text-decoration: none;
}

.hero {
  position: relative;
}
.hero .slide {
  display: none;
}
.hero .slide.active {
  display: block;
}
.hero .slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.hero .slider-nav {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.hero .slider-nav .slider-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}
.hero .slider-nav .slider-dot.active {
  background-color: #333;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}
.features .feature-card {
  width: calc(25% - 20px);
  text-align: center;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 20px;
}
.features .feature-card .feature-icon i {
  font-size: 30px;
  color: #333;
}
.features .feature-card .feature-title {
  margin-top: 20px;
  font-size: 18px;
}
.features .feature-card .feature-desc {
  margin-top: 10px;
  font-size: 14px;
  color: #777;
}

.products-section {
  margin-top: 50px;
}
.products-section .section-header h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
.products-section .products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.products-section .products-grid .product-card {
  width: calc(25% - 20px);
  margin-bottom: 20px;
  text-decoration: none;
  color: #333;
}
.products-section .products-grid .product-card .product-image {
  position: relative;
  overflow: hidden;
}
.products-section .products-grid .product-card .product-image img {
  width: 100%;
  height: auto;
}
.products-section .products-grid .product-card .product-image .product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #f00;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
}
.products-section .products-grid .product-card .product-info {
  padding: 10px;
}
.products-section .products-grid .product-card .product-info .product-name {
  font-size: 16px;
  margin-bottom: 5px;
}
.products-section .products-grid .product-card .product-info .product-price {
  font-size: 18px;
  font-weight: bold;
}

.product-detail .product-container {
  display: flex;
  margin-top: 50px;
}
.product-detail .product-container .product-image {
  width: 50%;
}
.product-detail .product-container .product-image img {
  width: 100%;
  height: auto;
}
.product-detail .product-container .product-info {
  width: 50%;
  padding-left: 50px;
}
.product-detail .product-container .product-info .product-title {
  font-size: 30px;
  margin-bottom: 10px;
}
.product-detail .product-container .product-info .product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.product-detail .product-container .product-info .product-rating i {
  color: #ffc107;
  margin-right: 5px;
}
.product-detail .product-container .product-info .product-price {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.product-detail .product-container .product-info .product-description {
  margin-bottom: 20px;
}
.product-detail .product-container .product-info .quantity-selector {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.product-detail .product-container .product-info .quantity-selector h4 {
  margin-right: 10px;
}
.product-detail .product-container .product-info .quantity-selector .quantity-control {
  display: flex;
  align-items: center;
}
.product-detail .product-container .product-info .quantity-selector .quantity-control .quantity-btn {
  padding: 5px 10px;
  border: 1px solid #ccc;
  background-color: #fff;
  cursor: pointer;
}
.product-detail .product-container .product-info .quantity-selector .quantity-control .qty-input {
  width: 50px;
  text-align: center;
  border: 1px solid #ccc;
  border-left: none;
  border-right: none;
  padding: 5px;
}
.product-detail .product-container .product-info .product-actions button {
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-right: 10px;
}
.product-detail .product-container .product-info .product-actions button.btn-primary {
  background-color: #007bff;
  color: #fff;
}
.product-detail .product-container .product-info .product-actions button.btn-secondary {
  background-color: #6c757d;
  color: #fff;
}

.login-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 100px);
}
.login-content .auth-container {
  display: flex;
  width: 800px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.login-content .auth-container .auth-image {
  width: 50%;
  padding: 50px;
  background-color: #f8f9fa;
}
.login-content .auth-container .auth-image h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.login-content .auth-container .auth-image p {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}
.login-content .auth-container .auth-image ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.login-content .auth-container .auth-image ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.login-content .auth-container .auth-image ul li i {
  color: #28a745;
  margin-right: 5px;
}
.login-content .auth-container .auth-form {
  width: 50%;
  padding: 50px;
}
.login-content .auth-container .auth-form .auth-header h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.login-content .auth-container .auth-form .auth-header p {
  font-size: 14px;
  margin-bottom: 20px;
}
.login-content .auth-container .auth-form form .form-group {
  margin-bottom: 20px;
}
.login-content .auth-container .auth-form form .form-group label {
  display: block;
  margin-bottom: 5px;
}
.login-content .auth-container .auth-form form .form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.login-content .auth-container .auth-form form .captcha-container {
  display: flex;
  align-items: center;
}
.login-content .auth-container .auth-form form .captcha-container .captcha-image {
  width: 100px;
  height: 40px;
  margin-right: 10px;
  cursor: pointer;
}
.login-content .auth-container .auth-form form button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
}

footer {
  background-color: #333;
  color: #fff;
  padding: 50px 0;
}
footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .footer-content .footer-column {
  width: calc(50% - 20px);
}
footer .footer-content .footer-column h3 {
  margin-bottom: 20px;
}
footer .footer-content .footer-column p {
  font-size: 14px;
  margin-bottom: 20px;
}
footer .footer-content .footer-column .social-links a {
  color: #fff;
  margin-right: 10px;
  font-size: 20px;
}
footer .footer-content .footer-column .contact-info {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
footer .footer-content .footer-column .contact-info i {
  margin-right: 10px;
}
footer .copyright {
  margin-top: 50px;
  text-align: center;
}

body.cart-page {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
}

.page-title {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 50px 0;
}
.page-title h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}
.page-title p {
  font-size: 1.2em;
}

.cart-content {
  padding: 40px 0;
}
.cart-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.cart-content .cart-container {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
}
.cart-content .cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-content .cart-table th,
.cart-content .cart-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.cart-content .cart-table th {
  background-color: rgb(253.9, 253.9, 254.4);
}
.cart-content .product-cell {
  display: flex;
  align-items: center;
}
.cart-content .product-image {
  width: 80px;
  height: 80px;
  margin-right: 20px;
  overflow: hidden;
  border-radius: 5px;
}
.cart-content .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-content .product-name {
  font-size: 1.1em;
  font-weight: bold;
}
.cart-content .product-price {
  font-size: 1.1em;
  color: #e74c3c;
}
.cart-content .quantity-selector {
  display: flex;
  align-items: center;
}
.cart-content .quantity-selector .qty-btn {
  background-color: rgb(253.9, 253.9, 254.4);
  border: 1px solid #ddd;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 1.2em;
}
.cart-content .quantity-selector .qty-btn:hover {
  background-color: white;
}
.cart-content .quantity-selector .qty-input {
  width: 50px;
  text-align: center;
  border: 1px solid #ddd;
  padding: 5px;
  margin: 0 5px;
}
.cart-content .remove-btn {
  background-color: transparent;
  border: none;
  color: #e74c3c;
  cursor: pointer;
  font-size: 1.2em;
}
.cart-content .remove-btn:hover {
  color: rgb(213.698630137, 43.8356164384, 26.301369863);
}

.cart-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.cart-actions .btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-size: 1em;
}
.cart-actions .btn-outline {
  background-color: transparent;
  border: 1px solid #333;
  color: #333;
}
.cart-actions .btn-outline:hover {
  background-color: #333;
  color: white;
}
.cart-actions .checkout-btn {
  background-color: #27ae60;
  color: white;
}
.cart-actions .checkout-btn:hover {
  background-color: rgb(34.3309859155, 153.1690140845, 84.5070422535);
}

.lv-delivery-style {
  font-family: "Roboto", sans-serif;
  background-color: #fafafa;
  color: #333;
}
.lv-delivery-style .lv-header {
  background-color: #fff;
  border-bottom: 1px solid #eaeaea;
  padding: 20px 0;
  text-align: center;
}
.lv-delivery-style .lv-header .results-title {
  font-size: 24px;
  font-weight: 600;
  color: #555;
}
.lv-delivery-style .lv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px;
}
.lv-delivery-style .lv-grid .lv-product-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.lv-delivery-style .lv-grid .lv-product-card:hover {
  transform: translateY(-5px);
}
.lv-delivery-style .lv-grid .lv-product-card .product-image {
  padding: 20px;
  text-align: center;
}
.lv-delivery-style .lv-grid .lv-product-card .product-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.lv-delivery-style .lv-grid .lv-product-card .product-info {
  padding: 20px;
}
.lv-delivery-style .lv-grid .lv-product-card .product-info .product-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.lv-delivery-style .lv-grid .lv-product-card .product-info .product-price {
  font-size: 16px;
  font-weight: 600;
  color: #008000;
}
.lv-delivery-style .lv-grid .lv-no-results {
  text-align: center;
  padding: 50px 0;
}
.lv-delivery-style .lv-grid .lv-no-results i {
  font-size: 48px;
  color: #ccc;
  margin-bottom: 20px;
}
.lv-delivery-style .lv-grid .lv-no-results h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.lv-delivery-style .lv-grid .lv-no-results p {
  font-size: 16px;
  margin-bottom: 20px;
}
.lv-delivery-style .lv-grid .lv-no-results .suggestions h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.lv-delivery-style .lv-grid .lv-no-results .suggestions div {
  font-size: 16px;
  margin-bottom: 5px;
}
.lv-delivery-style .lv-pagination {
  text-align: center;
  padding: 20px 0;
}
.lv-delivery-style .lv-pagination span {
  display: inline-block;
}
.lv-delivery-style .lv-pagination span a {
  display: inline-block;
  padding: 10px 15px;
  margin: 0 5px;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  color: #555;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.lv-delivery-style .lv-pagination span a:hover {
  background-color: #f0f0f0;
}
.lv-delivery-style .lv-pagination span a.active {
  background-color: #008000;
  color: #fff;
  border-color: #008000;
}

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