/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 20%;
  height: auto;
  display: block;
}

/* Shipping Banner - Modern */
.shipping-banner {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #fff;
  padding: 12px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.banner-icon {
  font-size: 16px;
}

.banner-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin-left: 10px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  transition: all 0.3s;
}

.banner-link:hover {
  background: rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

/* Header - Modern */
.site-header {
  background-color: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

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

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  flex-direction: row;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.logo {
  max-width: 20%;
  height: auto;
  display: block;
  object-fit: contain;
}

.logo-section h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1e3a8a;
  margin: 0;
  letter-spacing: -0.5px;
}

.company-tagline {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: #6b7280;
  margin-top: 2px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-bar {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 12px;
  color: #9ca3af;
  pointer-events: none;
}

.search-input {
  padding: 10px 12px 10px 38px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  width: 280px;
  transition: all 0.3s;
  background: #f9fafb;
}

.search-input:focus {
  outline: none;
  border-color: #3b82f6;
  background: #fff;
}


/* Navigation - Modern */
.main-nav {
  border-top: 1px solid #e5e7eb;
}

.nav-menu {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  gap: 0;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: block;
  padding: 18px 24px;
  color: #374151;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  background-color: #f3f4f6;
  color: #1e3a8a;
  border-bottom-color: #3b82f6;
  text-decoration: none;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 250px;
  display: none;
  z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #333;
  font-size: 14px;
  border-bottom: 1px solid #f5f5f5;
}

.dropdown-menu a:hover {
  background-color: #f5f5f5;
}

/* Submenu */
.submenu {
  position: absolute;
  left: 100%;
  top: 0;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 250px;
  display: none;
}

.has-submenu:hover .submenu {
  display: block;
}

.dropdown-arrow,
.submenu-arrow {
  font-size: 10px;
  margin-left: 5px;
}

/* Main Content */
.main-content {
  width: 100%;
  margin: 0;
  padding: 0;
}

.page-header {
  margin-bottom: 30px;
}

.page-header h1 {
  font-size: 32px;
  font-weight: 400;
  color: #333;
}

/* Sort Bar */
.sort-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
  font-size: 14px;
}

.sort-select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  background-color: #fff;
  cursor: pointer;
}

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

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
  }
}

.product-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  text-align: center;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: contain;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  padding: 20px;
  display: block;
  min-height: 250px;
  transition: transform 0.3s;
}

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

.product-info {
  padding: 20px;
}

.product-title {
  font-size: 15px;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 12px;
  min-height: 44px;
  line-height: 1.5;
  text-align: left;
}

.product-title a {
  color: #1f2937;
  text-decoration: none;
  transition: color 0.3s;
}

.product-title a:hover {
  color: #3b82f6;
  text-decoration: none;
}

.product-price {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
}

.price-current {
  font-size: 18px;
  font-weight: 700;
  color: #1e3a8a;
}

.price-original {
  font-size: 14px;
  color: #9ca3af;
  text-decoration: line-through;
  margin-left: 8px;
}

.price-range {
  font-size: 18px;
  font-weight: 700;
  color: #1e3a8a;
}

.product-variants {
  margin-top: 10px;
}

.variant-select {
  width: 100%;
  padding: 6px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
  margin-bottom: 10px;
}


