* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #f7f8fa;
  color: #111827;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

.top-bar {
  background: #111827;
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.top-bar a {
  color: #fff;
  margin-left: 18px;
}

.main-header {
  background: #fff;
  padding: 18px 0;
  border-bottom: 1px solid #e5e7eb;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 25px;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  white-space: nowrap;
}

.logo span {
  color: #f97316;
}

.search-box {
  flex: 1;
  display: flex;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #f9fafb;
}

.search-box input {
  flex: 1;
  border: 0;
  padding: 13px 16px;
  background: transparent;
  outline: none;
}

.search-box button {
  border: 0;
  background: #f97316;
  color: #fff;
  width: 55px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 3px;
}

.header-actions a,
.mobile-menu-btn {
  width: 42px;
  height: 42px;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  position: relative;
}

.cart-icon span {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #f97316;
  color: #fff;
  font-size: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.mobile-menu-btn {
  display: none;
}

.main-nav {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
  margin: 0;
  padding: 14px 0;
  overflow-x: auto;
}

.main-nav a {
  font-weight: 600;
  font-size: 14px;
}

.hero-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 35px;
  align-items: center;
}

.badge-text {
  color: #f97316;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin: 16px 0;
}

.hero-content p {
  font-size: 17px;
  color: #d1d5db;
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 12px;
  font-weight: 700;
}

.primary-btn {
  background: #f97316;
  color: #fff;
}

.secondary-btn {
  background: #fff;
  color: #111827;
}

.hero-card {
  background: #fff;
  color: #111827;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.hero-card h3 {
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-card select,
.hero-card button {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 14px;
  padding: 0 14px;
}

.hero-card select {
  border: 1px solid #e5e7eb;
}

.hero-card button {
  border: 0;
  background: #111827;
  color: #fff;
  font-weight: 700;
}

.section-padding,
.brand-section {
  padding: 50px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 30px;
}

.section-subtitle {
  color: #f97316;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
}

.section-header h2 {
  font-weight: 800;
  margin-top: 6px;
}

.view-all-btn {
  color: #f97316;
  font-weight: 700;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.brand-grid a {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 22px;
  text-align: center;
  border-radius: 16px;
  font-weight: 800;
  transition: 0.3s;
}

.brand-grid a:hover {
  border-color: #f97316;
  color: #f97316;
  transform: translateY(-4px);
}

.product-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.product-img {
  position: relative;
  background: #f3f4f6;
  height: 210px;
  display: grid;
  place-items: center;
}

.product-img img {
  max-height: 150px;
}

.stock-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #16a34a;
  color: #fff;
  font-size: 11px;
  padding: 5px 9px;
  border-radius: 20px;
}

.product-info {
  padding: 18px;
}

.product-sku {
  font-size: 12px;
  color: #6b7280;
}

.product-info h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 8px 0;
}

.product-info p {
  color: #6b7280;
  font-size: 13px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 14px 0;
    flex-wrap: wrap;
}

/* Regular price (no sale) */
.product-price .regular-price {
    color: #f97316;
    font-size: 19px;
    font-weight: 700;
    text-decoration: none;
}

/* Sale price */
.product-price .sale-price {
    color: #f97316;
    font-size: 19px;
    font-weight: 700;
    text-decoration: none;
}

/* Original price */
.product-price .old-price {
    color: #9ca3af;
    font-size: 13px;
    text-decoration: line-through;
}

/* Keep compatibility with product detail page */
.product-price strong {
    color: #f97316;
    font-size: 19px;
    font-weight: 700;
}

.product-price > span:not(.sale-price):not(.old-price):not(.regular-price) {
    color: #9ca3af;
    font-size: 13px;
    text-decoration: line-through;
}

.add-cart-btn {
  width: 100%;
  border: 0;
  background: #111827;
  color: #fff;
  padding: 11px;
  border-radius: 12px;
  font-weight: 700;
}

.wholesale-banner {
  padding: 30px 0 80px;
}

.wholesale-box {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  border-radius: 24px;
  padding: 45px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.wholesale-box span {
  font-weight: 800;
  text-transform: uppercase;
}

.wholesale-box h2 {
  font-weight: 800;
  margin: 10px 0;
}

.site-footer {
  background: #111827;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 35px;
}

.footer-grid h3,
.footer-grid h4 {
  font-weight: 800;
  margin-bottom: 15px;
}

.footer-grid a {
  display: block;
  color: #d1d5db;
  margin-bottom: 9px;
}

.footer-grid p {
  color: #d1d5db;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 35px;
  padding-top: 18px;
  color: #9ca3af;
  text-align: center;
}

@media (max-width: 991px) {
  .top-bar,
  .main-nav {
    display: none;
  }

  .header-content {
    gap: 10px;
  }

  .search-box {
    display: none;
  }

  .mobile-menu-btn {
    display: grid;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .wholesale-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
  }

  .mobile-menu-header button {
    border: 0;
    background: transparent;
    font-size: 22px;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0;
  }

  .mobile-menu li {
    border-bottom: 1px solid #e5e7eb;
  }

  .mobile-menu a {
    display: block;
    padding: 14px 0;
    font-weight: 700;
  }
}
 

.category-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  transition: 0.3s;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: #f97316;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.category-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: #fff7ed;
  color: #f97316;
  margin: auto;
  display: grid;
  place-items: center;
  font-size: 30px;
  margin-bottom: 18px;
}

.category-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.category-card p {
  color: #6b7280;
  margin: 0;
  font-size: 14px;
}

 
.featured-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.featured-tabs button {
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 700;
  transition: 0.3s;
}

.featured-tabs button.active,
.featured-tabs button:hover {
  background: #f97316;
  color: #fff;
  border-color: #f97316;
}

.accessories-banner {
  padding: 10px 0 80px;
}

.banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.banner-card {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 45px;
}

.dark-banner {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #fff;
}

.orange-banner {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
}

.banner-content span {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.banner-content h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin: 15px 0;
}

.banner-content p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  .banner-grid {
    grid-template-columns: 1fr;
  }

  .banner-card {
    min-height: auto;
    padding: 35px 28px;
  }

  .banner-content h2 {
    font-size: 30px;
  }
}

