/*
Theme Name: theme-shaker-f8d1b3a7-0d2
Theme URI: https://wp-preview.shakerapp.ai/
Author: Shaker AI
Description: AI-generated WooCommerce theme
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL-2.0-or-later
WooCommerce: true
Text Domain: theme-shaker-f8d1b3a7-0d2
*/

/* ─────────────────────────────────────────────────────────────────
 * DESIGN TOKENS (deterministic — generated from blueprint.tokens)
 * Do NOT remove — these guarantee visual consistency.
 * ───────────────────────────────────────────────────────────────── */
:root {
  --color-bg: #f4f6fb;
  --color-surface: #ffffff;
  --color-primary: #1a4a8a;
  --color-primary-light: #2d6bc4;
  --color-accent: #f05a28;
  --color-soft: #e8f0fc;
  --color-text: #1a1f2e;
  --color-muted: #5a6480;
  --color-border: rgba(26,31,46,0.1);

  --font-heading: Manrope, Inter, system-ui, sans-serif;
  --font-body: Inter, system-ui, sans-serif;
  --font-size-base: 16px;
  --font-scale: 1.25;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 96px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 4px rgba(26,74,138,0.06);
  --shadow-md: 0 6px 24px rgba(26,74,138,0.10);
  --shadow-lg: 0 20px 48px rgba(26,74,138,0.14);

  --container-max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: var(--font-size-base); scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--color-text); line-height: 1.15; font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p  { color: var(--color-muted); }
