:root {
  --primary-color: #26376f;
  --secondary-color: #f97316;
  --accent-color: #f1f5f9;
  --dark-color: #1e293b;
  --light-color: #ffffff;
  --gray-color: #64748b;
  --success-color: #10b981;
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: "Inter", sans-serif;
  color: var(--dark-color);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--accent-color);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.highlight {
  color: var(--secondary-color);
}
/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--primary-color);
  color: var(--light-color);
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
  color: var(--light-color);
}

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

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

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

.btn-secondary:hover {
  background: #ea580c;
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

/* CART DROPDOWN */
.cart-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 380px;
  background: var(--light-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: var(--border-radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1001;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.cart-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cart-dropdown-header {
  padding: 20px;
  border-bottom: 1px solid #e2e8f0;
  background: var(--accent-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-dropdown-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.cart-dropdown-header h4 span {
  color: var(--secondary-color);
  font-weight: 700;
}

.close-cart-dropdown {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-color);
  cursor: pointer;
  display: none;
}

.cart-dropdown-body {
  max-height: 350px;
  overflow-y: auto;
  padding: 0;
}

.cart-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #e2e8f0;
  transition: background 0.3s ease;
}

.cart-item:hover {
  background: var(--accent-color);
}

.cart-item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quantity-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--dark-color);
  transition: var(--transition);
}

.quantity-btn:hover {
  background: var(--primary-color);
  color: var(--light-color);
}

.quantity-value {
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  margin-left: 10px;
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.cart-item-remove:hover {
  transform: scale(1.2);
}

.cart-item-subtotal {
  margin-left: 10px;
  text-align: right;
  min-width: 70px;
}

.cart-dropdown-footer {
  padding: 20px;
  border-top: 1px solid #e2e8f0;
  background: var(--light-color);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e2e8f0;
}

.cart-subtotal h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0;
}

.cart-subtotal span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.cart-dropdown-actions {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.cart-dropdown-actions .btn {
  width: 100%;
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
}

.empty-cart-message {
  padding: 40px 20px;
  text-align: center;
  color: var(--gray-color);
}

.empty-cart-message i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.empty-cart-message p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* HEADER */
.header {
  background: var(--light-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo i {
  margin-right: 10px;
  font-size: 1.8rem;
}

.search {
  position: relative;
  flex: 1;
  max-width: 400px;
  margin: 0 20px;
}

.search input {
  width: 100%;
  padding: 10px 40px 10px 16px;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
  background: var(--accent-color);
  transition: var(--transition);
  font-size: 0.9rem;
}

.search input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: var(--light-color);
}

.search button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gray-color);
  padding: 8px 10px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.search button:hover {
  color: var(--primary-color);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-actions a {
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

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

.nav-btn {
  padding: 8px 16px;
  background: var(--secondary-color);
  color: var(--light-color);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  text-decoration: none;
}

.nav-btn:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* DESKTOP NAVIGATION - FIXED CENTERING */
.main-nav {
  background: var(--light-color);
  border-top: 1px solid #e2e8f0;
  position: relative;
  z-index: 999;
}

.nav-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.05);
}

.nav-link i {
  margin-left: 5px;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i {
  transform: rotate(180deg);
}

/* DROPDOWN MENU */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--light-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1000;
  overflow: hidden;
}

.nav-item:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-list {
  list-style: none;
  padding: 10px 0;
  margin: 0;
}

.dropdown-item {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  color: var(--dark-color);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.dropdown-item:hover {
  background: var(--accent-color);
  color: var(--primary-color);
}

.dropdown-item i {
  margin-right: 10px;
  color: var(--primary-color);
  font-size: 1rem;
}

/* MOBILE ICONS */
.mobile-icons {
  display: flex;
  align-items: center;
}

.mobile-icons i {
  font-size: 1.3rem;
  margin-left: 14px;
  cursor: pointer;
  color: var(--dark-color);
  transition: color 0.3s ease;
}

.mobile-icons i:hover {
  color: var(--primary-color);
}

.cart-icon-wrapper {
  position: relative;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--secondary-color);
  color: var(--light-color);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 350px;
  height: 100%;
  background: var(--light-color);
  z-index: 2000;
  transition: left 0.3s ease;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-header {
  background: var(--light-color);
  color: var(--light-color);
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: var(--primary-color) 3px solid;
}

.close-menu {
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

.close-menu:hover {
  transform: rotate(90deg);
}

.mobile-menu-body {
  padding: 16px;
}

.mobile-menu-body input {
  width: 100%;
  padding: 10px 16px;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
  margin-bottom: 16px;
  background: var(--accent-color);
}

.mobile-menu-body ul {
  list-style: none;
}

.mobile-menu-body li {
  border-bottom: 1px solid #e2e8f0;
}
.mobile-menu-body .btn-mobile-nav-create {
  background: transparent;
  border: 3px var(--primary-color) solid;
  color: var(--primary-color);
  justify-content: center;
  margin-bottom: 5px;
}

.mobile-menu-body .btn-mobile-nav-create:hover {
  background: var(--secondary-color);
  border: 3px var(--secondary-color) solid;
  color: var(--light-color);
}

.mobile-menu-body .btn-mobile-nav-sign {
  background: var(--primary-color);
  color: var(--light-color);

  justify-content: center;
}

.mobile-menu-body .btn-mobile-nav-sign:hover {
  background: var(--secondary-color);
  border: 3px var(--secondary-color) solid;
  color: var(--light-color);
}
.mobile-menu-body a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  text-decoration: none;
  color: var(--dark-color);
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.mobile-menu-body a:hover {
  color: var(--primary-color);
}

.mobile-menu-body a i {
  margin-right: 10px;
  color: var(--primary-color);
}

.mobile-menu-footer {
  width: 100%;
  background: var(--dark-color);
  color: var(--light-color);
  display: flex;
  justify-content: space-around;
  padding: 12px 0;
  font-size: 0.8rem;
  position: absolute;
  bottom: 0;
}

.mobile-menu-footer div {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-menu-footer div:hover {
  color: var(--secondary-color);
}

.mobile-menu-footer div i {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

/* SWIPER STYLES */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color);
  background: var(--light-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary-color);
  color: var(--light-color);
}

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

.swiper-pagination-bullet {
  background: var(--gray-color);
  opacity: 0.7;
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active {
  background: var(--secondary-color);
  opacity: 1;
}

/* HERO SECTION - FIXED */
.hero {
  margin-bottom: 5rem;
  position: relative;
  height: 600px;
}

.heroSwiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.hero-content {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  color: var(--light-color);
  max-width: 600px;
  z-index: 2;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-content .highlight {
  color: var(--secondary-color);
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  opacity: 0.9;
}

.hero-content .content-btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--secondary-color);
  color: var(--light-color);
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.hero-content .content-btn:hover {
  background: var(--light-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

.hero-features {
  display: flex;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-feature {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.hero-feature i {
  color: var(--secondary-color);
  margin-right: 8px;
  font-size: 1.1rem;
}

/* HERO NAVIGATION BUTTONS */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
  color: var(--light-color);
  background: rgba(0, 0, 0, 0.3);
  width: 50px;
  height: 50px;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
  background: var(--secondary-color);
}

.heroSwiper .swiper-button-next {
  right: 20px;
}

.heroSwiper .swiper-button-prev {
  left: 20px;
}

.heroSwiper .swiper-pagination-bullet {
  background: var(--light-color);
  opacity: 0.7;
}

.heroSwiper .swiper-pagination-bullet-active {
  background: var(--secondary-color);
  opacity: 1;
}

/* CATEGORIES SECTION */
.categories {
  background: var(--accent-color);
  position: relative;
  z-index: 50;
  margin-top: 0;
}

.categories .highlight {
  color: var(--secondary-color);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark-color);
}

.section-header p {
  font-size: 1rem;
  color: var(--gray-color);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.category-card {
  background: var(--light-color);
  border-radius: var(--border-radius);
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.category-icon {
  width: 60px;
  height: 60px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: var(--transition);
}

.category-card:hover .category-icon {
  background: var(--secondary-color);
}

.category-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.category-card:hover .category-icon i {
  color: var(--light-color);
}

.category-card:hover .category-icon img {
  filter: brightness(0) invert(1);
}

.category-card h3 {
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
}

/* PRODUCTS SECTION */
.products {
  padding: 60px 0;
  background: var(--light-color);
}
.products-title .highlight {
  color: var(--secondary-color);
}
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.products-title h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

.products-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 16px;
  background: var(--accent-color);
  border: none;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--dark-color);
  font-size: 0.9rem;
}

.filter-btn.active {
  background: var(--primary-color);
  color: var(--light-color);
}

.filter-btn:hover {
  background: var(--secondary-color);
  color: var(--light-color);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

.product-card {
  background: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--secondary-color);
  color: var(--light-color);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
}

.product-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-actions {
  opacity: 1;
}

.action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: var(--primary-color);
}
.text-white {
  color: var(--light-color);
}
.action-btn:hover {
  background: var(--secondary-color);
  color: var(--light-color);
}

.product-info {
  padding: 15px;
}

.product-category {
  color: var(--gray-color);
  font-size: 0.8rem;
  margin-bottom: 5px;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;

  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.product-rating i {
  color: #fbbf24;
  font-size: 0.8rem;
}

.product-rating span {
  margin-left: 5px;
  color: var(--gray-color);
  font-size: 0.8rem;
}

.product-price {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.price-current {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.price-old {
  font-size: 0.9rem;
  color: var(--gray-color);
  text-decoration: line-through;
  margin-left: 8px;
}

.product-footer {
  display: flex;
  gap: 10px;
}

.btn-add-cart {
  flex: 1;
  padding: 8px 0;
  background: var(--primary-color);
  color: var(--light-color);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.btn-add-cart:hover {
  background: var(--secondary-color);
}

/* ABOUT SECTION */
.about {
  background: var(--accent-color);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark-color);
}

.about-content p {
  font-size: 1rem;
  color: var(--gray-color);
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
}

.about-feature img {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-right: 12px;
  margin-top: 3px;
}

.about-feature h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.about-feature p {
  color: var(--gray-color);
  font-size: 0.9rem;
  margin: 0;
}

.about-image {
  flex: 1;
  min-width: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

/* SERVICES SECTION */
.services {
  padding: 60px 0;
  background: var(--light-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-card {
  background: var(--light-color);
  border-radius: var(--border-radius);
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 120px;
  width: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.service-card:hover .service-image {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.service-card p {
  color: var(--gray-color);
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.service-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  align-items: center;
  transition: var(--transition);
  font-size: 0.95rem;
}

.service-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
  color: var(--secondary-color);
}

/* TESTIMONIALS SECTION */
.testimonials {
  padding: 60px 0;
  background: var(--light-color);
}

.testimonials-container {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--light-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  position: relative;
  border: 1px solid #e2e8f0;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 60px;
  color: rgba(37, 99, 235, 0.1);
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--gray-color);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.author-info p {
  color: var(--gray-color);
  font-size: 0.9rem;
  margin: 0;
}

.testimonial-rating {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

/* CTA SECTION */
.cta {
  padding: 70px 0;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--light-color);
  text-align: center;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.btn-cta {
  display: inline-block;
  padding: 14px 30px;
  background: var(--secondary-color);
  color: var(--light-color);
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
  font-size: 1rem;
}

.btn-cta:hover {
  background: #ea580c;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
  color: var(--light-color);
}

/* CONTACT SECTION */
.contact {
  padding: 60px 0;
  background: var(--accent-color);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-info p {
  color: var(--gray-color);
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-right: 12px;
  margin-top: 3px;
}

.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-item p {
  color: var(--gray-color);
  margin: 0;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
  background: var(--secondary-color);
  color: var(--light-color);
  transform: translateY(-3px);
}

.contact-form {
  background: var(--light-color);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* FOOTER */
footer {
  background: var(--primary-color);
  color: var(--light-color);
  padding: 50px 0 20px;
}

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

.footer-logo {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--light-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-logo i {
  margin-right: 10px;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--secondary-color);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.copyright {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* VIEW ALL BUTTON */
.view-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
  background: var(--primary-color);
  color: var(--light-color);
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.view-all-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.view-all-btn i {
  margin-left: 5px;
}

/* CAROUSEL CONTAINER */
.swiper-container {
  overflow: hidden;
  padding: 0 0 40px 0;
  position: relative;
}

.swiper-slide {
  height: auto;
}
.swiper-slide a {
  text-decoration: none;
  color: var(--primary-color);
}
/* SUCCESS NOTIFICATION */
.notification {
  position: fixed;
  top: 20px;
  right: -350px;
  background: var(--light-color);
  color: var(--dark-color);
  padding: 15px 20px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: right 0.3s ease;
  z-index: 9999;
  max-width: 320px;
}

.notification.show {
  right: 20px;
}

.notification-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--success-color);
  color: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notification-content h4 {
  margin: 0 0 5px;
  font-size: 1rem;
}

.notification-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-color);
}

.notification-close {
  background: none;
  border: none;
  color: var(--gray-color);
  cursor: pointer;
  font-size: 1.2rem;
  margin-left: auto;
}

/* RESPONSIVE */
.mobile-only {
  display: none;
}

@media (max-width: 992px) {
  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    height: 500px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .mega-menu-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .mega-menu-banner {
    grid-column: span 2;
  }

  .cart-dropdown {
    width: 350px;
  }
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: flex;
  }

  .main-nav {
    display: none;
  }

  .hero {
    height: 450px;
  }

  .hero-content {
    left: 5%;
    max-width: 90%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .heroSwiper .swiper-button-next,
  .heroSwiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .heroSwiper .swiper-button-next {
    right: 10px;
  }

  .heroSwiper .swiper-button-prev {
    left: 10px;
  }

  .hero-features {
    flex-direction: column;
    gap: 8px;
  }

  .hero-feature {
    margin-right: 0;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .cta h2 {
    font-size: 1.8rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-column h4::after {
    left: 5%;
    transform: translateX(-50%);
    text-align: left;
  }

  .footer-social {
    justify-content: center;
  }

  .products-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
  }

  .category-card {
    padding: 20px 10px;
  }

  .category-icon {
    width: 50px;
    height: 50px;
  }

  .category-icon i {
    font-size: 1.3rem;
  }

  .category-card h3 {
    font-size: 0.9rem;
  }

  /* Cart dropdown mobile responsive */
  .cart-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    border: none;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    opacity: 1;
    visibility: visible;
    display: flex;
    flex-direction: column;
    z-index: 2001;
  }

  .cart-dropdown.show {
    transform: translateX(0);
  }

  .close-cart-dropdown {
    display: block;
  }

  .cart-dropdown-header {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .cart-dropdown-body {
    flex: 1;
    overflow-y: auto;
    max-height: none;
  }

  .cart-dropdown-footer {
    padding: 15px;
    border-top: 1px solid #e2e8f0;
  }

  .cart-item {
    padding: 12px 15px;
  }

  .cart-item-image {
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }

  /* Notification mobile responsive */
  .notification {
    right: -100%;
    max-width: calc(100% - 40px);
  }

  .notification.show {
    right: 20px;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 1.8rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .cta h2 {
    font-size: 1.5rem;
  }

  .cta p {
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 20px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .category-card {
    padding: 15px 8px;
  }

  .category-icon {
    width: 45px;
    height: 45px;
  }

  .category-icon i {
    font-size: 1.2rem;
  }

  .category-card h3 {
    font-size: 0.8rem;
  }

  /* Cart dropdown mobile */
  .cart-dropdown-body {
    max-height: none;
  }

  .cart-item-title {
    font-size: 0.85rem;
  }

  .cart-item-price {
    font-size: 0.8rem;
  }
}

/* UTILITY CLASSES */
.mb-5 {
  margin-bottom: 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

/* TEMPORARILY DISABLE AOS FOR NAVIGATION */
.main-nav {
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
}

/* Hero Section */

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
  z-index: 1;
}
/* sercices page */
.section-title {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 15px;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

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

.section-divider {
  width: 50px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 20px auto 0;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

/* Service Card */
.service-card {
  background: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

/* Service Content */
.service-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-description {
  color: var(--gray-color);
  line-height: 1.7;
  margin-bottom: 25px;
  flex: 1;
}

/* Service Features */
.service-features {
  list-style: none;
  margin-bottom: 25px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--dark-color);
  font-size: 0.95rem;
}

.feature-icon {
  width: 18px;
  height: 18px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon::after {
  content: "✓";
  color: white;
  font-size: 11px;
  font-weight: bold;
}

/* Service Footer */
.service-footer {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.service-actions {
  display: flex;
  gap: 12px;
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.btn-primary:hover {
  background: #0052a3;
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--secondary-color);
  color: var(--light-color);
}

/* List View for Mobile */
.services-list {
  display: none;
}

.service-list-item {
  background: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.service-list-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.service-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-list-content {
  padding: 20px;
}

.service-list-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.service-list-description {
  color: var(--gray-color);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.service-list-footer {
  display: flex;
  justify-content: center;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

/* Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }

  .service-content {
    padding: 25px;
  }

  .service-image {
    height: 200px;
  }
}

/* Large Mobile Phones */
@media (max-width: 576px) {
  .services-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  /* Switch to list view on mobile */
  .services-grid {
    display: none;
  }

  .services-list {
    display: block;
  }

  .service-list-content {
    padding: 20px;
  }

  .service-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }
}

/* Small Mobile Phones */
@media (max-width: 400px) {
  .services-section {
    padding: 30px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .service-content {
    padding: 20px;
  }

  .service-title {
    font-size: 1.3rem;
  }

  .service-description {
    font-size: 0.95rem;
  }

  .service-features li {
    font-size: 0.9rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .service-list-image {
    height: 180px;
  }
}

/* Landscape Orientation */
@media (max-height: 500px) and (orientation: landscape) {
  .service-image {
    height: 180px;
  }

  .service-list-image {
    height: 160px;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .service-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }
}

.service-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-text {
  animation: fadeInLeft 0.8s ease;
}

.hero-badge {
  display: inline-block;
  padding: 5px 15px;
  background: var(--secondary-color);
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: var(--light-color);
}

.service-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.service-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.7;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-feature i {
  color: var(--success-color);
  font-size: 1.2rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--light-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-image {
  animation: fadeInRight 0.8s ease;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Service Details */
.service-details {
  padding: 80px 0;
}

.details-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.details-content {
  animation: fadeInUp 0.8s ease;
}

.detail-section {
  margin-bottom: 50px;
}

.detail-section:last-child {
  margin-bottom: 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-title i {
  color: var(--primary-color);
}

.detail-text {
  color: var(--gray-color);
  line-height: 1.8;
  margin-bottom: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  display: flex;
  align-items: start;
  gap: 15px;
  padding: 20px;
  background: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

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

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-text h4 {
  margin-bottom: 8px;
  color: var(--dark-color);
}

.feature-text p {
  color: var(--gray-color);
  font-size: 0.9rem;
  margin: 0;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.process-step {
  text-align: left;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.step-description {
  color: var(--gray-color);
  font-size: 0.9rem;
}

/* Pricing Sidebar */
.pricing-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.pricing-card {
  background: var(--light-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.price-tag {
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.price-note {
  color: var(--gray-color);
  font-size: 0.9rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.pricing-features i {
  color: var(--success-color);
}

.inquire-btn-sidebar {
  width: 100%;
  padding: 15px;
  background: var(--secondary-color);
  color: var(--light-color);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.inquire-btn-sidebar:hover {
  background: #ea580c;
  transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
  background: var(--accent-color);
  padding: 60px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.faq-item {
  background: var(--light-color);
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-question i {
  color: var(--primary-color);
}

.faq-answer {
  color: var(--gray-color);
  line-height: 1.7;
}

/* Floating Inquire Button */
.floating-inquire {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: var(--secondary-color);
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  z-index: 999;
}

.floating-inquire:hover {
  background: #ea580c;
  transform: scale(1.1);
}

.floating-inquire i {
  font-size: 1.8rem;
}

/* Inquiry Modal */
.inquiry-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
  padding: 20px;
}

.inquiry-modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--light-color);
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: var(--transition);
}

.inquiry-modal.show .modal-content {
  transform: scale(1);
}

.modal-header {
  padding: 30px 30px 20px;
  border-bottom: 1px solid #e2e8f0;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-subtitle {
  color: var(--gray-color);
  font-size: 0.9rem;
  margin-top: 5px;
}

.modal-body {
  padding: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-color);
}

.form-label .required {
  color: var(--danger-color);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(38, 55, 111, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-input:read-only {
  background: var(--accent-color);
  color: var(--gray-color);
  cursor: not-allowed;
}

.modal-footer {
  padding: 20px 30px 30px;
  display: flex;
  gap: 15px;
}

.submit-btn {
  flex: 1;
  padding: 12px;
  background: var(--primary-color);
  color: var(--light-color);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.submit-btn:hover {
  background: var(--secondary-color);
}

.cancel-btn {
  padding: 12px 20px;
  background: transparent;
  color: var(--gray-color);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cancel-btn:hover {
  background: var(--accent-color);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--gray-color);
  transition: var(--transition);
}

.close-modal:hover {
  background: var(--danger-color);
  color: var(--light-color);
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .service-hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .details-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pricing-sidebar {
    position: static;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .service-title {
    font-size: 2rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .modal-content {
    margin: 0;
    max-height: 100vh;
    border-radius: 0;
  }
}

@media (max-width: 576px) {
  .service-hero {
    padding: 40px 0;
  }

  .service-details {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .price-tag {
    font-size: 2.5rem;
  }

  .floating-inquire {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
  }

  .floating-inquire i {
    font-size: 1.5rem;
  }
}
/* Products Page Styles */
#products-page {
  padding: 30px 0 60px;
}

#products-page .products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

#products-page .results-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

#products-page .results-count {
  font-size: 1.1rem;
  color: var(--dark-color);
}

#products-page .active-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

#products-page .filter-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: var(--primary-color);
  color: var(--light-color);
  border-radius: 20px;
  font-size: 0.85rem;
}

#products-page .filter-tag button {
  background: none;
  border: none;
  color: var(--light-color);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

#products-page .sort-dropdown {
  display: flex;
  align-items: center;
  gap: 10px;
}

#products-page .sort-select {
  padding: 8px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: var(--light-color);
  cursor: pointer;
  font-size: 0.9rem;
}

#products-page .view-toggle {
  display: flex;
  gap: 5px;
}

#products-page .view-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #e2e8f0;
  background: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

#products-page .view-btn:first-child {
  border-radius: 8px 0 0 8px;
}

#products-page .view-btn:last-child {
  border-radius: 0 8px 8px 0;
}

#products-page .view-btn.active {
  background: var(--primary-color);
  color: var(--light-color);
  border-color: var(--primary-color);
}

/* Products Grid */
#products-page .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

#products-page .products-list {
  display: none;
  flex-direction: column;
  gap: 20px;
}

#products-page .product-card {
  background: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  cursor: pointer;
}

#products-page .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

#products-page .product-image {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--accent-color);
}

#products-page .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

#products-page .product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 1;
}

#products-page .badge-new {
  background: var(--success-color);
  color: var(--light-color);
}

#products-page .badge-sale {
  background: var(--secondary-color);
  color: var(--light-color);
}

#products-page .product-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#products-page .product-card:hover .product-actions {
  opacity: 1;
}

#products-page .action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  color: var(--dark-color);
}

#products-page .action-btn:hover {
  background: var(--secondary-color);
  color: var(--light-color);
  transform: scale(1.1);
}

#products-page .product-info {
  padding: 20px;
}

#products-page .product-category {
  color: var(--gray-color);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

#products-page .product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark-color);
  line-height: 1.4;
}

#products-page .product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

#products-page .stars {
  display: flex;
  gap: 2px;
}

#products-page .star {
  color: #fbbf24;
  font-size: 0.9rem;
}

#products-page .rating-count {
  color: var(--gray-color);
  font-size: 0.85rem;
}

#products-page .product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

#products-page .current-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary-color);
}

#products-page .old-price {
  font-size: 1rem;
  color: var(--gray-color);
  text-decoration: line-through;
}

#products-page .product-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  text-decoration: none;
}

#products-page .view-btn-card {
  flex: 1;
  padding: 10px;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  text-decoration: none;
}

#products-page .view-btn-card:hover {
  background: var(--primary-color);
  color: var(--light-color);
}

#products-page .add-to-cart {
  flex: 1;
  padding: 10px;
  background: var(--secondary-color);
  color: var(--light-color);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
}

#products-page .add-to-cart:hover {
  background: var(--primary-color);
}

/* List View */
#products-page .product-list-item {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 30px;
  background: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

#products-page .product-list-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

#products-page .product-list-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

#products-page .product-list-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#products-page .product-list-actions {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
}

#products-page .list-buttons {
  display: flex;
  gap: 10px;
  width: 100%;
}

#products-page .view-btn-list {
  flex: 1;
  padding: 10px;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
}

#products-page .view-btn-list:hover {
  background: var(--primary-color);
  color: var(--light-color);
}

#products-page .add-to-cart-list {
  flex: 1;
  padding: 10px;
  background: var(--primary-color);
  color: var(--light-color);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
}

#products-page .add-to-cart-list:hover {
  background: var(--secondary-color);
}

/* Floating Filter Button */
#products-page .floating-filter {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  z-index: 999;
}

#products-page .floating-filter:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

#products-page .floating-filter i {
  font-size: 1.5rem;
}

#products-page .filter-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--secondary-color);
  color: var(--light-color);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Filter Sidebar */
#products-page .filter-sidebar {
  position: fixed;
  top: 0;
  left: -400px;
  width: 400px;
  height: 100%;
  background: var(--light-color);
  box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  z-index: 1001;
  overflow-y: auto;
}

#products-page .filter-sidebar.show {
  left: 0;
}

#products-page .filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e2e8f0;
  background: var(--accent-color);
}

