/* Enhanced Specialty Products Section Styles */
.section.section-light-bg {
  background: linear-gradient(120deg, #f8fafc 60%, #e6f2e6 100%);
  padding-bottom: 60px;
  position: relative;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2e7d32 0%, #a5d6a7 100%);
  border-radius: 2px;
  margin: 18px auto 32px auto;
}

.enhanced-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 24px;
}

.enhanced-product-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(44, 62, 80, 0.08);
  transition: transform 0.22s cubic-bezier(.4,2,.6,1), box-shadow 0.22s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  border: 1px solid #e0e0e0;
}
.enhanced-product-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(44, 62, 80, 0.16);
  border-color: #a5d6a7;
}

.enhanced-product-image {
  width: 100%;
  height: 180px;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  overflow: hidden;
}
.enhanced-product-image img {
  max-width: 100%;
  max-height: 160px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(44, 62, 80, 0.07);
}

.enhanced-product-card .product-content {
  padding: 24px 20px 20px 20px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.enhanced-product-card h3 {
  font-size: 1.25rem;
  color: #256029;
  margin-bottom: 10px;
  font-weight: 700;
}
.enhanced-product-card p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 18px;
}

.enhanced-learn-more {
  display: inline-block;
  background: linear-gradient(90deg, #388e3c 0%, #81c784 100%);
  color: #fff !important;
  padding: 10px 26px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px 0 rgba(44, 62, 80, 0.07);
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  margin-top: auto;
}
.enhanced-learn-more:hover {
  background: linear-gradient(90deg, #256029 0%, #388e3c 100%);
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(44, 62, 80, 0.13);
  transform: scale(1.06);
}
/* Custom Styles for Sparklink Traders Static HTML */

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Stats Counter */
.stats-section {
  background: linear-gradient(135deg, #1a3a1a 0%, #0d1f0d 100%);
  color: white;
  padding: 80px 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 52px;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 16px;
  opacity: 0.9;
  font-weight: 500;
}

/* Testimonials */
.testimonials-section {
  background-color: #f9fafb;
}

.testimonial-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  border-left: 4px solid #d4af37;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 16px;
}

.testimonial-author {
  font-weight: 600;
  color: #2d5a27;
  font-size: 16px;
}

.testimonial-company {
  font-size: 14px;
  color: #888;
}

.testimonial-rating {
  color: #d4af37;
  margin-bottom: 15px;
  font-size: 18px;
}

/* Call to Action Boxes */
.cta-box {
  background: linear-gradient(135deg, #1a3a1a 0%, #2d5a27 100%);
  color: white;
  padding: 50px;
  border-radius: 12px;
  text-align: center;
  margin: 40px 0;
}

.cta-box h3 {
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: 600;
}

.cta-box p {
  margin-bottom: 25px;
  opacity: 0.95;
  font-size: 17px;
  line-height: 1.6;
}

/* Feature Box */
.feature-box {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #f9fafb;
  border-radius: 8px;
  margin-bottom: 20px;
}

.feature-icon {
  font-size: 32px;
  min-width: 50px;
}

.feature-content h4 {
  color: #2c5f2d;
  margin-bottom: 5px;
}

.feature-content p {
  color: #666;
  font-size: 14px;
}

/* Product Categories */
.product-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.product-filter-btn {
  padding: 8px 20px;
  border: 2px solid #2c5f2d;
  background: transparent;
  color: #2c5f2d;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.product-filter-btn:hover,
.product-filter-btn.active {
  background: #2c5f2d;
  color: white;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 20px;
  color: #666;
}

.breadcrumb a {
  color: #2c5f2d;
}

.breadcrumb-separator {
  color: #ccc;
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

th {
  background-color: #2c5f2d;
  color: white;
  padding: 12px;
  text-align: left;
  font-weight: 600;
}

td {
  padding: 12px;
  border-bottom: 1px solid #e5e7eb;
}

tr:hover {
  background-color: #f9fafb;
}

/* Iframe Responsive */
iframe {
  max-width: 100%;
  height: auto;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  margin: 20px 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #e5e7eb;
  border-radius: 50%;
  border-top-color: #2c5f2d;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-muted {
  color: #999;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.py-20 {
  padding: 20px 0;
}

.px-20 {
  padding: 0 20px;
}

/* Print Styles */
@media print {
  .site-header,
  .site-footer,
  .cta-button {
    display: none;
  }

  body {
    background: white;
  }
}