a  { color: var(--color-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--color-primary-light); }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.section-padding { padding: var(--space-xl) 0; }
.section-title { text-align: center; margin-bottom: var(--space-xs); }
.section-subtitle { text-align: center; color: var(--color-muted); margin-bottom: var(--space-lg); font-size: 1.05rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-md); }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-md); }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-md); }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: 999px; font-weight: 600; font-size: 15px;
  cursor: pointer; border: none; text-decoration: none; transition: all .25s ease;
  letter-spacing: .02em;
}
.button--primary { background: var(--color-primary); color: #fff; }
.button--primary:hover { background: var(--color-primary-light); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.button--ghost { background: transparent; color: var(--color-primary); border: 2px solid var(--color-primary); }
.button--ghost:hover { background: var(--color-primary); color: #fff; }
.button--ghost-light { background: rgba(255,255,255,.12); color: #fff; border: 2px solid rgba(255,255,255,.6); backdrop-filter: blur(8px); }
.button--ghost-light:hover { background: #fff; color: var(--color-primary); border-color: #fff; }

/* ─────────────── shadcn-inspired primitives (button / card / badge / input / focus) ─────────────── */
*:focus-visible { outline: 2px solid color-mix(in srgb, var(--color-primary) 60%, transparent); outline-offset: 2px; border-radius: 6px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 40px; padding: 0 18px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: 14px; cursor: pointer; border: 1px solid transparent; text-decoration: none;
  transition: background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease, transform .15s ease;
  line-height: 1; white-space: nowrap;
}
.btn:disabled, .btn[aria-disabled="true"] { opacity: .55; pointer-events: none; }
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-light); color: #fff; box-shadow: var(--shadow-sm); }
.btn-secondary { background: var(--color-soft); color: var(--color-text); }
.btn-secondary:hover { background: color-mix(in srgb, var(--color-soft) 70%, var(--color-primary) 10%); }
.btn-outline { background: transparent; color: var(--color-text); border-color: var(--color-border); }
.btn-outline:hover { background: var(--color-soft); border-color: color-mix(in srgb, var(--color-primary) 30%, var(--color-border) 70%); }
.btn-ghost { background: transparent; color: var(--color-text); }
.btn-ghost:hover { background: var(--color-soft); }
.btn-lg { height: 48px; padding: 0 24px; font-size: 15px; border-radius: var(--radius-sm); }
.btn-sm { height: 32px; padding: 0 12px; font-size: 13px; }

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.card:hover { box-shadow: var(--shadow-md); }
.card-header { padding: 20px 20px 0; }
.card-content { padding: 20px; }
.card-footer { padding: 0 20px 20px; display: flex; gap: 8px; align-items: center; }
.card-title { font-size: 1.1rem; font-weight: 600; margin: 0 0 4px; color: var(--color-text); }
.card-description { font-size: .9rem; color: var(--color-muted); margin: 0; }

.badge {
  display: inline-flex; align-items: center; gap: 4px;
  height: 22px; padding: 0 10px; border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: .02em; line-height: 1;
  border: 1px solid transparent; text-transform: none;
}
.badge-default { background: var(--color-text); color: var(--color-surface); }
.badge-secondary { background: var(--color-soft); color: var(--color-text); }
.badge-outline { background: transparent; color: var(--color-text); border-color: var(--color-border); }
.badge-destructive { background: #dc2626; color: #fff; }
.badge-success { background: #10b981; color: #fff; }
.badge-new { background: var(--color-primary); color: #fff; }
.badge-sale { background: #dc2626; color: #fff; }
.badge-hit { background: var(--color-accent); color: #fff; }

.input, .textarea, select {
  width: 100%; height: 40px; padding: 0 12px; font-size: 14px;
  background: var(--color-surface); color: var(--color-text);
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  font-family: inherit; transition: border-color .15s ease, box-shadow .15s ease;
}
.textarea { height: auto; padding: 10px 12px; min-height: 88px; resize: vertical; }
.input:focus, .textarea:focus, select:focus {
  outline: none; border-color: var(--color-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 18%, transparent);
}
.label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: var(--color-text); }
.muted { color: var(--color-muted); }
.divider { height: 1px; background: var(--color-border); border: 0; margin: 24px 0; }

.eyebrow {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--color-primary);
  padding: 4px 10px; background: var(--color-soft); border-radius: 999px; margin-bottom: 14px;
}

/* ─────────────── Header ─────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(253, 246, 240, 0.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}
.site-header__inner {
  display: flex; flex-direction: row; align-items: center; justify-content: space-between;
  gap: 24px; padding: 18px 24px;
}
.site-branding .site-title {
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700;
  color: var(--color-primary); letter-spacing: .02em; text-decoration: none;
}
.site-description { display: none; }
.main-navigation { flex: 1; }
.main-nav { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; justify-content: center; flex-wrap: wrap; }
.main-nav a {
  color: var(--color-text); font-weight: 500; font-size: 14px;
  text-transform: uppercase; letter-spacing: .8px; position: relative; padding: 6px 0;
}
.main-nav a::after {
  content: ''; position: absolute; left: 50%; bottom: -2px; width: 0; height: 2px;
  background: var(--color-primary); transition: all .3s ease; transform: translateX(-50%);
}
.main-nav a:hover::after { width: 100%; }
.menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--color-text); }
.site-header__actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 999px;
  background: transparent; border: none; cursor: pointer; color: var(--color-text);
  position: relative; transition: background .2s ease, color .2s ease;
  text-decoration: none;
}
.icon-btn:hover { background: var(--color-soft); color: var(--color-primary); }
.icon { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; line-height: 0; }
.icon svg { width: 100%; height: 100%; display: block; }
.icon--inline { width: 16px; height: 16px; vertical-align: -3px; margin-right: 6px; color: var(--color-primary); }
.cart-count {
  position: absolute; top: 2px; right: 2px; background: var(--color-primary); color: #fff;
  font-size: 10px; font-weight: 700; min-width: 18px; height: 18px; line-height: 18px;
  padding: 0 5px; border-radius: 999px; text-align: center; pointer-events: none;
}
.site-header__search { padding: 16px 24px; background: var(--color-surface); border-bottom: 1px solid var(--color-border); }
.search-form { display: flex; gap: 12px; max-width: 600px; margin: 0 auto; }
.search-field { flex: 1; padding: 12px 18px; border: 1px solid var(--color-border); border-radius: 999px; font-size: 15px; background: var(--color-bg); }
.search-submit { padding: 12px 24px; border: none; background: var(--color-primary); color: #fff; border-radius: 999px; font-weight: 600; cursor: pointer; }
.skip-link { position: absolute; left: -9999px; }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-header__inner { padding: 14px 18px; }
}

/* ─────────── Top bar ─────────── */
.top-bar { background: var(--color-text); color: rgba(255,255,255,.85); font-size: 13px; }
.top-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 24px; flex-wrap: wrap; }
.top-bar__notices { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar__notice { white-space: nowrap; }
.top-bar__links { display: flex; gap: 18px; }
.top-bar__links a { color: rgba(255,255,255,.85); }
.top-bar__links a:hover { color: #fff; }
@media (max-width: 768px) { .top-bar { display: none; } }

/* ─────────── USP strip (icon row) ─────────── */
.usp-strip { background: var(--color-surface); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); padding: 18px 0; }
.usp-strip__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.usp-strip__item { display: flex; align-items: center; gap: 14px; padding: 8px 12px; background: var(--color-bg); border-radius: var(--radius-md); }
.usp-strip__icon { width: 32px; height: 32px; color: var(--color-primary); flex-shrink: 0; }
.usp-strip__icon svg { width: 100%; height: 100%; }
.usp-strip__title { font-weight: 600; font-size: 14px; color: var(--color-text); }
.usp-strip__text  { font-size: 12px; color: var(--color-muted); }
@media (max-width: 900px) { .usp-strip__inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .usp-strip__inner { grid-template-columns: 1fr; } }

/* ─── Product badges / ratings / payments ─── */
.product-card__badge { position: absolute; top: 12px; left: 12px; background: var(--color-accent); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 6px; letter-spacing: .03em; z-index: 2; }
.product-card__rating { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--color-muted); }
.product-card__stars { color: #f59e0b; letter-spacing: 1px; }
.product-card__reviews { color: var(--color-muted); }
.footer__payments { display: flex; gap: 8px; justify-content: center; margin-top: 12px; flex-wrap: wrap; align-items: center; }
.footer__payment { background: #fff; color: #1a1f2e; padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 700; display: inline-flex; align-items: center; min-width: 48px; height: 28px; }
.footer__payment svg { height: 18px; width: auto; display: block; }
.footer__payment--text { letter-spacing: .05em; text-transform: uppercase; }

/* ─────────── Hero ─────────── */
.hero-section { position: relative; min-height: 560px; max-height: 720px; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; color: #fff; text-align: center; overflow: hidden; }
.hero-content { position: relative; z-index: 2; max-width: 820px; padding: 80px 24px; }
.hero-eyebrow { display: inline-block; padding: 6px 18px; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 28px; color: #fff; backdrop-filter: blur(8px); background: rgba(255,255,255,.06); }
.hero-content h1 { color: #fff; margin-bottom: 24px; text-shadow: 0 2px 30px rgba(0,0,0,.5); }
.hero-content p  { font-size: clamp(1rem, 1.6vw, 1.25rem); margin-bottom: 36px; color: rgba(255,255,255,.92); max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }

/* ─────────── Categories (real photos) ─────────── */
.categories-section { background: var(--color-bg); }
.category-card {
  display: block; aspect-ratio: 4/5; color: #fff; text-decoration: none;
  border-radius: var(--radius-md); overflow: hidden; position: relative;
  transition: transform .35s ease, box-shadow .35s ease; box-shadow: var(--shadow-sm);
  background-color: var(--color-soft);
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); color: #fff; }
.category-card:hover .category-card__img { transform: scale(1.06); }
.category-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; display: block; }
.category-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.65) 100%); }
.category-card__meta { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px; z-index: 1; }
.category-card__title { color: #fff; font-size: 1.25rem; margin: 0 0 4px; font-weight: 600; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.category-card__cta { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; opacity: .92; color: #fff; }

/* ─────────── Featured products (real photos) ─────────── */
.featured-products { background: var(--color-bg); }
.product-card { background: var(--color-surface); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: all .3s ease; display: flex; flex-direction: column; border: 1px solid var(--color-border); }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card__image { aspect-ratio: 3/4; overflow: hidden; background: var(--color-soft); position: relative; display: block; }
.product-card__photo { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.product-card:hover .product-card__photo { transform: scale(1.05); }
.product-card__badge { position: absolute; top: 12px; left: 12px; background: var(--color-primary); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; z-index: 1; letter-spacing: .02em; }
.product-card__body { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.product-card__title { font-size: 1rem; margin: 0; font-weight: 600; line-height: 1.3; }
.product-card__title a { color: var(--color-text); }
.product-card__title a:hover { color: var(--color-primary); }
.product-card__rating { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--color-muted); }
.product-card__stars { color: #fbbf24; letter-spacing: 1px; }
.product-card__price { font-weight: 700; color: var(--color-primary); font-size: 1.05rem; }
.product-card__price del { color: var(--color-muted); margin-right: 8px; font-weight: 400; font-size: .9rem; }
.product-card__cta { margin-top: 6px; align-self: stretch; text-align: center; }

/* ─────────── USP / Testimonials / Newsletter ─────────── */
.usp-section { background: var(--color-bg); }
.usp-card { text-align: center; padding: 24px; }
.usp-card__icon { font-size: 48px; margin-bottom: 12px; }
.usp-card__title { font-size: 1.15rem; margin-bottom: 8px; }
.usp-card__text { color: var(--color-muted); font-size: .95rem; }

.testimonials-section { background: var(--color-surface); }
.testimonial-card { background: var(--color-bg); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-sm); margin: 0; }
.testimonial-card__text { font-style: italic; font-size: 1.05rem; color: var(--color-text); }
.testimonial-card__author { margin-top: 14px; font-weight: 600; color: var(--color-primary); }

.newsletter-section { background: var(--color-soft); }

/* ─────────── Footer ─────────── */
.site-footer { background: var(--color-text); color: rgba(255,255,255,.85); padding: var(--space-xl) 0 var(--space-md); margin-top: var(--space-xl); }
.site-footer h3, .site-footer h4 { color: #fff; }
.site-footer__widgets { gap: var(--space-md); }
.footer__brand-name { font-size: 1.6rem; margin-bottom: 8px; }
.footer__tagline { color: rgba(255,255,255,.7); font-size: .95rem; margin-bottom: 16px; }
.footer__social { display: flex; gap: 10px; margin-top: 14px; }
.footer__social-link { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 999px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.85); transition: all .2s ease; }
.footer__social-link:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); }
.footer__social-link .icon { width: 18px; height: 18px; }
.footer__title { font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.footer__links { list-style: none; padding: 0; margin: 0; }
.footer__links li { margin-bottom: 8px; }
.footer__links a { color: rgba(255,255,255,.7); font-size: .95rem; }
.footer__links a:hover { color: #fff; }
.footer__contacts p { color: rgba(255,255,255,.7); margin-bottom: 8px; font-size: .95rem; }
.footer__contacts a { color: rgba(255,255,255,.85); }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; margin-top: 28px; text-align: center; color: rgba(255,255,255,.5); font-size: .85rem; }

@media (max-width: 768px) {
  .hero-section { min-height: 70vh; }
  .hero-content { padding: 60px 18px; }
  .category-card { aspect-ratio: 1/1; padding: 22px; }
  .category-card__icon { font-size: 42px; }
  .category-card__title { font-size: 1.2rem; }
  .product-card__monogram { font-size: 4rem; }
  .section-padding { padding: var(--space-lg) 0; }
}