/* Reusable Products Section Styles */
.reusable-products-section {
  position: relative;
  padding: 100px 24px;
  background: linear-gradient(180deg, #fefefe 0%, var(--green-50) 50%, #fefefe 100%);
}

.reusable-products-section .products-container {
  max-width: 1200px;
  margin: 0 auto;
}

.reusable-products-section .products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    align-items:stretch;
}

.reusable-products-section .product-card {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.reusable-products-section .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(22, 163, 74, 0.2);
}

.reusable-products-section .product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--amber-500));
  opacity: 0;
  transition: opacity 0.3s;
}

.reusable-products-section .product-card:hover::before {
  opacity: 1;
}

.reusable-products-section .product-card-inner {
  padding: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.reusable-products-section .product-card-link {
  display: flex;
  flex-direction: column;
  color: inherit;
  cursor: pointer;
  outline: none;
  flex: 1;
}

.reusable-products-section .product-card-link:focus-visible {
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
  border-color: rgba(22, 163, 74, 0.4);
}

.reusable-products-section .product-card-link:hover .product-card-img {
  transform: scale(1.08) translateY(-5px);
}

.reusable-products-section .product-card-img {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  transition: transform 0.4s;
}

.reusable-products-section .product-card:hover .product-card-img {
  transform: scale(1.08) translateY(-5px);
}

.reusable-products-section .product-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.reusable-products-section .product-card-tag {
  font-size: 0.85rem;
  color: var(--green-700);
  font-weight: 600;
  padding: 4px 12px;
  background: rgba(22, 163, 74, 0.08);
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 12px;
}

.reusable-products-section .product-card-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0 0 16px;
  line-height: 1.5;
  text-align: left;
}

/* Specification Table */
.reusable-products-section .product-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.85rem;
  text-align: left;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.reusable-products-section .product-spec-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
}

.reusable-products-section .product-spec-table tbody tr:last-child {
  border-bottom: none;
}

.reusable-products-section .product-spec-table tbody tr:nth-child(even) {
  background: var(--gray-50);
}

.reusable-products-section .product-spec-table tbody tr:nth-child(odd) {
  background: #fff;
}

.reusable-products-section .product-spec-table .spec-label {
  font-weight: 600;
  color: var(--gray-700);
  padding: 10px 12px;
  width: 40%;
  vertical-align: top;
  border-right: 1px solid var(--gray-200);
}

.reusable-products-section .product-spec-table .spec-value {
  color: var(--gray-600);
  padding: 10px 12px;
  width: 60%;
  vertical-align: top;
}

/* Product Highlights */
.reusable-products-section .product-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 16px;
  justify-content: center;
}

.reusable-products-section .product-highlight-badge {
  font-size: 0.8rem;
  color: var(--green-700);
  font-weight: 600;
  padding: 6px 12px;
  background: rgba(22, 163, 74, 0.08);
  border-radius: var(--radius-full);
  border: 1px solid rgba(22, 163, 74, 0.15);
}

/* Buttons */
.reusable-products-section .product-card-button {
  display: inline-block;
  margin-top: auto;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: #fff;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.2);
}

.reusable-products-section .product-card-link:hover .product-card-button {
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.3);
  transform: translateY(-1px);
}

.reusable-products-section .product-card-dealership-btn {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 10px 20px;
  background: transparent;
  color: var(--green-700);
  border: 2px solid var(--green-600);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.reusable-products-section .product-card-dealership-btn:hover {
  background: var(--green-600);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
}

/* Responsive */
@media (max-width: 1024px) {
  .reusable-products-section .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .reusable-products-section {
    padding: 60px 16px;
  }
  
  .reusable-products-section .products-grid {
    grid-template-columns: 1fr;
  }
}
