/*
Theme Name: ArleenMe Affiliate Theme - Pro Enhanced
Theme URI: https://arleen.me
Author: Kuldeep Singh (Monty)
Description: A high-end, teenage girl affiliate WordPress theme with Bento Grid layout.
Version: 2.0.0
Text Domain: arleenme
*/

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Epilogue:wght@400;500;600;700&display=swap');

/* ── TOKENS ── */
:root {
    --primary:    #BE185D;
    --secondary:  #EC4899;
    --cta:        #D97706;
    --background: #FDF2F8;
    --surface:    #FFFFFF;
    --text-main:  #0F172A;
    --text-muted: #64748B;
    --border:     #F7E3EB;

    --font-heading: 'Anton', sans-serif;
    --font-body:    'Epilogue', sans-serif;

    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;

    --shadow-soft:  0 10px 30px -5px rgba(190, 24, 93, 0.05);
    --shadow-hover: 0 20px 40px -10px rgba(190, 24, 93, 0.1);

    --transition: cubic-bezier(0.4, 0, 0.2, 1) 300ms;
}

/* ── BASE ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--background);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── HEADER / NAV ── */
.site-header {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 40px;
}

.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(190, 24, 93, 0.1);
    border-radius: 100px;
    padding: 15px 40px;
    box-shadow: 0 10px 30px -10px rgba(190, 24, 93, 0.15);
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo img {
    height: 48px;
    width: auto;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 200ms ease;
}

.nav-links a:hover { color: var(--primary); }


/* ── NAV AMAZON SEARCH BOX ── */
.nav-search {
    display: none;
    align-items: center;
    background: #fff;
    border: 1.5px solid rgba(190, 24, 93, 0.3);
    border-radius: 100px;
    overflow: hidden;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

.nav-search:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(190, 24, 93, 0.1);
}

.nav-search-input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.875rem;
    padding: 8px 14px;
    width: 190px;
}

.nav-search-input::placeholder { color: var(--text-muted); }

.nav-search-btn {
    background: var(--primary);
    border: none;
    padding: 9px 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 200ms ease;
    color: white;
    flex-shrink: 0;
}

.nav-search-btn:hover { background: #9d174d; }

.nav-search-btn svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

/* Hamburger button — hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: transform 200ms ease, opacity 200ms ease;
}

/* Hamburger → X animation */
.site-nav.is-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav.is-open .hamburger span:nth-child(2) { opacity: 0; }
.site-nav.is-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
    position: relative;
    padding: 100px 0 60px;
    text-align: center;
    overflow: hidden;
}

/* Floating gradient orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    pointer-events: none;
    will-change: transform;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    top: -160px;
    right: -120px;
    animation: orb-drift-1 12s ease-in-out infinite;
}

.hero-orb-2 {
    width: 380px;
    height: 380px;
    background: var(--primary);
    bottom: -100px;
    left: -80px;
    animation: orb-drift-2 15s ease-in-out infinite;
    animation-delay: -4s;
}

.hero-orb-3 {
    width: 260px;
    height: 260px;
    background: #F9A8D4;
    top: 40%;
    left: 42%;
    animation: orb-drift-3 10s ease-in-out infinite;
    animation-delay: -7s;
}

@keyframes orb-drift-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40%       { transform: translate(-40px, 30px) scale(1.08); }
    70%       { transform: translate(20px, -25px) scale(0.94); }
}

@keyframes orb-drift-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    35%       { transform: translate(50px, -35px) scale(1.06); }
    65%       { transform: translate(-20px, 20px) scale(0.96); }
}

@keyframes orb-drift-3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50%       { transform: translate(-50%, -50%) scale(1.2) rotate(20deg); }
}

/* Hero content sits above the orbs */
.hero-content {
    position: relative;
    z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
    .hero-orb { animation: none; }
}

.hero-eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--text-main);
}

/* Anton has no italic — use color accent instead */
.hero-title-accent {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 32px;
}

/* ── HERO SEARCH ── */
.hero-search {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid rgba(190, 24, 93, 0.35);
    border-radius: 100px;
    padding: 6px 6px 6px 20px;
    max-width: 520px;
    margin: 0 auto 48px;
    box-shadow: 0 4px 20px rgba(190, 24, 93, 0.1);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.hero-search:focus-within {
    border-color: var(--primary);
    box-shadow: 0 4px 24px rgba(190, 24, 93, 0.2);
}
.hero-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    color: var(--text-main);
    font-family: var(--font-body);
    min-width: 0;
}
.hero-search-input::placeholder { color: var(--text-muted); }
.hero-search-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.hero-search-btn:hover { background: #9d174d; }
.hero-search-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ── BENTO GRID ── */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
    margin: 40px 0;
}

