/*
Theme Name: Ami Fashion
Theme URI: https://amifashion.com
Author: Ami
Author URI: https://amifashion.com
Description: A premium female fashion affiliate blog theme built around deep magenta and warm gold. Designed for dresses, shoes, bags, jewellery, and accessories. Fully integrated with LTK, ShopMy, and Howl affiliate platforms.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ami-fashion
Tags: blog, fashion, affiliate, e-commerce, custom-colors, custom-header, custom-menu, featured-images, post-thumbnails, rtl-language-support, sticky-post, threaded-comments, translation-ready
*/

/* ── COLOUR TOKENS ──────────────────────────────────────────── */
:root {
    --pur:        #8B1560;
    --pur-d:      #6A1049;
    --pur-dd:     #4A0B33;
    --pur-l:      #F7EAF2;
    --pur-ll:     #FDF4FA;
    --gld:        #E8A020;
    --gld-d:      #C07810;
    --gld-l:      #FDF3E0;
    --gld-ll:     #FFFBF3;
    --white:      #FFFFFF;
    --off:        #FDFBF9;
    --text:       #1a0a12;
    --muted:      #888888;
    --serif:      'Cormorant Garamond', Georgia, serif;
    --sans:       'Jost', sans-serif;
    --radius:     2px;
    --transition: all 0.2s ease;
}

/* ── RESET ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--sans); }

/* ── UTILITY ──────────────────────────────────────────────────── */
.container        { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.container--wide  { max-width: 1340px; margin: 0 auto; padding: 0 28px; }
.sr-only          { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── TYPOGRAPHY ───────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.15;
    color: var(--pur);
}
h1 { font-size: clamp(36px, 5vw, 64px); }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(20px, 3vw, 28px); }
h4 { font-size: 20px; }
p  { font-size: 15px; line-height: 1.85; font-weight: 300; }

.serif       { font-family: var(--serif); }
.text-pur    { color: var(--pur); }
.text-gld    { color: var(--gld); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--muted); }
.italic      { font-style: italic; }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    transition: var(--transition);
    font-family: var(--sans);
    cursor: pointer;
    line-height: 1;
}
.btn--primary  { background: var(--gld);   color: var(--pur-dd); }
.btn--primary:hover  { background: var(--gld-d); color: var(--pur-dd); }
.btn--secondary { background: var(--pur);  color: var(--white); }
.btn--secondary:hover { background: var(--pur-d); }
.btn--outline-white {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
}
.btn--outline-white:hover { border-color: var(--gld); color: var(--gld); }
.btn--outline-pur {
    background: transparent;
    color: var(--pur);
    border: 1px solid var(--pur);
}
.btn--outline-pur:hover { background: var(--pur); color: var(--white); }
.btn--sm { padding: 9px 20px; font-size: 10px; letter-spacing: 1.5px; }

/* ── SECTION HEADERS ──────────────────────────────────────────── */
.section-header        { text-align: center; margin-bottom: 56px; }
.section-header--left  { text-align: left; }
.eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gld);
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.eyebrow::before, .eyebrow::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gld);
}
.eyebrow--left { justify-content: flex-start; }
.eyebrow--left::before { display: none; }
.section-title { color: var(--pur); }
.section-title em { font-style: italic; color: var(--gld); }
.section-sub {
    font-size: 14px;
    color: var(--muted);
    max-width: 480px;
    margin: 14px auto 0;
    line-height: 1.85;
    font-weight: 300;
}

/* ── TOPBAR ───────────────────────────────────────────────────── */
.topbar {
    background: var(--pur);
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: 0.8px;
    font-weight: 400;
}
.topbar__highlight { color: var(--gld); font-weight: 500; }

/* ── NAVIGATION ───────────────────────────────────────────────── */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--pur-l);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 12px rgba(139,21,96,0.06);
}
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
}
.site-logo {}
.site-logo__main {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--pur);
    letter-spacing: 2px;
    line-height: 1;
    display: block;
}
.site-logo__sub {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gld);
    font-weight: 500;
    display: block;
    margin-top: 2px;
}
.primary-nav { display: flex; gap: 32px; }
.primary-nav a {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding-bottom: 3px;
}
.primary-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gld);
    transition: width 0.25s ease;
}
.primary-nav a:hover::after,
.primary-nav a.current-menu-item::after { width: 100%; }
.primary-nav a:hover,
.primary-nav a.current-menu-item { color: var(--pur); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-search-btn {
    background: none;
    border: none;
    padding: 4px;
    color: var(--pur);
}
.nav-search-btn svg { width: 18px; height: 18px; }
.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--pur); border-radius: 1px; transition: var(--transition); }

