/*
Theme Name: Espressina
Theme URI: https://espressina.com
Author: Espressina
Description: Custom theme for Espressina, an Amazon affiliate site covering home espresso machines, grinders, frothers and maintenance gear. Includes a Product custom post type and an affiliate product shortcode.
Version: 1.0.0
Requires PHP: 7.4
Text Domain: espressina
*/

:root{
  --espna-accent:#2383ff;
  --espna-dark:#0f1830;
  --espna-text:#1a1a1a;
  --espna-muted:#555;
  --espna-border:#e5e5e5;
  --espna-bg-soft:#fafafa;
}

*{box-sizing:border-box}

body{
  font-family:-apple-system,"Segoe UI",Roboto,sans-serif;
  color:var(--espna-text);
  line-height:1.65;
  margin:0;
  background:#fff;
}

a{color:var(--espna-accent);text-decoration:none}
a:hover{text-decoration:underline}

img{max-width:100%;height:auto;display:block}

.espna-container{max-width:1100px;margin:0 auto;padding:0 24px}

/* Header */
.espna-site-header{border-bottom:1px solid var(--espna-border);padding:18px 0}
.espna-site-header .espna-container{display:flex;align-items:center;justify-content:space-between}
.espna-logo{font-size:1.4em;font-weight:800;color:var(--espna-dark);text-decoration:none}
.espna-nav ul{list-style:none;display:flex;gap:22px;margin:0;padding:0}
.espna-nav a{color:var(--espna-text);font-weight:600;font-size:.95em}
.espna-nav a:hover{color:var(--espna-accent);text-decoration:none}

/* Footer */
.espna-site-footer{background:var(--espna-dark);color:#c7d2e0;margin-top:60px;padding:40px 0}
.espna-site-footer a{color:#fff}
.espna-footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:24px}
.espna-footer-disclosure{font-size:.82em;color:#93a2bd;margin-top:24px;border-top:1px solid rgba(255,255,255,.1);padding-top:20px}

/* Content wrapper for page/post templates */
.espna-main{padding:40px 0;min-height:60vh}

/* Product shortcode card (used via [espna_product id="123"]) */
.espna-product-card{border:1px solid var(--espna-border);border-radius:14px;padding:22px;margin:20px 0}
.espna-product-card h3{margin:0 0 4px;font-size:1.15em}
.espna-product-card .espna-tier{display:inline-block;font-size:.75em;font-weight:600;padding:3px 10px;border-radius:20px;background:#eef4ff;color:var(--espna-accent);margin-bottom:8px}
.espna-product-card .espna-desc{color:var(--espna-muted);margin:8px 0 14px}
.espna-product-card .espna-btn{display:inline-block;background:var(--espna-accent);color:#fff;padding:10px 18px;border-radius:8px;font-weight:600}
.espna-product-card .espna-btn:hover{background:#3b93ff;text-decoration:none}
.espna-product-card img{border-radius:10px;margin-bottom:14px}

/* Archive grid for the Product CPT */
.espna-product-archive{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:20px}

@media (max-width:640px){
  .espna-nav ul{gap:14px;flex-wrap:wrap}
}