#products-page .filter-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-color);
}

#products-page .close-filter {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-color);
  cursor: pointer;
  transition: var(--transition);
}

#products-page .close-filter:hover {
  color: var(--danger-color);
}

#products-page .filter-content {
  padding: 20px;
}

#products-page .filter-section {
  margin-bottom: 30px;
}

#products-page .filter-section:last-child {
  margin-bottom: 0;
}

#products-page .filter-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#products-page .clear-section {
  font-size: 0.85rem;
  color: var(--primary-color);
  cursor: pointer;
  font-weight: 500;
}

#products-page .clear-section:hover {
  text-decoration: underline;
}

#products-page .filter-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#products-page .filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
}

#products-page .filter-option:hover {
  color: var(--primary-color);
}

#products-page .filter-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

#products-page .filter-label {
  flex: 1;
  font-size: 0.95rem;
}

#products-page .filter-count {
  color: var(--light-color);
  font-size: 0.85rem;
}

/* Price Range */
#products-page .price-range {
  margin-top: 15px;
}

#products-page .price-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 15px;
}

#products-page .price-input {
  padding: 8px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.9rem;
}

#products-page .range-slider {
  position: relative;
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  margin: 20px 0;
}

#products-page .range-progress {
  position: absolute;
  height: 100%;
  background: var(--primary-color);
  border-radius: 3px;
  left: 20%;
  right: 30%;
}

