/* 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: 100%;
  height: auto;
  display: block;
}

/* Shipping Banner */
.shipping-banner {
  background-color: #FFD700;
  color: #333;
  padding: 10px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.shipping-banner a {
  color: #333;
  text-decoration: underline;
  margin-left: 5px;
  font-weight: 700;
}

/* Header */
.site-header {
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

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

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

.logo-section .logo {
  height: 85px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-section h1 {
  font-size: 16px;
  font-weight: 600;
  color: #FFD700;
  margin: 0;
}

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

.search-bar {
  position: relative;
}

.search-input {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  width: 200px;
}


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

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

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

.nav-menu > li > a {
  display: block;
  padding: 15px 20px;
  color: #333;
  font-size: 14px;
}

.nav-menu > li:hover > a {
  background-color: #FFF9C4;
  color: #333;
}

/* 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 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

.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: none;
  border-radius: 0;
  overflow: visible;
  transition: transform 0.3s;
  text-align: center;
}

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

.product-image {
  width: 100%;
  height: 250px;
  object-fit: contain;
  background-color: #f5f5f5;
  padding: 10px;
  display: block;
  min-height: 250px;
}

.product-info {
  padding: 15px 0;
}

.product-title {
  font-size: 14px;
  font-weight: 400;
  color: #333;
  margin-bottom: 10px;
  min-height: 40px;
  line-height: 1.4;
  text-align: left;
}

.product-title a {
  color: #333;
  text-decoration: none;
}

.product-title a:hover {
  text-decoration: underline;
}

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

.price-current {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

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

.price-range {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.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: #FFD700;
  color: #333;
  border-color: #FFD700;
  font-weight: 600;
}

/* Footer */
.site-footer {
  background-color: #f5f5f5;
  padding: 40px 20px 20px;
  margin-top: 60px;
}

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

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

.footer-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.footer-section p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.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 #e5e5e5;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

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

.footer-legal a {
  color: #666;
}


.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: #FFD700;
  color: #333;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #FFC107;
  color: #000;
}

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

.btn-secondary:hover {
  background-color: #FFF9C4;
  border-color: #FFC107;
}

/* 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: #FFD700;
  color: #333;
  font-weight: 600;
}

.dropdown-menu a.active,
.submenu a.active {
  background-color: #FFF9C4;
  color: #333;
  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: #FFF9C4;
  border-radius: 0;
  border-left: 4px solid #FFD700;
}

.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: #FFD700;
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

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

.submit-btn {
  width: 100%;
  padding: 14px;
  background-color: #FFD700;
  color: #333;
  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: #FFC107;
  color: #000;
}

@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: #FFD700;
}

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

.shop-link {
  display: inline-block;
  padding: 8px 20px;
  background-color: #FFD700;
  color: #333;
  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: #FFD700;
}

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

.shop-now-btn:hover {
  background-color: #FFC107;
  color: #000;
}

.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: #FFD700;
}

.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: #FFD700;
}

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

.contact-link {
  display: inline-block;
  padding: 12px 30px;
  background-color: #FFD700;
  color: #333;
  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: #FFD700;
  color: #333;
  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: #FFF9C4;
  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, #FFD700, #FFC107);
  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(255, 215, 0, 0.25);
  border-color: #FFD700;
}

.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, #FFF9C4, #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: #FFD700;
}

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

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

/* 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: #FFD700;
}

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

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

.service-link:hover {
  background-color: #FFC107;
  color: #000;
}

@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;
  }
}
