/* =============================================
   BREEZER ELECTRIC - Shop Stylesheet
   ============================================= */

.shop-section { background: #f8fafc; }

.shop-filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }

.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 48px; }

.shop-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.shop-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.13); }

.shop-card-badge {
  position: absolute; top: 16px; left: 16px;
  background: #1a2535; color: #f7a800;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 12px; border-radius: 50px;
}
.shop-card-badge.best-seller { background: #f7a800; color: #111827; }


.shop-card-body { padding: 20px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.shop-card-body h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; color: #111827; margin-bottom: 8px; }
.shop-card-body > p { color: #6b7280; font-size: 14px; line-height: 1.6; margin-bottom: 16px; }

.shop-card-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.shop-card-specs span {
  background: rgba(247,168,0,0.1); color: #92650a;
  font-size: 12px; font-weight: 500; padding: 4px 10px;
  border-radius: 50px; border: 1px solid rgba(247,168,0,0.25);
}

.shop-card-price { margin-bottom: 20px; margin-top: auto; }
.price-label { display: block; font-size: 12px; color: #9ca3af; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.price { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; color: #111827; }

.shop-card-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.shop-card-actions .btn { flex: 1; font-size: 13px; padding: 10px 14px; text-align: center; }

.btn-outline-dark {
  background: transparent; color: #111827; border: 2px solid #d1d5db; font-weight: 600; transition: all 0.25s ease;
}
.btn-outline-dark:hover { border-color: #111827; background: #111827; color: #ffffff; }

.custom-order-banner {
  background: linear-gradient(135deg, #1a2535 0%, #111827 100%);
  border-radius: 16px; padding: 36px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.custom-order-content { display: flex; align-items: flex-start; gap: 20px; flex: 1; }
.custom-order-icon { font-size: 40px; flex-shrink: 0; }
.custom-order-content h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; color: #ffffff; margin-bottom: 6px; }
.custom-order-content p { color: #94a3b8; font-size: 15px; }
.custom-order-actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 1024px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .shop-grid { grid-template-columns: 1fr; }
  .custom-order-banner { flex-direction: column; padding: 28px 24px; }
  .custom-order-actions { width: 100%; }
  .custom-order-actions .btn { flex: 1; }
}

.shop-card-icon {
  height: 220px;
  padding: 0;
  overflow: hidden;
  background: #f1f5f9;
  font-size: 0;
  text-align: center;
}

.shop-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}