/* ── TICKER ───────────────────────────────────────────────────── */
.ticker {
    background: var(--gld);
    padding: 11px 0;
    overflow: hidden;
}
.ticker__track {
    display: flex;
    gap: 0;
    animation: ticker-scroll 28s linear infinite;
    white-space: nowrap;
    width: max-content;
}
.ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0 30px;
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--pur-dd);
}
.ticker__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--pur);
    flex-shrink: 0;
}
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
    background: var(--pur);
    min-height: 88vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 480px; height: 480px;
    border-radius: 50%;
    background: rgba(232,160,32,0.07);
    pointer-events: none;
}
.hero__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 56px 80px max(28px, calc((100vw - 1160px) / 2 + 28px));
    position: relative;
    z-index: 2;
}
.hero__eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gld);
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero__eyebrow::before {
    content: '';
    display: block;
    width: 30px; height: 1px;
    background: var(--gld);
}
.hero__title {
    font-family: var(--serif);
    font-size: clamp(44px, 5.5vw, 72px);
    line-height: 1.04;
    color: var(--white);
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.hero__title em { color: var(--gld); font-style: italic; }
.hero__desc {
    font-size: 15px;
    color: rgba(255,255,255,0.68);
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 420px;
    font-weight: 300;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.hero__stat-val {
    font-family: var(--serif);
    font-size: 30px;
    color: var(--gld);
    font-weight: 400;
    display: block;
}
.hero__stat-lbl {
    font-size: 10px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
    display: block;
}
.hero__image { position: relative; overflow: hidden; }
.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.hero__badge {
    position: absolute;
    bottom: 36px;
    left: -20px;
    background: var(--gld);
    color: var(--pur-dd);
    padding: 16px 22px;
    border-radius: var(--radius);
    z-index: 3;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.hero__badge-val { font-family: var(--serif); font-size: 26px; font-weight: 600; line-height: 1; display: block; }
.hero__badge-lbl { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; display: block; margin-top: 2px; }

/* ── CATEGORIES ───────────────────────────────────────────────── */
.categories-section { padding: 90px 0; background: var(--off); }
.cat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.cat-card {
    background: var(--pur-d);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: transform 0.25s ease;
}
.cat-card:hover { transform: translateY(-4px); }
.cat-card--large { grid-column: span 2; }
.cat-card__img {
    height: 220px;
    position: relative;
    overflow: hidden;
}
.cat-card--large .cat-card__img { height: 290px; }
.cat-card__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.cat-card:hover .cat-card__img img { transform: scale(1.06); }
.cat-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(74,11,51,0.85) 0%, transparent 55%);
}
.cat-card__body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px;
    z-index: 2;
}
.cat-card__name {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--white);
    font-weight: 400;
    display: block;
}
.cat-card--large .cat-card__name { font-size: 24px; }
.cat-card__count { font-size: 10px; color: var(--gld); letter-spacing: 1px; margin-top: 3px; display: block; }

/* ── BLOG / POST CARDS ────────────────────────────────────────── */
.posts-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 30px;
}
.post-card { cursor: pointer; }
.post-card__img {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 18px;
    background: var(--pur-l);
}
.post-card--featured .post-card__img { aspect-ratio: 16/10; }
.post-card__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.post-card:hover .post-card__img img { transform: scale(1.05); }
.post-card__cat {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gld);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}
.post-card__title {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--pur);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 10px;
    transition: color 0.2s;
}
.post-card--featured .post-card__title { font-size: 26px; }
.post-card:hover .post-card__title { color: var(--gld-d); }
.post-card__excerpt {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 12px;
    font-weight: 300;
}
.post-card__meta { display: flex; align-items: center; gap: 10px; font-size: 11px; color: #bbb; }
.post-card__meta-sep { width: 3px; height: 3px; border-radius: 50%; background: #ddd; }
.post-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--pur);
    font-weight: 500;
    margin-top: 14px;
    transition: gap 0.2s;
}
.post-card__link::after { content: '→'; }
.post-card:hover .post-card__link { gap: 10px; }