.center-header {
  justify-content: center;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 10px;
}

.why-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 35px 28px;
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: #f97316;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.why-icon {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  background: #fff7ed;
  color: #f97316;
  display: grid;
  place-items: center;
  font-size: 32px;
  margin-bottom: 22px;
}

.why-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.why-card p {
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-section {
  background: #f9fafb;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 10px;
}

.testimonial-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  padding: 32px 28px;
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
  color: #f59e0b;
  margin-bottom: 18px;
}

.testimonial-card p {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 28px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f97316;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.testimonial-user h4 {
  font-size: 16px;
  font-weight: 800;
  margin: 0;
}

.testimonial-user span {
  color: #6b7280;
  font-size: 14px;
}

@media (max-width: 991px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.newsletter-section {
  padding: 80px 0;
}

.newsletter-box {
  background: linear-gradient(135deg, #111827, #1f2937);
  border-radius: 30px;
  padding: 60px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.newsletter-content {
  max-width: 560px;
}

.newsletter-content span {
  color: #f97316;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newsletter-content h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin: 15px 0;
}

.newsletter-content p {
  color: #d1d5db;
  margin: 0;
  line-height: 1.8;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 500px;
}

.newsletter-form input {
  flex: 1;
  height: 58px;
  border-radius: 16px;
  border: 0;
  padding: 0 20px;
  outline: none;
  font-size: 15px;
}

.newsletter-form button {
  height: 58px;
  padding: 0 28px;
  border: 0;
  border-radius: 16px;
  background: #f97316;
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .newsletter-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 28px;
  }

  .newsletter-content h2 {
    font-size: 32px;
  }

  .newsletter-form {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}

.page-header {
  background: #111827;
  color: #fff;
  padding: 50px 0;
}

.page-header-content {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.page-header span {
  color: #f97316;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-top: 12px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb-nav a {
  color: #fff;
}

.breadcrumb-nav p {
  margin: 0;
  color: #f97316;
}

.products-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 35px;
}

.products-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.filter-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 28px;
}

.filter-box h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 22px;
}

.filter-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-box li {
  margin-bottom: 14px;
}

.filter-box a {
  color: #4b5563;
  transition: 0.3s;
}

.filter-box a:hover {
  color: #f97316;
}

.price-range input {
  width: 100%;
}

.price-values {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  color: #6b7280;
}

.products-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
}

.products-toolbar p {
  margin: 0;
  color: #6b7280;
}

.products-toolbar select {
  height: 48px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0 16px;
  outline: none;
}

.pagination-box {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
}

.pagination-box a {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  display: grid;
  place-items: center;
  background: #fff;
  transition: 0.3s;
  font-weight: 700;
}

.pagination-box a.active,
.pagination-box a:hover {
  background: #f97316;
  color: #fff;
  border-color: #f97316;
}

@media (max-width: 991px) {
  .products-layout {
    grid-template-columns: 1fr;
  }

  .page-header-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .products-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-header h1 {
    font-size: 36px;
  }
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 70px;
}

.main-product-image {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  padding: 40px;
  display: grid;
  place-items: center;
}

.main-product-image img {
  max-height: 420px;
}

.thumbnail-images {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.thumb {
  width: 90px;
  height: 90px;
  border: 2px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: #fff;
}

.thumb.active {
  border-color: #f97316;
}

.thumb img {
  max-height: 65px;
}

.product-detail-category {
  display: inline-block;
  background: #fff7ed;
  color: #f97316;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

.product-detail-content h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0;
}

.stars {
  color: #f59e0b;
}

.product-rating span {
  color: #6b7280;
}

.product-detail-price {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
}

.product-detail-price strong {
  font-size: 42px;
  color: #f97316;
  font-weight: 800;
}

.product-detail-price span {
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 22px;
}

.product-detail-text {
  color: #4b5563;
  line-height: 1.9;
  margin-bottom: 28px;
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 35px;
}

.product-meta strong {
  color: #111827;
}

.in-stock {
  color: #16a34a;
  font-weight: 700;
}

.quantity-cart-wrapper {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
}

.quantity-box {
  display: flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.quantity-box button {
  width: 48px;
  height: 56px;
  border: 0;
  background: #fff;
  font-size: 20px;
  font-weight: 700;
}

.quantity-box input {
  width: 60px;
  text-align: center;
  border: 0;
  outline: none;
  font-weight: 700;
}

.detail-cart-btn {
  flex: 1;
  height: 56px;
  border: 0;
  border-radius: 14px;
  background: #f97316;
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.detail-actions {
  display: flex;
  gap: 30px;
}

.detail-actions a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4b5563;
  font-weight: 600;
}

.product-tabs {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  padding: 35px;
  margin-bottom: 70px;
}

.tabs-nav {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tabs-nav button {
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
}

.tabs-nav button.active {
  background: #f97316;
  color: #fff;
  border-color: #f97316;
}

.tabs-content p {
  color: #4b5563;
  line-height: 1.9;
  margin: 0;
}

.related-products {
  margin-top: 30px;
}

@media (max-width: 991px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .product-detail-content h2 {
    font-size: 32px;
  }

  .product-detail-price strong {
    font-size: 34px;
  }

  .quantity-cart-wrapper {
    flex-direction: column;
  }

  .detail-actions {
    flex-direction: column;
    gap: 16px;
  }
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 35px;
}

.cart-table-wrapper {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  padding: 30px;
  overflow: auto;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th {
  padding-bottom: 18px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  font-size: 14px;
  color: #6b7280;
  text-transform: uppercase;
}

.cart-table td {
  padding: 24px 0;
  border-bottom: 1px solid #f3f4f6;
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 280px;
}

.cart-product-img {
  width: 90px;
  height: 90px;
  border-radius: 18px;
  background: #f9fafb;
  display: grid;
  place-items: center;
}

.cart-product-img img {
  max-height: 100px;
}

.cart-product-info h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.cart-product-info p {
  color: #6b7280;
  margin: 0;
}

.remove-cart-item {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #fee2e2;
  background: #fff;
  color: #ef4444;
}

.coupon-box {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.coupon-box input {
  flex: 1;
  height: 54px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 0 18px;
  outline: none;
}

.coupon-box button {
  height: 54px;
  border: 0;
  border-radius: 14px;
  background: #111827;
  color: #fff;
  padding: 0 24px;
  font-weight: 700;
}

.cart-summary {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  padding: 30px;
  height: max-content;
  position: sticky;
  top: 100px;
}

.cart-summary h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 28px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #f3f4f6;
}

.summary-item.total {
  border-bottom: 0;
  margin-bottom: 28px;
}

.summary-item.total strong {
  color: #f97316;
  font-size: 24px;
}

.checkout-btn {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 16px;
  background: #f97316;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
}

@media (max-width: 991px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }
}

@media (max-width: 575px) {
  .coupon-box {
    flex-direction: column;
  }
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 35px;
}

.checkout-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  padding: 35px;
}

.checkout-box h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 28px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-group {
  display: flex;
  margin-bottom: 14px;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1/-1;
}

.form-group label {
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px;
  outline: none;
  transition: 0.3s;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #f97316;
}

.checkout-summary-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  padding: 35px;
  position: sticky;
  top: 100px;
}

.checkout-summary-box h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 28px;
}

.checkout-product {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #f3f4f6;
  color: #4b5563;
}

.checkout-summary-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #f3f4f6;
}

