/*
Theme Name: Small Favors
Theme URI:
Author: Terry Dean
Description: 
Version: one million probably, who knows
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.2
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: small-favors
Tags: e-commerce, marketplace, art, pastel, minimal, woocommerce
*/

.plinto-logo {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 800;
    font-size: 52px;
    color: #222;
    display: inline-block;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: lowercase;
    user-select: none;
    text-decoration: none;
}
.plinto-logo .plinto-i {
    position: relative;
    display: inline-block;
}
.plinto-logo .plinto-dot {
    position: absolute;
    top: -0.48em;
    left: 50%;
    transform: translateX(-50%);
    width: 0.28em;
    height: 0.28em;
    line-height: 0;
}
.plinto-logo .plinto-dot svg {
    width: 100%;
    height: 100%;
    display: block;
}





/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colors — pastel summer palette */
  --bg:            #F5F3ED;
  --bg-card:       #FFFFFF;
  --slate:         #5B6A9A;
  --slate-dark:    #4A587F;
  --slate-light:   #EEF0F7;
  --sky:           #B1E1E7;
  --peach:         #FFDEC2;
  --pink:          #F194B4;
  --yellow:        #E6E99B;
  --text:          #1A1A1A;
  --text-muted:    #6B6B6B;
  --border:        #E5E2DA;
  --border-light:  #EEECE6;

  /* Hero gradient — sky blue top-left to peach bottom-right */
  --hero-gradient: linear-gradient(135deg, #C8E8ED 0%, #B1E1E7 35%, #FFDEC2 100%);

  /* Typography */
  --font-display:  'Fredoka', sans-serif;
  --font-body:     'DM Sans', sans-serif;

  /* Radii */
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(91,106,154,0.08);
  --shadow-md: 0 4px 20px rgba(91,106,154,0.13);
  --shadow-lg: 0 8px 40px rgba(91,106,154,0.16);

  --max-w: 1160px;
  --header-h: 60px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-transform: lowercase;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* Override lowercase for code/pre */
code, pre { text-transform: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
}

h1 {
  font-size: 52px
}

p { margin-bottom: 1em; }
/*p:last-child { margin-bottom: 0; }*/

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 48px 0; }

/* ============================================================
   GRADIENT CARD (the main UI surface)
   ============================================================ */
.gradient-card {
  background: var(--hero-gradient);
  border-radius: var(--r-xl);
  padding: 48px 44px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--slate);
  color: #fff;
  border-color: var(--slate);
}
.btn-primary:hover {
  background: var(--slate-dark);
  border-color: var(--slate-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--slate);
  border-color: var(--slate);
}
.btn-outline:hover {
  background: var(--slate);
  color: #fff;
}

.btn-ghost {
  background: rgba(255,255,255,0.55);
  color: var(--text);
  border-color: transparent;
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.8);
}

.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn-lg { padding: 14px 30px; font-size: 16px; }

/* ============================================================
   SITE HEADER
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,243,237,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  height: var(--header-h);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.site-logo {
  font-family: var(--font-display);
  font-size: 35px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  flex-shrink: 0;
  transition: color 0.15s;
}
.site-logo:hover { color: var(--slate); }

/* Nav */
#primary-nav .nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

#primary-nav .nav-menu li a {
  padding: 7px 13px;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s, background 0.15s;
}
#primary-nav .nav-menu li a:hover,
#primary-nav .nav-menu li.current-menu-item a {
  color: var(--text);
  background: rgba(91,106,154,0.08);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.header-actions .nav-link {
  padding: 7px 13px;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s, background 0.15s;
}
.header-actions .nav-link:hover { color: var(--text); background: rgba(91,106,154,0.08); }

.header-actions .nav-link-sell {
  font-weight: 700;
  color: var(--slate);
}
.header-actions .nav-link-sell:hover { background: var(--slate-light); color: var(--slate-dark); }

/* Mobile toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--r-sm);
  color: var(--text);
}
.menu-toggle:hover { background: var(--border-light); }

/* ============================================================
   HERO
   ============================================================ */
.hero-section { padding: 48px 0 8px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
  min-height: 460px;
}

/* Hero left */
.hero-left {
  display: flex;
  text-align: left;
  flex-direction: column;
  gap: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text);
}

.hero-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-list li {
  font-size: 16px;
  color: var(--text-muted);
  padding-left: 0;
}

/* Polaroid card */
.polaroid-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.polaroid {
  background: #f0f0f0;
  padding: 17px 15px 12px;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  transform: rotate(-1.5deg);
  max-width: 350px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.polaroid-title {
    text-align: center;
  color: var(--text-muted);
  margin: 5px 0px 15px;
}
.polaroid:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.polaroid-img {
  aspect-ratio: 4/4;
  overflow: hidden;
  border-radius: 2px;
  background: var(--border-light);
}
.polaroid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
    object-position: top;
}
.polaroid-img .polaroid-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}