/* ── SHOP SECTION ─────────────────────────────────────────────── */
.shop-section { padding: 90px 0; background: var(--pur); }
.shop-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: center;
}
.shop-section .section-title { color: var(--white); }
.shop-section .section-sub { color: rgba(255,255,255,0.6); text-align: left; margin-left: 0; }
.shop-platforms { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }
.shop-platform {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(232,160,32,0.3);
    border-radius: var(--radius);
    padding: 12px 18px;
    cursor: pointer;
    transition: var(--transition);
}
.shop-platform:hover { background: rgba(232,160,32,0.14); border-color: var(--gld); }
.shop-platform__name { font-size: 12px; font-weight: 500; color: var(--white); display: block; }
.shop-platform__sub  { font-size: 10px; color: rgba(232,160,32,0.85); letter-spacing: 0.3px; display: block; margin-top: 2px; }
.shop-actions { display: flex; gap: 12px; margin-top: 30px; }
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.product-tile {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}
.product-tile:hover { border-color: var(--gld); background: rgba(232,160,32,0.08); }
.product-tile__img {
    aspect-ratio: 3/2;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
}
.product-tile__img img { width: 100%; height: 100%; object-fit: cover; }
.product-tile__body { padding: 12px 14px; }
.product-tile__brand { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--gld); font-weight: 500; display: block; }
.product-tile__name  { font-size: 12px; color: var(--white); margin-top: 3px; line-height: 1.35; display: block; }
.product-tile__price { font-size: 13px; color: var(--gld); font-weight: 500; margin-top: 5px; display: block; }
.product-tile__comm  { font-size: 9px; color: rgba(255,255,255,0.38); letter-spacing: 0.5px; display: block; margin-top: 1px; }

/* ── TRENDING ─────────────────────────────────────────────────── */
.trending-section { padding: 90px 0; background: var(--white); }
.trending-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.trend-card { cursor: pointer; }
.trend-card__img {
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 14px;
    background: var(--pur-l);
    position: relative;
}
.trend-card__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.trend-card:hover .trend-card__img img { transform: scale(1.05); }
.trend-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--gld);
    color: var(--pur-dd);
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    font-weight: 600;
    border-radius: 1px;
}
.trend-card__brand { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--gld); font-weight: 600; display: block; margin-bottom: 4px; }
.trend-card__name  { font-family: var(--serif); font-size: 16px; color: var(--pur); line-height: 1.3; display: block; margin-bottom: 6px; }
.trend-card__price { font-size: 14px; font-weight: 500; color: var(--text); display: inline; }
.trend-card__comm  { font-size: 10px; color: var(--pur); letter-spacing: 0.3px; font-weight: 500; margin-left: 6px; display: inline; }
.trend-card__cta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--pur);
    font-weight: 500;
    margin-top: 10px;
    transition: gap 0.2s;
}
.trend-card__cta::after { content: '→'; }
.trend-card:hover .trend-card__cta { gap: 10px; }

/* ── EMAIL SECTION ────────────────────────────────────────────── */
.email-section { padding: 90px 0; background: var(--gld); }
.email-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.email-section .section-title { color: var(--pur-dd); }
.email-section .section-title em { color: var(--pur); font-style: italic; }
.email-section .eyebrow { color: var(--pur); justify-content: flex-start; }
.email-section .eyebrow::before, .email-section .eyebrow::after { display: none; }
.email-section .section-sub { color: var(--pur-d); opacity: 0.8; text-align: left; margin-left: 0; }
.email-perks { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.perk { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--pur-dd); font-weight: 400; }
.perk__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pur); flex-shrink: 0; margin-top: 5px; }
.email-form {
    background: var(--white);
    border-radius: 4px;
    padding: 36px 32px;
    box-shadow: 0 12px 48px rgba(139,21,96,0.12);
}
.email-form__title { font-family: var(--serif); font-size: 24px; color: var(--pur); margin-bottom: 6px; }
.email-form__sub   { font-size: 12px; color: var(--muted); margin-bottom: 22px; line-height: 1.65; }
.form-label {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--pur);
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
}
.form-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--pur-l);
    border-radius: var(--radius);
    font-size: 13px;
    font-family: var(--sans);
    outline: none;
    transition: border-color 0.2s;
    background: var(--white);
    color: var(--text);
    margin-bottom: 14px;
}
.form-input:focus { border-color: var(--pur); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--pur);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--sans);
    transition: background 0.2s;
    margin-top: 4px;
}
.form-submit:hover { background: var(--pur-d); }
.form-note { font-size: 10px; color: #bbb; text-align: center; margin-top: 10px; }

/* ── INSTAGRAM ────────────────────────────────────────────────── */
.instagram-section { padding: 80px 0; background: var(--off); }
.instagram-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.instagram-handle { font-family: var(--serif); font-size: 24px; color: var(--pur); }
.instagram-follow {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--pur);
    font-weight: 500;
    border-bottom: 1px solid var(--pur);
    padding-bottom: 2px;
}
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}
.instagram-cell {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--pur-l);
    cursor: pointer;
}
.instagram-cell img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.instagram-cell:hover img { transform: scale(1.08); opacity: 0.9; }