.checkout-summary-item.total {
  border-bottom: 0;
}

.checkout-summary-item.total strong {
  font-size: 24px;
  color: #f97316;
}

.payment-methods {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px;
  cursor: pointer;
}

.place-order-btn {
  width: 100%;
  height: 58px;
  border: 0;
  border-radius: 16px;
  background: #f97316;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
}

@media (max-width: 991px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary-box {
    position: static;
  }
}

@media (max-width: 575px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-box,
  .checkout-summary-box {
    padding: 25px;
  }
}

.auth-section {
  padding: 100px 0;
}

.auth-wrapper {
  display: grid;
  grid-template-columns: 1fr 520px;
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.auth-left {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #fff;
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-left span {
  color: #f97316;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.auth-left h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  margin: 18px 0;
}

.auth-left p {
  color: #d1d5db;
  line-height: 1.8;
  margin-bottom: 30px;
}

.auth-left img {
  max-width: 240px;
}

.auth-form-box {
  padding: 70px;
}

.auth-form-box h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 35px;
}

.auth-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 25px 0;
  gap: 20px;
}

.auth-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4b5563;
}

.auth-options a {
  color: #f97316;
  font-weight: 700;
}

.auth-btn {
  width: 100%;
  height: 58px;
  border: 0;
  border-radius: 16px;
  background: #f97316;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
}

