/* =========================
   CSS VARIABLES (LIGHT / PREMIUM)
========================= */
:root {
  --bg: #f7f9fc;
  --card: #ffffff;
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --accent: #2563eb;
  --border: #e5e7eb;
  --radius: 16px;
}

/* =========================
   BASE
========================= */
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =========================
   HERO / INTRO
========================= */
.shop-hero {
  max-width: 900px;
  margin: 120px auto 60px;
  text-align: center;
  padding: 0 20px;
}

.shop-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.shop-hero p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto;
}

/* =========================
   FILTER TABS
========================= */
.shop-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 70px;
  flex-wrap: wrap;
}

.shop-filters button {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.shop-filters button:hover,
.shop-filters button.active {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(37, 99, 235, 0.06);
}

/* =========================
   FEATURED PRODUCT
========================= */
.featured-product {
  max-width: 1100px;
  margin: 0 auto 100px;
  padding: 0 20px;
}

.featured-content {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.06),
    #ffffff
  );
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 50px;
}

.featured-content .badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.featured-content h2 {
  font-size: 1.9rem;
  margin-bottom: 14px;
}

.featured-content p {
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: 28px;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn.primary {
  background: var(--accent);
  color: #ffffff;
}

.btn.primary:hover {
  background: #1d4ed8;
}

.btn.secondary {
  border: 1px solid var(--border);
  color: var(--text-primary);
  background: transparent;
}

.btn.secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* =========================
   PRODUCTS GRID
========================= */
.products {
  max-width: 1200px;
  margin: 0 auto 120px;
  padding: 0 20px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 34px;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.product-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

/* =========================
   PRODUCT INFO
========================= */
.product-info {
  padding: 24px;
}

.product-type {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--text-secondary);
}

.product-type.free {
  color: #16a34a;
}

.product-type.paid {
  color: var(--accent);
}

.product-info h3 {
  margin: 12px 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.product-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 22px;
}

/* =========================
   DISCLAIMER / TRUST
========================= */
.shop-disclaimer {
  max-width: 720px;
  margin: 0 auto 100px;
  text-align: center;
  padding: 0 20px;
}

.shop-disclaimer p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =========================
   COMING SOON OVERLAY
========================= */

.product-card {
  position: relative;
}

/* Blur existing content */
.product-card.coming-soon .card-content {
  filter: blur(4px);
  pointer-events: none;
  user-select: none;
}

/* Overlay */
.coming-soon-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  border-radius: var(--radius);
}

/* Optional subtle animation */
.coming-soon-overlay {
  animation: pulseSoon 2.8s ease-in-out infinite;
}

@keyframes pulseSoon {
  0% { opacity: 0.85; }
  50% { opacity: 1; }
  100% { opacity: 0.85; }
}