.polaroid-caption {
  margin: 5px 0;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  color: var(--text-muted);
  font-family: var(--font-display);
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  margin-bottom: 28px;
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.section-head-row .section-title { margin-bottom: 0; }

/* ============================================================
   LISTINGS GRID
   ============================================================ */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
}

/* Listing card */
.listing-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.listing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.listing-card-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--border-light);
}
.listing-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.listing-card:hover .listing-card-img img { transform: scale(1.05); }

.listing-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.listing-card-body {
  padding: 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.listing-card-seller {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.listing-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.listing-card-title a { color: inherit; }
.listing-card-title a:hover { color: var(--slate); }

.listing-card-footer {
  padding: 10px 16px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.listing-card-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--slate);
}

/* WooCommerce product list reset */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)) !important;
  gap: 20px !important;
  float: none !important;
  width: auto !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  background: var(--bg-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  padding: 14px 16px 4px !important;
  font-weight: 600 !important;
}

.woocommerce ul.products li.product .price {
  padding: 0 16px 12px !important;
  color: var(--slate) !important;
  font-weight: 700 !important;
}

.woocommerce ul.products li.product .button {
  margin: 0 16px 14px !important;
  background: var(--slate) !important;
  color: #fff !important;
  border-radius: var(--r-pill) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
  transition: background 0.18s !important;
}
.woocommerce ul.products li.product .button:hover {
  background: var(--slate-dark) !important;
}

/* ============================================================
   SINGLE LISTING / SINGLE PRODUCT
   ============================================================ */
.single-listing-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: flex-start;
  padding: 48px 0 64px;
}

.single-listing-gallery img {
  border-radius: var(--r-lg);
  width: 100%;
}

.single-listing-meta { display: flex; flex-direction: column; gap: 20px; }

.single-listing-seller {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.single-listing-seller a { color: var(--slate); }
.single-listing-seller a:hover { text-decoration: underline; }

.single-listing-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
}

.single-listing-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--slate);
}

.single-listing-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.single-listing-attrs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--border-light);
  border-radius: var(--r-md);
  padding: 16px 20px;
}

.listing-attr {
  display: flex;
  gap: 12px;
  font-size: 14px;
}
.listing-attr-label { color: var(--text-muted); flex-shrink: 0; width: 80px; }
.listing-attr-value { font-weight: 600; }

/* WooCommerce single product */
.woocommerce div.product .product_title {
  font-family: var(--font-display) !important;
  font-size: clamp(28px, 4vw, 42px) !important;
  font-weight: 600 !important;
  color: var(--text) !important;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--slate) !important;
  font-size: 26px !important;
  font-weight: 700 !important;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--slate) !important;
  color: #fff !important;
  border-radius: var(--r-pill) !important;
  border: none !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  padding: 12px 28px !important;
  box-shadow: none !important;
  text-shadow: none !important;
  transition: background 0.18s !important;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--slate-dark) !important;
  color: #fff !important;
}

.woocommerce div.product div.images img {
  border-radius: var(--r-lg) !important;
}

/* ============================================================
   SELLER / AUTHOR PROFILE
   ============================================================ */
.seller-profile-header {
  background: var(--hero-gradient);
  border-radius: var(--r-xl);
  padding: 40px 44px;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
}

.seller-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.7);
  flex-shrink: 0;
}

.seller-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 3px solid rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
}

.seller-info { display: flex; flex-direction: column; gap: 6px; }

.seller-name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
}

.seller-bio {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 500px;
}

.seller-stats {
  display: flex;
  gap: 24px;
  margin-top: 4px;
}

.seller-stat { font-size: 14px; color: var(--text-muted); }
.seller-stat strong { font-weight: 700; color: var(--text); }

/* ============================================================
   WHY SECTION / INFO CARD
   ============================================================ */
.why-card {
  background: var(--hero-gradient);
  border-radius: var(--r-xl);
  padding: 44px;
}

.why-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  margin-bottom: 20px;
}

.why-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 680px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--slate);
  border-radius: var(--r-xl);
  padding: 48px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-banner-text h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  color: #fff;
  margin-bottom: 8px;
}
.cta-banner-text p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}

.btn-white {
  background: #fff;
  color: var(--slate);
  border-radius: var(--r-pill);
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  flex-shrink: 0;
}
.btn-white:hover { background: var(--bg); }

/* ============================================================
   FEATURES ROW
   ============================================================ */
.features-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}
.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   BLOG / POST CARDS
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

.post-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.post-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--border-light);
}
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.post-card:hover .post-card-img img { transform: scale(1.04); }

