/* Modern Solar Grid Layout */
.solar-product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) { .solar-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .solar-product-grid { grid-template-columns: repeat(4, 1fr); } }

.solar-card-group {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.solar-card-group:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(245, 159, 10, 0.2);
  border-color: #F59F0A;
}

.solar-card-img {
  overflow: hidden;
  height: 200px;
}

.solar-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.solar-card-group:hover .solar-card-img img {
  transform: scale(1.05);
}

.solar-card-body {
  padding: 1.25rem;
}

.solar-badge {
  font-size: 0.75rem;
  background: #f3f4f6;
  color: #4b5563;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
}

.solar-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 10px 0 5px 0;
  color: #1f2937;
}

.solar-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.4;
  height: 40px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.solar-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.solar-price {
  font-weight: 700;
  font-size: 1.2rem;
  color: #F59F0A;
}

.solar-add-btn {
  background: #F59F0A;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.solar-add-btn:hover {
  background: #d97706;
}

#footer {
    background-color: #f9f9f9 !important; /* Clean light background */
    padding: 60px 0 20px;
    color: #444;
    border-top: 1px solid #eee;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #222;
}

.social-icons img {
    height: 32px;
    width: auto;
    margin: 0 12px;
    border-radius: 6px;
    transition: transform 0.2s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.contact-icon {
    font-size: 20px;
    color: #F59F0A; /* Your primary brand orange */
    margin-bottom: 15px;
}

.contact-item h5 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #222;
}

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

.footer-divider {
    border-top: 1px solid #e0e0e0;
    margin: 40px 0 30px;
}

.copyright {
    font-size: 13px;
    color: #888;
}

/* Mobile Tweak */
@media (max-width: 767px) {
    .contact-item {
        padding-bottom: 30px;
        border-bottom: 1px solid #eee;
        margin-bottom: 30px;
    }
    .contact-item:last-child {
        border-bottom: none;
    }
}