/* Foundi — Shop Styles */

.shop-wrapper { max-width: 1100px; margin: 0 auto; padding: clamp(24px, 4vh, 40px) 16px; }
  .shop-header { text-align: center; margin-bottom: 40px; }
  .shop-header h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -.03em; margin-bottom: 10px; }
  .shop-header p { color: var(--text-secondary); font-size: 16px; max-width: 520px; margin: 0 auto; line-height: 1.6; }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
  }
  .product-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--dur-slow) var(--ease-spring);
    display: flex;
    flex-direction: column;
  }
  .product-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
  .product-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--bg-alt);
  }
  .product-img-placeholder {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--border-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
  }
  .product-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
  .product-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--primary);
    margin-bottom: 8px;
  }
  .product-name { font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.01em; }
  .product-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; flex: 1; }
  .product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .product-price { font-size: 22px; font-weight: 800; color: var(--primary); }
  .product-price small { font-size: 13px; font-weight: 500; color: var(--text-muted); }

/* ---- Coming Soon ---- */

.shop-coming-soon {
  text-align: center;
  padding: 40px 0 60px;
}
.coming-soon-icon {
  color: var(--primary);
  opacity: .6;
  margin-bottom: 16px;
}
.coming-soon-badge {
  display: inline-block;
  padding: 6px 20px;
  background: linear-gradient(135deg, var(--primary), #0369a1);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 100px;
  margin-bottom: 20px;
}
.shop-coming-soon h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.coming-soon-subtitle {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.coming-soon-cta {
  max-width: 480px;
  margin: 0 auto;
  padding: 32px;
  background: linear-gradient(135deg, rgba(26,86,219,.04), rgba(3,105,161,.06));
  border-radius: var(--radius-xl);
  border: 1px solid rgba(26,86,219,.1);
}
.coming-soon-cta p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ---- Shipping ---- */

.shipping-section { margin-top: 48px; }
.shipping-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}
.shipping-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.shipping-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px;
}
.shipping-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.shipping-card-head strong { font-size: 15px; }
.shipping-price { font-weight: 800; color: var(--primary); }
.shipping-countries {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.shipping-days {
  font-size: 13px;
  color: var(--text-secondary);
}
.shipping-days svg {
  vertical-align: -2px;
  margin-right: 4px;
}

/* ---- Empty (legacy fallback) ---- */

.empty-shop {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}
.empty-shop svg { margin-bottom: 20px; opacity: .4; }
.empty-shop h2 { font-size: 22px; font-weight: 700; color: var(--text-secondary); margin-bottom: 8px; }
.empty-shop p { font-size: 15px; max-width: 400px; margin: 0 auto; }