.sold-out-badge {
  display: inline-block;
  padding: 4px 8px;
  background-color: #f00;
  color: #fff;
  font-size: 12px;
  border-radius: 4px;
  margin-bottom: 10px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.page-link {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #333;
  transition: all 0.3s;
}

.page-link:hover,
.page-link.active {
  background-color: #3b82f6;
  color: #fff;
  border-color: #3b82f6;
  font-weight: 600;
}

/* Footer - Modern */
.site-footer {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: #fff;
  padding: 60px 20px 30px;
  margin-top: 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.footer-section p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 15px;
}

.footer-links a:hover {
  color: #60a5fa;
  padding-left: 4px;
  text-decoration: none;
}

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

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

.footer-links a {
  color: #666;
  font-size: 14px;
}

.payment-methods {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-icon {
  font-size: 12px;
  color: #666;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.footer-legal {
  font-size: 13px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: #60a5fa;
  text-decoration: none;
}


.btn {
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: all 0.3s;
}

.btn-primary {
  background-color: #3b82f6;
  color: #fff;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #2563eb;
  color: #fff;
}

.btn-secondary {
  background-color: #fff;
  color: #3b82f6;
  border: 2px solid #3b82f6;
}

.btn-secondary:hover {
  background-color: #eff6ff;
  border-color: #2563eb;
  color: #2563eb;
}

/* About Us Page Styles */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.about-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 0;
}

.page-title {
  font-size: 32px;
  font-weight: 400;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
}

.company-info {
  margin-bottom: 30px;
  text-align: center;
}

.company-name {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.company-reg {
  font-size: 16px;
  color: #666;
  font-weight: 400;
}

.contact-details {
  margin-bottom: 40px;
  text-align: center;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 0;
}

.address-line {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
  line-height: 1.8;
}

.phone {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-top: 15px;
  margin-bottom: 10px;
}

.email {
  font-size: 16px;
  margin-top: 10px;
}

.email a {
  color: #333;
  text-decoration: underline;
}

.email a:hover {
  color: #000;
}

.about-description {
  line-height: 1.8;
}

.about-description p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
}

.about-description p:last-child {
  margin-bottom: 0;
}

/* FAQ Page Styles */
.faq-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 0;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.5;
}

.faq-answer {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-left: 0;
}

/* Terms of Service Page Styles */
.terms-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.terms-content > p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
}

.last-updated {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-bottom: 30px;
}

.terms-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
}

.terms-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.terms-heading {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  margin-top: 30px;
}

.terms-section p {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
  text-align: left;
}

.terms-list {
  margin: 15px 0 20px 30px;
  padding-left: 20px;
}

.terms-list li {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.8;
  list-style-type: disc;
}

.terms-list li:last-child {
  margin-bottom: 0;
}

.nav-menu > li > a.active {
  background-color: #3b82f6;
  color: #fff;
  font-weight: 600;
}

.dropdown-menu a.active,
.submenu a.active {
  background-color: #eff6ff;
  color: #1e3a8a;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    gap: 15px;
  }

  .nav-menu {
    flex-direction: column;
  }

  .nav-menu > li {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
    border: none;
    border-top: 1px solid #e5e5e5;
  }

  .submenu {
    position: static;
    display: none;
    width: 100%;
    padding-left: 20px;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
  }

  .about-content {
    padding: 20px;
  }

  .page-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .company-name {
    font-size: 20px;
  }

  .contact-details {
    padding: 20px;
  }

  .about-description p {
    font-size: 14px;
  }

  .faq-content {
    padding: 20px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 14px;
  }
}

/* Contact Us Page Styles */
.contact-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 0;
}

.contact-info-section {
  margin-bottom: 50px;
}

.company-info {
  text-align: center;
  margin-bottom: 40px;
}

.contact-details-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.contact-item {
  padding: 25px;
  background-color: #eff6ff;
  border-radius: 0;
  border-left: 4px solid #3b82f6;
}

.contact-label {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

.contact-value a {
  color: #333;
  text-decoration: none;
}

.contact-value a:hover {
  text-decoration: underline;
  color: #000;
}

.contact-form-section {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid #e5e5e5;
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

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

.submit-btn {
  width: 100%;
  padding: 14px;
  background-color: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background-color: #2563eb;
  color: #fff;
}

@media (max-width: 768px) {
  .contact-content {
    padding: 20px;
  }

  .contact-details-box {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-item {
    padding: 20px;
  }

  .section-title {
    font-size: 20px;
  }

  .contact-form-section {
    margin-top: 30px;
    padding-top: 30px;
  }
}

/* Home Page Styles */
.hero-banner {
  width: 100%;
  margin-bottom: 40px;
}

.banner-slider {
  position: relative;
  width: 100%;
}

.banner-slide {
  display: none;
  width: 100%;
}

.banner-slide.active {
  display: block;
}

.banner-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.shop-ease-section {
  margin: 60px 0;
  padding: 40px 20px;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-card img {
  width: 100%;
  height: auto;
  display: block;
}

.category-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 30px 20px 20px;
  color: #fff;
  text-align: center;
}

.category-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #3b82f6;
}

.category-info p {
  font-size: 16px;
  margin-bottom: 10px;
}

.shop-link {
  display: inline-block;
  padding: 8px 20px;
  background-color: #3b82f6;
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 14px;
}

.wholesaler-section {
  position: relative;
  margin: 60px 0;
  text-align: center;
}

.wholesaler-section img {
  width: 100%;
  height: auto;
}

.wholesaler-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.wholesaler-content h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.wholesaler-content h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #60a5fa;
}

.shop-now-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #3b82f6;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  font-size: 16px;
  transition: background-color 0.3s;
}