#products-page .range-thumb {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border: 3px solid var(--light-color);
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#products-page .range-thumb.min {
  left: 20%;
}

#products-page .range-thumb.max {
  left: 70%;
}

/* Rating Filter */
#products-page .rating-filter {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#products-page .rating-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 5px;
  border-radius: 6px;
  transition: var(--transition);
}

#products-page .rating-option:hover {
  background: var(--accent-color);
}

/* Filter Actions */
#products-page .filter-actions {
  display: flex;
  gap: 10px;
  padding: 20px;
  border-top: 1px solid #e2e8f0;
  background: var(--accent-color);
}

#products-page .filter-btn {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

#products-page .apply-filters {
  background: var(--secondary-color);
  color: var(--light-color);
}

#products-page .apply-filters:hover {
  background: var(--primary-color);
}

#products-page .reset-filters {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

#products-page .reset-filters:hover {
  background: var(--secondary-color);
  color: var(--light-color);
  border: 2px solid var(--secondary-color);
}

/* Overlay */
#products-page .filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
}

#products-page .filter-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Pagination */
#products-page .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

#products-page .page-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #e2e8f0;
  background: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

#products-page .page-btn:hover {
  background: var(--accent-color);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

#products-page .page-btn.active {
  background: var(--primary-color);
  color: var(--light-color);
  border-color: var(--primary-color);
}