.post-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.post-card-meta { font-size: 13px; color: var(--text-muted); }
.post-card-title { font-size: 18px; font-weight: 700; line-height: 1.3; }
.post-card-title a:hover { color: var(--slate); }
.post-card-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.6; flex: 1; }
.post-card-link { margin-top: 10px; font-size: 14px; font-weight: 600; color: var(--slate); }
.post-card-link:hover { text-decoration: underline; }

/* ============================================================
   GENERIC PAGE CONTENT
   ============================================================ */
.page-hero {
  padding: 44px 0 32px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 600;
}

.entry-content {
  font-size: 17px;
  line-height: 1.8;
  /* max-width: 720px; */
}
.entry-content h2, .entry-content h3 { margin: 1.6em 0 0.5em; }
.entry-content p { margin-bottom: 1.3em; }
.entry-content img { border-radius: var(--r-md); }
.entry-content ul, .entry-content ol { padding-left: 1.4em; margin-bottom: 1.3em; list-style: disc; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination-wrap { display: flex; justify-content: center; margin-top: 48px; }

.page-numbers { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }

.page-numbers a,
.page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  background: var(--bg-card);
  transition: all 0.15s;
}
.page-numbers a:hover { border-color: var(--slate); color: var(--slate); }
.page-numbers .current { background: var(--slate); border-color: var(--slate); color: #fff; }

/* ============================================================
   SITE FOOTER
   ============================================================ */
#site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  padding: 48px 0 28px;
  margin-top: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  margin-bottom: 36px;
}

.footer-brand .site-logo { display: inline-block; margin-bottom: 10px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); max-width: 180px; line-height: 1.6; }

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 24px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 14px; color: var(--text-muted); transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }

/* ============================================================
   404
   ============================================================ */
.error-404-wrap {
  text-align: center;
  padding: 80px 24px;
}
.error-404-num {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 1;
  color: var(--border);
  margin-bottom: 16px;
}
.error-404-wrap h2 { font-size: 28px; margin-bottom: 10px; }
.error-404-wrap p { color: var(--text-muted); margin-bottom: 28px; }

/* ============================================================
   FORMS (seller signup etc.)
   ============================================================ */
.sf-form { display: flex; flex-direction: column; gap: 12px; }

.sf-form input,
.sf-form textarea,
.sf-form select {
  width: 100%;
  padding: 13px 18px;
  border-radius: var(--r-md);
  border: none;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(4px);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: background 0.15s, box-shadow 0.15s;
}
.sf-form input:focus,
.sf-form textarea:focus {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 0 2px var(--slate);
}
.sf-form input::placeholder { color: var(--text-muted); }

/* WooCommerce form overrides */
.woocommerce-page form .form-row input.input-text,
.woocommerce-page form .form-row textarea {
  border-radius: var(--r-md) !important;
  border: 1.5px solid var(--border) !important;
  padding: 11px 16px !important;
  font-size: 15px !important;
  transition: border-color 0.15s !important;
}
.woocommerce-page form .form-row input.input-text:focus {
  border-color: var(--slate) !important;
  outline: none !important;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.no-results {
  text-align: center;
  padding: 56px 24px;
  color: var(--text-muted);
  font-size: 16px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .polaroid-wrap { order: -1; }
  .polaroid { max-width: 220px; }
  .single-listing-wrap { grid-template-columns: 1fr; gap: 32px; }
  .seller-profile-header { flex-direction: column; text-align: center; }
  .seller-stats { justify-content: center; }
  .cta-banner { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .gradient-card { padding: 32px 24px; }
  .why-card { padding: 32px 24px; }
}

@media (max-width: 768px) {
  #primary-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(245,243,237,0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    padding: 12px 16px 20px;
    z-index: 99;
  }
  #primary-nav.is-open { display: block; }
  #primary-nav .nav-menu { flex-direction: column; align-items: flex-start; gap: 2px; }
  #primary-nav .nav-menu li { width: 100%; }
  #primary-nav .nav-menu li a { display: block; width: 100%; }
  .menu-toggle { display: flex; }
  .header-actions .nav-link:not(.nav-link-sell) { display: none; }
}

@media (max-width: 560px) {
  .hero-headline { font-size: 32px; }
  .gradient-card { padding: 24px 18px; }
  .cta-banner { padding: 32px 20px; }
}

/* ============================================================
   WOOCOMMERCE STUFF
   ============================================================ */

.woocommerce ul.products li.product a img, .attachment-small-favors-square  {
    width: 100%;
    height: 250px;
    display: block;
    margin: 0 0 1em;
    box-shadow: none;
    object-fit: cover;
    object-position: top;
}

.woocommerce .quantity .qty, .wc-block-components-quantity-selector, .product_meta {
    display:none!important;
}

.woocommerce ul.products::before{
    display:none!important;
}

.wc-block-components-button {
    border-radius: var(--r-pill)
}