/* ── ABOUT SECTION ────────────────────────────────────────────── */
.about-section { padding: 90px 0; background: var(--pur-dd); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-section .section-title { color: var(--white); }
.about-section .section-title em { color: var(--gld); }
.about-section .eyebrow { color: var(--gld); justify-content: flex-start; }
.about-section .eyebrow::before { display: none; }
.about-img { border-radius: var(--radius); overflow: hidden; position: relative; }
.about-img img { width: 100%; height: 500px; object-fit: cover; object-position: top; }
.about-badge {
    position: absolute;
    bottom: -18px; right: -18px;
    background: var(--gld);
    color: var(--pur-dd);
    padding: 18px 22px;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.about-badge__val { font-family: var(--serif); font-size: 30px; font-weight: 600; line-height: 1; display: block; }
.about-badge__lbl { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; margin-top: 2px; display: block; }
.about-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.9; margin-top: 16px; font-weight: 300; }
.about-features { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.about-feature { display: flex; align-items: flex-start; gap: 14px; }
.about-feature__icon {
    width: 36px; height: 36px;
    background: rgba(232,160,32,0.12);
    border: 1px solid rgba(232,160,32,0.3);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.about-feature__dot { width: 12px; height: 12px; background: var(--gld); border-radius: 1px; }
.about-feature__title { font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 2px; display: block; }
.about-feature__sub   { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.55; font-weight: 300; }

/* ── SIDEBAR / WIDGETS ────────────────────────────────────────── */
.content-sidebar-wrap {
    display: grid;
    grid-template-columns: 1fr 310px;
    gap: 50px;
    align-items: start;
}
.widget {
    background: var(--white);
    border: 1px solid var(--pur-l);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
}
.widget__header { background: var(--pur); padding: 14px 18px; }
.widget__title  { font-family: var(--serif); font-size: 16px; color: var(--white); font-weight: 400; margin: 0; }
.widget__body   { padding: 18px; }
.widget--ltk    { background: var(--gld); border: none; }
.widget--ltk .widget__body { text-align: center; padding: 22px 18px; }
.ltk-widget__title { font-family: var(--serif); font-size: 20px; color: var(--pur-dd); margin-bottom: 6px; }
.ltk-widget__sub   { font-size: 11px; color: var(--pur-d); opacity: 0.8; margin-bottom: 16px; }
.ltk-btn {
    display: block;
    background: var(--pur);
    color: var(--white);
    padding: 11px 16px;
    border-radius: var(--radius);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    transition: background 0.2s;
    margin-bottom: 8px;
}
.ltk-btn:hover { background: var(--pur-d); }
.ltk-btn--secondary { background: var(--pur-dd); }
.recent-post { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--pur-ll); }
.recent-post:last-child { border-bottom: none; padding-bottom: 0; }
.recent-post__img {
    width: 64px; height: 64px;
    flex-shrink: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--pur-l);
}
.recent-post__img img { width: 100%; height: 100%; object-fit: cover; }
.recent-post__title { font-size: 12px; color: var(--pur); line-height: 1.4; font-weight: 400; transition: color 0.2s; }
.recent-post__title:hover { color: var(--gld-d); }
.recent-post__date  { font-size: 10px; color: #bbb; margin-top: 4px; display: block; }
.cat-list-widget    { list-style: none; }
.cat-list-widget li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid var(--pur-ll);
    font-size: 13px;
    color: #555;
    cursor: pointer;
    transition: color 0.2s;
}
.cat-list-widget li:last-child { border-bottom: none; }
.cat-list-widget li:hover { color: var(--pur); }
.cat-count-pill {
    font-size: 10px;
    background: var(--pur-ll);
    color: var(--pur);
    padding: 2px 8px;
    border-radius: 99px;
}

/* ── AFFILIATE CALL-OUT ───────────────────────────────────────── */
.affiliate-callout {
    background: var(--gld-l);
    border-left: 3px solid var(--gld);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 18px 22px;
    margin: 28px 0;
}
.affiliate-callout__label {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gld-d);
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}
.affiliate-callout__product { font-family: var(--serif); font-size: 15px; color: var(--pur); margin-bottom: 10px; }