#products-page .page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 1200px) {
  #products-page .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}

@media (max-width: 992px) {
  #products-page .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  #products-page .filter-sidebar {
    width: 350px;
    left: -350px;
  }
}

@media (max-width: 768px) {
  #products-page .products-header {
    flex-direction: column;
    align-items: stretch;
  }

  #products-page .results-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  #products-page .sort-dropdown {
    width: 100%;
  }

  #products-page .sort-select {
    width: 100%;
  }

  #products-page .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }

  #products-page .product-list-item {
    grid-template-columns: 150px 1fr;
    gap: 20px;
  }

  #products-page .product-list-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  #products-page .floating-filter {
    bottom: 20px;
    left: 20px;
    width: 56px;
    height: 56px;
  }

  #products-page .filter-sidebar {
    width: 100%;
    left: -100%;
  }
}

@media (max-width: 576px) {
  #products-page .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  #products-page .product-image {
    height: 180px;
  }

  #products-page .product-info {
    padding: 15px;
  }

  #products-page .product-title {
    font-size: 1rem;
  }

  #products-page .product-buttons {
    flex-direction: column;
    gap: 8px;
  }

  #products-page .filter-sidebar {
    width: 100%;
    left: -100%;
  }

  #products-page .product-list-item {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  #products-page .product-list-image {
    height: 200px;
  }
}

@media (max-width: 400px) {
  #products-page .products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  #products-page .product-image {
    height: 220px;
  }

  #products-page .product-info {
    padding: 15px;
  }

  #products-page .product-title {
    font-size: 1.1rem;
  }

  #products-page .current-price {
    font-size: 1.2rem;
  }

  #products-page .product-buttons {
    flex-direction: column;
    gap: 8px;
  }
}