.shop-now-btn:hover {
  background-color: #2563eb;
  color: #fff;
}

.featured-products-section {
  margin: 60px 0;
  padding: 40px 20px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.view-all-link {
  color: #333;
  font-weight: 600;
  text-decoration: underline;
}

.view-all-link:hover {
  color: #3b82f6;
}

.bulk-purchase-section {
  position: relative;
  margin: 60px 0;
  text-align: center;
}

.bulk-purchase-section img {
  width: 100%;
  height: auto;
}

.bulk-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.bulk-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #60a5fa;
}

.bulk-content p {
  font-size: 20px;
  margin-bottom: 20px;
}

.contact-link {
  display: inline-block;
  padding: 12px 30px;
  background-color: #3b82f6;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  font-size: 16px;
}

.video-section {
  margin: 60px 0;
}

.video-section img {
  width: 100%;
  height: auto;
}

/* Top Promotional Section */
.top-promo-section {
  margin: 20px 0 40px;
}

.promo-banner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.promo-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.promo-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.promo-item:hover img {
  transform: scale(1.05);
}

.promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s;
}

.promo-item:hover .promo-overlay {
  opacity: 1;
}

.promo-btn {
  background-color: #3b82f6;
  color: #fff;
  padding: 12px 30px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  font-size: 16px;
}

.credits-banner {
  text-align: center;
  padding: 15px 20px;
  background-color: #eff6ff;
  margin-top: 20px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.credits-banner p {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.credits-banner small {
  font-size: 12px;
  color: #666;
}

/* Top Category Section */
.top-category-section {
  margin: 80px 0;
  padding: 60px 20px;
  background: linear-gradient(to bottom, #fff, #FFFEF5);
}

.top-category-container {
  max-width: 1400px;
  margin: 0 auto;
}

.top-category-section .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 20px;
}

.top-category-section .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #3b82f6, #2563eb);
  border-radius: 2px;
}

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

.top-category-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #f0f0f0;
}

.top-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.25);
  border-color: #3b82f6;
}

.category-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.category-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f8f8f8;
}

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

.top-category-card:hover .category-image {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.top-category-card:hover .category-overlay {
  opacity: 1;
}

.category-content {
  padding: 25px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  transition: background-color 0.3s ease;
}

.top-category-card:hover .category-content {
  background: linear-gradient(to right, #eff6ff, #fff);
}

.category-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0;
  transition: color 0.3s ease;
}

.top-category-card:hover .category-title {
  color: #3b82f6;
}

.category-arrow {
  font-size: 24px;
  font-weight: 700;
  color: #3b82f6;
  transition: all 0.3s ease;
  display: inline-block;
}

.top-category-card:hover .category-arrow {
  transform: translateX(8px);
  color: #2563eb;
}

/* Wholesale Section Home */
.wholesale-section-home {
  margin: 60px 0;
}

.wholesale-banner {
  margin-bottom: 40px;
}

.wholesale-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.wholesale-content-section {
  padding: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.wholesale-content-section > h2 {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}

.wholesale-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

/* Business Services Section */
.business-services-section {
  margin: 60px 0;
  padding: 40px 20px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: auto;
  display: block;
}

.service-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: 30px 20px 20px;
  color: #fff;
  text-align: center;
}

.service-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #60a5fa;
}

.service-info p {
  font-size: 16px;
  margin-bottom: 15px;
}

.service-link {
  display: inline-block;
  padding: 10px 25px;
  background-color: #3b82f6;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  font-size: 14px;
  transition: background-color 0.3s;
}