.bento-item {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.bento-item:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.bento-item.large { grid-column: span 2; grid-row: span 2; }
.bento-item.wide  { grid-column: span 2; }
.bento-item.tall  { grid-row: span 2; }

.bento-img-link {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
}

.bento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.bento-item:hover .bento-img { transform: scale(1.1); }

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 30%, rgba(15, 23, 42, 0.88) 100%);
    z-index: 2;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.bento-category {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.bento-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bento-title a {
    color: inherit;
    text-decoration: none;
}

.bento-title a:hover {
    text-decoration: underline;
}

.bento-price {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 8px;
}

.cta-pill {
    display: inline-block;
    background: var(--cta);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
    transition: background 200ms ease, transform 200ms ease;
    cursor: pointer;
    align-self: flex-start;
}

.cta-pill:hover { background: #b45309; transform: scale(1.05); }

/* ── BLOG SECTION ── */
.blog-section {
    margin-top: 100px;
    border-top: 1px solid var(--border);
    padding-top: 80px;
}

.blog-section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card {
    background: var(--surface);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.blog-card-image {
    height: 250px;
    background: #eee;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.blog-card:hover .blog-card-image img { transform: scale(1.05); }

.blog-card-body { padding: 30px; }

.blog-card-category {
    color: var(--primary);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin: 15px 0;
}

.blog-card-title a {
    text-decoration: none;
    color: inherit;
    transition: color 200ms ease;
}

.blog-card-title a:hover { color: var(--primary); }

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── FOOTER ── */
.site-footer {
    background-color: var(--surface);
    padding: 100px 0 60px;
    border-top: 1px solid var(--border);
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.footer-logo {
    display: block;
    height: 32px;
    width: auto;
    margin-bottom: 30px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color 200ms ease;
}

.footer-nav a:hover { color: var(--primary); }

.footer-social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
    cursor: pointer;
    text-decoration: none;
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--primary);
    transition: fill 200ms ease;
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.social-icon:hover svg { fill: #fff; }

.footer-bottom {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: #94A3B8;
    font-size: 0.85rem;
}

/* ── PRODUCTS ARCHIVE ── */
.archive-header {
    padding: 80px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.archive-header .hero-orb { opacity: 0.3; }

.archive-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 12px;
}

.archive-count {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Category filter bar */
.products-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 40px 0;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.filter-btn {
    display: inline-block;
    padding: 9px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    border: 1.5px solid var(--border);
    color: var(--text-muted);
    background: var(--surface);
    transition: all 200ms ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* Product grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

/* Product card */
.product-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.product-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #fce7f3, #fdf2f8);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform 500ms ease;
    display: block;
}

.product-card:hover .product-card-image img { transform: scale(1.07); }

.product-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.product-card-category {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
}

.product-card-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-main);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-title a {
    text-decoration: none;
    color: inherit;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    gap: 8px;
}

.product-price {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
}

/* Availability badge */
.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font-body);
    white-space: nowrap;
}

.availability-badge::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.availability-badge.available    { background: #dcfce7; color: #166534; }
.availability-badge.available::before { background: #16a34a; }
.availability-badge.unavailable  { background: #fee2e2; color: #991b1b; }
.availability-badge.unavailable::before { background: #dc2626; }
.availability-badge.unknown      { background: #f1f5f9; color: #64748b; }
.availability-badge.unknown::before { background: #94a3b8; }

/* CTA on card */
.product-card-cta {
    display: block;
    text-align: center;
    background: var(--cta);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
    padding: 11px;
    margin: 12px 20px 20px;
    border-radius: var(--radius-sm);
    transition: background 200ms ease;
    cursor: pointer;
}

.product-card-cta:hover { background: #b45309; }

.product-card-cta.is-unavailable {
    background: #e2e8f0;
    color: #94a3b8;
    pointer-events: none;
}

/* ── PAGINATION ── */
.pagination .page-numbers {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.pagination .page-numbers li { display: block; }

.pagination .page-numbers a,
.pagination .page-numbers span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    background: var(--surface);
    transition: var(--transition);
}

.pagination .page-numbers a:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #fdf2f8;
}

.pagination .page-numbers .current {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* No products state */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.no-products p { font-size: 1.1rem; margin-bottom: 16px; }

/* ── SINGLE PRODUCT ── */
.single-product {
    padding: 60px 0 100px;
}

.single-product-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.single-product-breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
}

.single-product-breadcrumbs a:hover { color: var(--primary); }

.single-product-breadcrumbs span:last-child {
    color: var(--text-main);
    font-weight: 600;
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.single-product-fallback p {
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 680px;
}

.single-product-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 40px;
    transition: color 200ms ease;
}

.single-product-back:hover { color: var(--primary); }

.single-product-back svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.single-product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.single-product-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #fce7f3, #fdf2f8);
    position: sticky;
    top: 100px;
}

.single-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
    display: block;
}

.single-product-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 10px;
}

.single-product-category {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
    text-decoration: none;
}

.single-product-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    text-transform: uppercase;
    line-height: 1.05;
    color: var(--text-main);
}

.single-product-price-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.single-product-price {
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
}

.single-product-excerpt {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.single-product-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--cta);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    transition: background 200ms ease, transform 200ms ease;
    cursor: pointer;
}

.single-product-cta:hover { background: #b45309; transform: translateY(-2px); }

.single-product-cta svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

.single-product-cta.is-unavailable {
    background: #e2e8f0;
    color: #94a3b8;
    pointer-events: none;
}

.single-product-disclaimer {
    font-size: 0.8rem;
    color: #94a3b8;
    text-align: center;
}

/* AI Content section */
.single-product-content {
    border-top: 1px solid var(--border);
    padding-top: 60px;
}

.single-product-content-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.single-product-content .entry-content {
    max-width: 800px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.single-product-content .entry-content h2,
.single-product-content .entry-content h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: var(--text-main);
    margin: 32px 0 16px;
}

.single-product-content .entry-content h2 { font-size: 1.6rem; }
.single-product-content .entry-content h3 { font-size: 1.3rem; }

.single-product-content .entry-content p  { margin-bottom: 20px; }
.single-product-content .entry-content ul,
.single-product-content .entry-content ol { padding-left: 24px; margin-bottom: 20px; }
.single-product-content .entry-content li { margin-bottom: 8px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-item.large { grid-column: span 2; grid-row: span 2; }
    .bento-item.wide, .bento-item.tall { grid-column: span 1; grid-row: span 1; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
    .container    { padding: 0 20px; }
    .site-header  { padding: 16px 20px; }

    /* Nav becomes a block on mobile */
    .site-nav {
        flex-wrap: wrap;
        border-radius: 20px;
        padding: 16px 24px;
        gap: 0;
        align-items: center;
    }

    /* Logo and hamburger stay on one row */
    .nav-logo   { flex: 1; }
    .hamburger  { display: flex; }
    .nav-search { display: none; }

    /* Links hidden until .is-open */
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        order: 3;
        padding-bottom: 8px;
    }

    .nav-links li a {
        display: block;
        padding: 12px 0;
        border-top: 1px solid var(--border);
        font-size: 1rem;
    }

    .site-nav.is-open .nav-links { display: flex; }

    .hero          { padding: 60px 0 40px; }
    .hero-title    { font-size: 3rem; }
    .hero-subtitle { font-size: 1rem; }

    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 320px; }
    .bento-item.large { grid-column: span 1; grid-row: span 1; }

    .blog-section       { margin-top: 60px; padding-top: 60px; }
    .blog-section-title { font-size: 2rem; }
    .blog-grid          { grid-template-columns: 1fr; }

    .site-footer  { padding: 60px 0 40px; margin-top: 60px; }
    .footer-grid  { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 480px) {
    .hero-title   { font-size: 2.5rem; }
    .footer-grid  { grid-template-columns: 1fr; }
    .archive-title { font-size: 2.2rem; }
    .single-product-title { font-size: 2rem; }
    .single-product-price { font-size: 1.5rem; }
}

@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .single-product-hero { grid-template-columns: 1fr; gap: 40px; }
    .single-product-image { position: static; aspect-ratio: 4/3; }
}

@media (max-width: 768px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .archive-title { font-size: 2.5rem; }
    .single-product-title { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
}