.auth-bottom-text {
  text-align: center;
  margin-top: 25px;
  color: #6b7280;
}

.auth-bottom-text a {
  color: #f97316;
  font-weight: 700;
}

@media (max-width: 991px) {
  .auth-wrapper {
    grid-template-columns: 1fr;
  }

  .auth-left {
    display: none;
  }
}

@media (max-width: 575px) {
  .auth-form-box {
    padding: 35px 25px;
  }

  .auth-form-box h2 {
    font-size: 30px;
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 35px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  gap: 18px;
}

.contact-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: #fff7ed;
  color: #f97316;
  display: grid;
  place-items: center;
  font-size: 28px;
}

.contact-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-card p {
  margin: 0;
  color: #6b7280;
}

.contact-form-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  padding: 40px;
}

.contact-form-box h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 35px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-box {
    padding: 28px;
  }
}

.distributor-hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
  background: #111827;
  color: #fff;
  border-radius: 32px;
  padding: 60px;
  margin-bottom: 70px;
}

.distributor-content span {
  color: #f97316;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.distributor-content h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin: 18px 0;
}

.distributor-content p {
  color: #d1d5db;
  line-height: 1.9;
  margin-bottom: 30px;
}

.distributor-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.distributor-features div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.distributor-features i {
  color: #22c55e;
}

.distributor-image {
  display: grid;
  place-items: center;
}

.distributor-image img {
  max-width: 320px;
}

.distributor-form-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 32px;
  padding: 50px;
}

.distributor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 35px;
}

.distributor-btn {
  margin-top: 30px;
  min-width: 220px;
}

@media (max-width: 991px) {
  .distributor-hero {
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }

  .distributor-content h2 {
    font-size: 36px;
  }

  .distributor-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .distributor-features {
    grid-template-columns: 1fr;
  }

  .distributor-form-box {
    padding: 30px 24px;
  }
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: auto;
  padding: 0 15px;
}

.site-main {
  overflow: hidden;
}

body {
  overflow-x: hidden;
}

.mobile-menu {
  display: block;
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  padding: 20px;
  transition: 0.3s;
}

.mobile-menu.active {
  right: 0;
}

.body-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