.service-link:hover {
  background-color: #2563eb;
  color: #fff;
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .promo-banner {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .top-category-section {
    padding: 40px 15px;
    margin: 40px 0;
  }
  
  .top-category-section .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .top-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .category-image-wrapper {
    height: 200px;
  }
  
  .category-content {
    padding: 20px 15px;
  }
  
  .category-title {
    font-size: 16px;
  }
  
  .category-arrow {
    font-size: 20px;
  }
  
  .service-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .wholesaler-content h3 {
    font-size: 24px;
  }
  
  .bulk-content h2 {
    font-size: 24px;
  }
  
  .section-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .wholesale-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .wholesale-content-section > h2 {
    font-size: 24px;
  }
}

/* ============================================
   MODERN INDEX PAGE REDESIGN STYLES
   ============================================ */

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

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0;
  padding: 80px 20px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
}

.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%);
  opacity: 0.5;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-content {
  max-width: 700px;
  color: #fff;
}

.hero-side {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-side-card {
  width: min(520px, 100%);
  padding: 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.hero-side-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: -0.3px;
  font-size: 18px;
  margin-bottom: 4px;
}

.hero-side-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 14px;
}

.hero-side-address {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 14px;
}

.hero-side-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: grid;
  gap: 8px;
}

.hero-side-list li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
  padding-left: 18px;
  position: relative;
}

.hero-side-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.hero-side-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.25s ease;
}

.hero-side-link:hover {
  text-decoration: none;
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.24);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.badge-icon {
  font-size: 16px;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: #fff;
  color: #1e3a8a;
}

.btn-primary:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  text-decoration: none;
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

.btn-outline {
  background: transparent;
  color: #1e3a8a;
  border-color: #1e3a8a;
}

.btn-outline:hover {
  background: #1e3a8a;
  color: #fff;
  text-decoration: none;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Category Section - Modern */
.category-section {
  padding: 80px 0;
  background: #f9fafb;
}

.section-header-modern {
  text-align: center;
  margin-bottom: 48px;
}

.section-title-modern {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 18px;
  color: #6b7280;
  font-weight: 400;
}

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

.category-card-modern {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.category-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.category-icon-wrapper {
  margin-bottom: 20px;
}

.category-icon {
  font-size: 48px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 16px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.polymer-icon {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.manufacturing-icon {
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}

.wholesale-icon {
  background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%);
}

.industrial-icon {
  background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);
}

.category-title-modern {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

.category-desc-modern {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.6;
}

.category-link-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3b82f6;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
}

.category-link-modern:hover {
  color: #1e3a8a;
  gap: 12px;
  text-decoration: none;
}

.category-link-modern span {
  transition: transform 0.3s;
}

.category-link-modern:hover span {
  transform: translateX(4px);
}

/* Featured Products Section - Modern */
.featured-products-section-modern {
  padding: 80px 0;
  background: #fff;
}

.view-all-link-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3b82f6;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}

.view-all-link-modern:hover {
  color: #1e3a8a;
  gap: 12px;
  text-decoration: none;
}

.view-all-link-modern span {
  transition: transform 0.3s;
}

.view-all-link-modern:hover span {
  transform: translateX(4px);
}

.section-header-modern {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

/* Services Section - Modern */
.services-section-modern {
  padding: 80px 0;
  background: #f9fafb;
}

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

.service-card-modern {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  transition: all 0.3s;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.service-icon-modern {
  font-size: 48px;
  margin-bottom: 20px;
}

.service-title-modern {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

.service-desc-modern {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-link-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3b82f6;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
}

.service-link-modern:hover {
  color: #1e3a8a;
  gap: 12px;
  text-decoration: none;
}

.service-link-modern span {
  transition: transform 0.3s;
}

.service-link-modern:hover span {
  transform: translateX(4px);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #fff;
}

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

.cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-layout {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }

  .hero-side {
    justify-content: flex-start;
  }

  .hero-title {
    font-size: 36px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .section-title-modern {
    font-size: 32px;
  }
  
  .hero-stats {
    gap: 24px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .category-grid-modern,
  .services-grid-modern {
    grid-template-columns: 1fr;
  }
  
  .section-header-modern {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .search-input {
    width: 200px;
  }
  
  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
}