/* ── FOOTER ───────────────────────────────────────────────────── */
.site-footer { background: var(--pur-dd); }
.footer-top {
    padding: 70px 0 50px;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 50px;
}
.footer-brand__desc {
    font-size: 13px;
    color: rgba(255,255,255,0.42);
    line-height: 1.8;
    margin-top: 16px;
    font-weight: 300;
    max-width: 260px;
}
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.social-link {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    color: rgba(255,255,255,0.6);
}
.social-link:hover { background: var(--gld); border-color: var(--gld); color: var(--pur-dd); }
.social-link svg { width: 15px; height: 15px; }
.footer-col__title {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gld);
    font-weight: 500;
    margin-bottom: 18px;
    display: block;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.42); transition: color 0.2s; font-weight: 300; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copy  { font-size: 11px; color: rgba(255,255,255,0.28); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── SINGLE POST ──────────────────────────────────────────────── */
.post-header { background: var(--pur); padding: 70px 0 60px; }
.post-header__cat {
    font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--gld); font-weight: 600; display: block; margin-bottom: 14px;
}
.post-header__title {
    font-family: var(--serif); font-size: clamp(32px, 4.5vw, 54px);
    color: var(--white); font-weight: 300; line-height: 1.15; max-width: 760px;
}
.post-header__meta {
    display: flex; align-items: center; gap: 14px;
    margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12);
}
.post-header__author-img {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--pur-d); border: 2px solid var(--gld); overflow: hidden;
}
.post-header__author-img img { width: 100%; height: 100%; object-fit: cover; }
.post-header__author-name { font-size: 13px; font-weight: 500; color: var(--white); display: block; }
.post-header__date { font-size: 11px; color: rgba(255,255,255,0.45); display: block; margin-top: 1px; }
.post-content { padding: 60px 0 80px; }
.post-content p { font-size: 16px; line-height: 1.9; color: #333; margin-bottom: 22px; font-weight: 300; }
.post-content h2 { font-family: var(--serif); font-size: 30px; color: var(--pur); margin: 36px 0 16px; font-weight: 400; }
.post-content h3 { font-family: var(--serif); font-size: 22px; color: var(--pur); margin: 28px 0 12px; font-weight: 400; }
.post-featured-img { width: 100%; max-height: 520px; object-fit: cover; border-radius: var(--radius); margin-bottom: 36px; }

/* ── PAGE SPECIFIC ────────────────────────────────────────────── */
.page-hero {
    background: var(--pur);
    padding: 70px 0;
    text-align: center;
}
.page-hero__title {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 56px);
    color: var(--white);
    font-weight: 300;
}
.page-hero__title em { color: var(--gld); font-style: italic; }
.page-hero__sub { font-size: 14px; color: rgba(255,255,255,0.55); margin-top: 10px; font-weight: 300; }

/* ── ARCHIVE / CATEGORY FILTER ────────────────────────────────── */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
    padding: 8px 18px;
    border-radius: var(--radius);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--sans);
    transition: var(--transition);
    background: transparent;
    color: var(--pur);
    border: 1px solid var(--pur);
}
.filter-btn:hover,
.filter-btn.is-active {
    background: var(--pur);
    color: var(--white);
}

/* ── PAGINATION ───────────────────────────────────────────────── */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 56px;
}
.pagination a,
.pagination span {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius);
    font-size: 13px;
    border: 1px solid var(--pur-l);
    color: var(--pur);
    transition: var(--transition);
}
.pagination a:hover,
.pagination .current {
    background: var(--pur);
    color: var(--white);
    border-color: var(--pur);
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero__image { display: none; }
    .hero__text { padding: 80px max(28px, calc((100vw - 1160px) / 2 + 28px)); }
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .cat-card--large { grid-column: span 1; }
    .posts-grid { grid-template-columns: 1fr 1fr; }
    .shop-grid { grid-template-columns: 1fr; gap: 40px; }
    .email-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-img { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .content-sidebar-wrap { grid-template-columns: 1fr; }
    .trending-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .primary-nav { display: none; }
    .nav-toggle { display: flex; }
    .cat-grid { grid-template-columns: 1fr 1fr; }
    .posts-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .product-showcase { grid-template-columns: 1fr 1fr; }
    .hero__stats { gap: 18px; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .trending-grid { grid-template-columns: repeat(2, 1fr); }
    .email-form { padding: 24px 20px; }
}

/* ── WORDPRESS CORE ───────────────────────────────────────────── */
.wp-block-image { margin: 24px 0; }
.aligncenter { margin-left: auto; margin-right: auto; }
.alignleft   { float: left; margin: 0 20px 12px 0; }
.alignright  { float: right; margin: 0 0 12px 20px; }
.wp-caption  { max-width: 100%; }
.wp-caption-text { font-size: 12px; color: var(--muted); text-align: center; margin-top: 6px; }