.body-overlay.active {
  opacity: 1;
  visibility: visible;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn {
  background: #22c55e;
}

.scroll-top-btn {
  background: #111827;
}

.site-preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader-content {
  text-align: center;
}

.loader-circle {
  width: 70px;
  height: 70px;
  border: 5px solid #f3f4f6;
  border-top-color: #f97316;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: auto auto 20px;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: #fff;
  z-index: 99999;
  padding: 25px;
  transition: 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-logo {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  text-decoration: none;
}

.close-mobile-menu {
  width: 42px;
  height: 42px;
  border: none;
  background: #f3f4f6;
  border-radius: 10px;
  cursor: pointer;
}

.mobile-search-form {
  position: relative;
  margin-bottom: 30px;
}

.mobile-search-form input {
  width: 100%;
  height: 50px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0 55px 0 18px;
}

.mobile-search-form button {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  border: none;
  background: none;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-links li {
  margin-bottom: 8px;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  color: #111827;
  font-weight: 600;
  transition: 0.3s;
}

.mobile-nav-links a:hover {
  background: #fff7ed;
  color: #f97316;
}

.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  display: none;
  justify-content: center;
  align-items: center;
}

.search-modal.active {
  display: flex;
}

.search-modal-content {
  width: 90%;
  max-width: 700px;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  position: relative;
}

.close-search-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 42px;
  height: 42px;
  border: none;
  background: #f3f4f6;
  border-radius: 10px;
}

.search-modal-form {
  position: relative;
}

.search-modal-form input {
  width: 100%;
  height: 60px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 0 70px 0 20px;
  font-size: 16px;
}

.search-modal-form button {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  border: none;
  background: none;
  font-size: 20px;
}

/* =========================================================
   PRODUCT CARD WISHLIST
========================================================= */

.product-img {
  position: relative;
}

.wishlist-form {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
}

.wishlist-btn {
  width: 42px;
  height: 42px;
  border: none;
  outline: none;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.wishlist-btn i {
  font-size: 16px;
  color: #111827;
  transition: all 0.3s ease;
}

.wishlist-btn:hover {
  background: #ff6b35;
  transform: translateY(-2px);
}

.wishlist-btn:hover i {
  color: #ffffff;
}

/* MOBILE */

@media (max-width: 768px) {
  .wishlist-btn {
    width: 38px;
    height: 38px;
  }

  .wishlist-btn i {
    font-size: 14px;
  }
}

/* =========================================================
   STANDARD PRODUCT IMAGE SIZE
========================================================= */

.product-img {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #f8f9fb;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
  padding: 18px;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

/* =========================================================
   PRODUCT DETAIL IMAGE
========================================================= */

.product-detail-image {
  width: 100%;
  height: 520px;
  background: #f8f9fb;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 30px;
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {
  .product-img {
    height: 220px;
  }

  .product-detail-image {
    height: 340px;
    padding: 20px;
  }
}

/* =========================================================
   PRODUCT QUANTITY
========================================================= */

.quantity-wrapper {
  display: flex;
  align-items: center;
  width: 180px;
  height: 52px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
}

.quantity-input {
  width: 100%;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  outline: none;
  box-shadow: none;
}

.quantity-input::-webkit-inner-spin-button,
.quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-btn {
  width: 52px;
  height: 52px;
  border: none;
  background: #f8f9fb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.qty-btn:hover {
  background: #ff6b35;
  color: #ffffff;
}

/* =========================================================
   CART PAGE
========================================================= */

.cart-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid #ececec;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #f1f1f1;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 110px;
  height: 110px;
  background: #f8f9fb;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.cart-item-info h3 a {
  color: #0f172a;
  text-decoration: none;
}

.cart-item-info span {
  display: block;
  color: #64748b;
  margin-bottom: 10px;
}

.cart-price {
  font-size: 20px;
  font-weight: 700;
  color: #ff6b35;
}

/* =========================================================
   QUANTITY
========================================================= */

.cart-qty {
  width: 110px;
}

.cart-qty-input {
  width: 90%;
  height: 52px;
  border-radius: 14px;
  border: 1px solid #dbe2ea;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  outline: none;
  transition: all 0.3s ease;
}

.cart-qty-input:focus {
  border-color: #ff6b35;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

/* =========================================================
   TOTAL
========================================================= */

.cart-total {
  font-size: 20px;
  font-weight: 700;
  min-width: 110px;
}

/* =========================================================
   REMOVE
========================================================= */

.cart-remove a {
  width: 44px;
  height: 44px;
  background: #fff1f2;
  color: #ef4444;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cart-remove a:hover {
  background: #ef4444;
  color: #ffffff;
}

/* =========================================================
   CART ACTIONS
========================================================= */

.cart-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.continue-shopping {
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
}

/* =========================================================
   SUMMARY
========================================================= */

.cart-summary {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid #ececec;
  position: sticky;
  top: 120px;
}

.cart-summary h3 {
  font-size: 34px;
  margin-bottom: 30px;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 17px;
}

.total-row {
  padding-top: 20px;
  border-top: 1px solid #ececec;
  margin-top: 20px;
  font-size: 22px;
  font-weight: 700;
}

/* =========================================================
   COD NOTICE
========================================================= */

.cod-notice {
  margin-top: 24px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  padding: 18px;
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.7;
}

.cod-notice i {
  margin-right: 8px;
}

/* =========================================================
   CHECKOUT BUTTON
========================================================= */

.checkout-btn {
  width: 100%;
  height: 58px;
  margin-top: 28px;
  background: #ff6b35;
  color: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.checkout-btn:hover {
  background: #e85d2b;
  color: #ffffff;
}

/* =========================================================
   EMPTY CART
========================================================= */

.empty-cart {
  background: #ffffff;
  border-radius: 24px;
  padding: 80px 30px;
  text-align: center;
  border: 1px solid #ececec;
}

.empty-cart i {
  font-size: 70px;
  color: #ff6b35;
  margin-bottom: 24px;
}

.empty-cart h3 {
  font-size: 36px;
  margin-bottom: 14px;
}

.empty-cart p {
  color: #64748b;
  margin-bottom: 30px;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-qty,
  .cart-total,
  .cart-remove {
    width: 100%;
  }

  .cart-summary {
    position: relative;
    top: 0;
  }

  .cart-summary h3 {
    font-size: 28px;
  }
}

/* =========================================================
   MOBILE FIXES
========================================================= */

@media (max-width: 991px) {
  .mobile-menu-btn {
    display: grid !important;
  }
}

@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}
.featuredProductsSlider {
    padding: 10px 5px 60px;
}

.featuredProductsSlider .swiper-slide {
    height: auto;
}

.featuredProductsSlider .product-card {
    height: 100%;
}

.featuredProductsSlider .swiper-button-next,
.featuredProductsSlider .swiper-button-prev {
    color: #ff6b00;
}

.featuredProductsSlider .swiper-pagination-bullet-active {
    background: #ff6b00;
}
/* =========================================================
   CATEGORY SLIDER
========================================================= */

.categorySlider {
    padding: 10px 10px 60px;
}

.categorySlider .swiper-wrapper {
    align-items: stretch;
}

.categorySlider .swiper-slide {
    width: 250px !important;
    height: auto;
}

.categorySlider .category-card {
    width: 100%;
    height: 100%;
}

.categorySlider .swiper-button-next,
.categorySlider .swiper-button-prev {
    color: #ff6b00;
}

.categorySlider .swiper-pagination-bullet-active {
    background: #ff6b00;
}
/* =========================================================
   LATEST PRODUCTS SLIDER
========================================================= */

.latestProductsSlider {
    padding: 10px 5px 60px;
}

.latestProductsSlider .swiper-slide {
    height: auto;
}

.latestProductsSlider .product-card {
    height: 100%;
}

.latestProductsSlider .swiper-button-next,
.latestProductsSlider .swiper-button-prev {
    color: #ff6b00;
}

.latestProductsSlider .swiper-pagination-bullet-active {
    background: #ff6b00;
}
/* =========================================================
   LOW STOCK PRODUCTS SLIDER
========================================================= */

.lowStockSlider {
    padding: 10px 5px 60px;
}

.lowStockSlider .swiper-slide {
    height: auto;
}

.lowStockSlider .product-card {
    height: 100%;
}

.lowStockSlider .swiper-button-next,
.lowStockSlider .swiper-button-prev {
    color: #ff6b00;
}

.lowStockSlider .swiper-pagination-bullet-active {
    background: #ff6b00;
}
/* ==========================================
   CART MOBILE FIX
========================================== */

@media (max-width: 768px) {

    .cart-table thead {
        display: none;
    }

    .cart-table,
    .cart-table tbody,
    .cart-table tr,
    .cart-table td {
        display: block;
        width: 100%;
    }

    .cart-table tr {
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 15px;
        padding: 15px;
        margin-bottom: 15px;
    }

    .cart-table td {
        text-align: center;
        border: 0;
        padding: 6px 0;
    }

    .cart-product {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .cart-product-img {
        width: 150px;
        height: 150git px;
        margin: 0 auto;
    }

    .cart-product-info h3 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .cart-product-info span {
        display: block;
        font-size: 13px;
        color: #6b7280;
    }

    .cart-qty-input {
        width: 80px;
        margin: 0 auto;
        text-align: center;
    }

    .remove-item-btn {
        margin: 10px auto 0;
        display: inline-flex;
    }
}