/*!
 * Theme Name:  OliNaomi
 * Theme URI:   https://olinaomi.com
 * Author:      OliNaomi
 * Author URI:  https://olinaomi.com
 * Description: OliNaomi — A lifestyle, fashion, beauty & tech multi-niche blog theme. Elegant and editorial with a burgundy and gold brand identity. Fully responsive with Customizer support for social links, shop picks, announcement ticker and newsletter settings.
 * Version:     1.0.0
 * Requires at least: 6.0
 * Requires PHP: 7.4
 * License:     GNU General Public License v2 or later
 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
 * Text Domain: olinaomi
 * Tags:        blog, fashion, beauty, lifestyle, custom-colors, custom-logo, featured-images, full-width-template, threaded-comments, responsive-layout, two-columns
 *
 * =====================================================
 * BRAND COLOUR PALETTE
 * Primary / Burgundy:   #6B1A38
 * Accent / Gold:        #C9963B
 * Background / Ivory:   #FAF8F5
 * Dark Section / Noir:  #1A0D12
 * Blush Highlight:      #F5DCE8
 * Body Text:            #1A1718
 * Category — Fashion:   bg #F5DCE8  text #6B1A38
 * Category — Beauty:    bg #FDE8D4  text #8B3A10
 * Category — Tech:      bg #D4E8F5  text #0E4A72
 * Category — Lifestyle: bg #D8F0E0  text #1A5C34
 * =====================================================
 */

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

:root {
	--burgundy:   #6B1A38;
	--gold:       #C9963B;
	--ivory:      #FAF8F5;
	--noir:       #1A0D12;
	--blush:      #F5DCE8;
	--blush-bg:   #FDF8FA;
	--text:       #1A1718;
	--text-light: #7A6A6D;
	--border:     rgba(107, 26, 56, 0.12);
}

html { scroll-behavior: smooth; }

body {
	font-family: 'DM Sans', sans-serif;
	background: var(--ivory);
	color: var(--text);
	font-size: 15px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

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

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	line-height: 1.25;
	color: var(--text);
}

p { margin-bottom: 1.25em; }
p:last-child { margin-bottom: 0; }

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 { margin: 1.8em 0 0.7em; }

.entry-content ul,
.entry-content ol {
	margin: 0 0 1.25em 1.5em;
	list-style: disc;
}
.entry-content ol { list-style: decimal; }

.entry-content blockquote {
	border-left: 3px solid var(--burgundy);
	padding: 12px 20px;
	margin: 1.8em 0;
	background: var(--blush-bg);
	font-style: italic;
	color: var(--text-light);
}

.entry-content a {
	color: var(--burgundy);
	border-bottom: 1px solid rgba(107,26,56,0.3);
	transition: border-color 0.2s;
}
.entry-content a:hover { border-color: var(--burgundy); }

/* ============================================================
   UTILITIES
============================================================ */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
}
.screen-reader-text:focus {
	position: fixed;
	top: 5px; left: 5px;
	width: auto; height: auto;
	clip: auto;
	background: var(--burgundy);
	color: #fff;
	padding: 8px 16px;
	z-index: 10000;
	border-radius: 2px;
}

/* ============================================================
   CATEGORY BADGES
============================================================ */
.cat-badge {
	display: inline-block;
	font-family: 'DM Sans', sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 20px;
	line-height: 1.5;
}
.cat-fashion   { background: #F5DCE8; color: #6B1A38; }
.cat-beauty    { background: #FDE8D4; color: #8B3A10; }
.cat-tech      { background: #D4E8F5; color: #0E4A72; }
.cat-lifestyle { background: #D8F0E0; color: #1A5C34; }
.cat-default   { background: var(--blush); color: var(--burgundy); }

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--burgundy);
	color: #fff;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.05em;
	padding: 13px 28px;
	border-radius: 2px;
	border: none;
	cursor: pointer;
	transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
	text-decoration: none;
}
.btn-primary:hover {
	background: #891f47;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(107,26,56,0.25);
	color: #fff;
}
.btn-primary .arrow { transition: transform 0.2s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-outline-gold {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 1.5px solid var(--gold);
	color: var(--gold);
	background: transparent;
	font-family: 'DM Sans', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 10px 20px;
	border-radius: 2px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
	white-space: nowrap;
	text-decoration: none;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--noir); }

/* ============================================================
   1. ANNOUNCEMENT TICKER BAR
============================================================ */
.site-ticker {
	background: var(--noir);
	color: #F5C9DC;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 9px 0;
	overflow: hidden;
	white-space: nowrap;
}
.ticker-track {
	display: inline-block;
	animation: ticker-scroll 30s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
.ticker-text { display: inline-block; padding-right: 80px; }

/* ============================================================
   2. SITE HEADER & NAVIGATION
============================================================ */
.site-header {
	background: var(--ivory);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 500;
}

/* Top bar */
.nav-top-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0 8px;
	border-bottom: 1px solid rgba(107,26,56,0.07);
}

.nav-social-row {
	display: flex;
	align-items: center;
	gap: 6px;
}

.social-icon-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px; height: 32px;
	border-radius: 50%;
	background: transparent;
	border: 1px solid rgba(107,26,56,0.2);
	color: var(--burgundy);
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
	text-decoration: none;
}
.social-icon-btn:hover {
	background: var(--burgundy);
	color: #fff;
	border-color: var(--burgundy);
	transform: translateY(-2px);
}
.social-icon-btn svg { width: 14px; height: 14px; fill: currentColor; }

.btn-subscribe-top {
	background: var(--burgundy);
	color: #fff;
	font-family: 'DM Sans', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 8px 20px;
	border: none;
	border-radius: 2px;
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
	text-decoration: none;
	display: inline-block;
}
.btn-subscribe-top:hover { background: #891f47; transform: translateY(-1px); color: #fff; }

/* Logo block */
.site-branding {
	text-align: center;
	padding: 22px 0 14px;
}
.site-title-link { text-decoration: none; display: inline-block; }
.logo-text {
	font-family: 'Playfair Display', serif;
	font-size: clamp(38px, 6vw, 62px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.01em;
	display: block;
}
.logo-oli   { color: var(--burgundy); }
.logo-naomi { color: var(--gold); }
.logo-tagline {
	font-family: 'DM Sans', sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #9A7D60;
	margin-top: 6px;
	display: block;
}

/* Custom logo (if set via Customizer) */
.custom-logo-link { display: inline-block; margin-bottom: 8px; }
.custom-logo { max-height: 70px; width: auto; }

/* Primary nav */
.main-navigation {
	border-top: 1px solid rgba(107,26,56,0.07);
	position: relative;
}
.nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px 0;
	color: var(--burgundy);
	align-items: center;
	gap: 6px;
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.main-navigation ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 0;
}
.main-navigation ul li { position: relative; }
.main-navigation ul li a {
	display: block;
	padding: 12px 16px;
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text);
	position: relative;
	transition: color 0.2s;
	text-decoration: none;
}
.main-navigation ul li a::after {
	content: '';
	position: absolute;
	bottom: 8px; left: 16px; right: 16px;
	height: 1.5px;
	background: var(--burgundy);
	transform: scaleX(0);
	transition: transform 0.25s ease;
	transform-origin: center;
}
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a { color: var(--burgundy); }
.main-navigation ul li a:hover::after,
.main-navigation ul li.current-menu-item > a::after { transform: scaleX(1); }

/* Dropdown */
.main-navigation ul li ul {
	display: none;
	position: absolute;
	top: 100%; left: 0;
	min-width: 200px;
	background: #fff;
	border: 1px solid var(--border);
	border-top: 2px solid var(--burgundy);
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
	flex-direction: column;
	z-index: 200;
}
.main-navigation ul li:hover > ul { display: flex; }
.main-navigation ul li ul li a {
	padding: 10px 18px;
	font-size: 11px;
	border-bottom: 1px solid rgba(107,26,56,0.06);
}
.main-navigation ul li ul li:last-child a { border-bottom: none; }
.main-navigation ul li ul li a::after { display: none; }

/* ============================================================
   3. HERO SECTION
============================================================ */
.site-hero { padding: 56px 0 64px; }
.hero-inner {
	display: grid;
	grid-template-columns: 60fr 40fr;
	gap: 40px;
	align-items: center;
}
.hero-image-wrap {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
}
.hero-image-wrap .wp-post-image {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	border-radius: 4px;
	display: block;
}
.hero-placeholder {
	aspect-ratio: 4/3;
	background: linear-gradient(135deg, #F5DCE8 0%, #EABFCE 40%, #D4909E 100%);
	border-radius: 4px;
}
.hero-content { padding: 8px 0; }
.hero-content .cat-badge { margin-bottom: 16px; }
.hero-heading {
	font-size: clamp(26px, 3.5vw, 42px);
	margin-bottom: 16px;
	color: var(--text);
}
.hero-excerpt {
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-light);
	margin-bottom: 28px;
}

/* ============================================================
   SECTION HEADER (Latest Posts, etc.)
============================================================ */
.section-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 36px;
}
.section-title {
	font-family: 'Playfair Display', serif;
	font-size: 26px;
	font-weight: 700;
	color: var(--text);
	white-space: nowrap;
}
.section-rule {
	border: none;
	border-top: 1px solid rgba(107,26,56,0.15);
	flex: 1;
}
.see-all-link {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
	white-space: nowrap;
	transition: color 0.2s;
	border-bottom: 1px solid transparent;
	text-decoration: none;
}
.see-all-link:hover { color: #a87a2e; border-color: #a87a2e; }

/* ============================================================
   4. POSTS GRID (Latest Posts / Archive)
============================================================ */
.latest-posts-section { padding: 20px 0 72px; }
.posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.post-card {
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
	border: 1px solid var(--border);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.post-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 40px rgba(107,26,56,0.12);
}
.card-image-wrap {
	display: block;
	aspect-ratio: 16/10;
	overflow: hidden;
	position: relative;
}
.card-image-wrap .wp-post-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
	display: block;
}
.post-card:hover .card-image-wrap .wp-post-image { transform: scale(1.04); }

/* Placeholder thumbnails when no featured image */
.card-thumb-placeholder {
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
}
.card-thumb-fashion   { background: linear-gradient(135deg,#F5DCE8,#D490A8); }
.card-thumb-beauty    { background: linear-gradient(135deg,#FDE8D4,#E8A07A); }
.card-thumb-tech      { background: linear-gradient(135deg,#D4E8F5,#7AB0D8); }
.card-thumb-lifestyle { background: linear-gradient(135deg,#D8F0E0,#78C088); }
.card-thumb-default   { background: linear-gradient(135deg,#F5DCE8,#D490A8); }

.card-body { padding: 20px 20px 22px; }
.card-body .cat-badge { margin-bottom: 11px; }
.card-title {
	font-family: 'Playfair Display', serif;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--text);
	margin-bottom: 12px;
	transition: color 0.2s;
	display: block;
}
.card-title a { color: inherit; text-decoration: none; }
.post-card:hover .card-title a { color: var(--burgundy); }
.card-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	color: #9A8A8D;
	font-weight: 400;
}
.card-meta .dot { opacity: 0.4; }

/* ============================================================
   5. SHOP THE EDIT
============================================================ */
.shop-edit-section {
	background: var(--noir);
	padding: 72px 0 80px;
}
.shop-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 40px;
	gap: 20px;
}
.shop-heading {
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	line-height: 1;
	margin-bottom: 6px;
}
.shop-subheading {
	font-size: 12px;
	color: var(--gold);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 500;
}
.shop-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.product-card {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(201,150,59,0.2);
	border-radius: 4px;
	overflow: hidden;
	transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.product-card:hover {
	transform: translateY(-4px);
	border-color: rgba(201,150,59,0.5);
	box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.product-image {
	aspect-ratio: 1/1;
	position: relative;
	overflow: hidden;
}
.product-image .wp-post-image {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 0.4s;
}
.product-card:hover .product-image .wp-post-image { transform: scale(1.05); }
.prod-placeholder-fashion  { background: linear-gradient(145deg,#3A1020,#6B1A38); }
.prod-placeholder-beauty   { background: linear-gradient(145deg,#3A1808,#8B3A10); }
.prod-placeholder-tech     { background: linear-gradient(145deg,#061822,#0E4A72); }
.prod-placeholder-lifestyle{ background: linear-gradient(145deg,#061A0C,#1A5C34); }
.prod-placeholder-default  { background: linear-gradient(145deg,#1A0D12,#6B1A38); }
.product-body { padding: 16px 16px 18px; }
.product-brand {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 5px;
}
.product-name {
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	line-height: 1.4;
	margin-bottom: 8px;
}
.product-price {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 14px;
}
.btn-shop-now {
	display: block;
	width: 100%;
	background: var(--gold);
	color: var(--noir);
	font-family: 'DM Sans', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 10px 0;
	border: none;
	border-radius: 2px;
	cursor: pointer;
	text-align: center;
	transition: background 0.2s, transform 0.15s;
	text-decoration: none;
}
.btn-shop-now:hover { background: #daa94a; transform: scale(1.02); color: var(--noir); }

/* ============================================================
   6. TWO-COLUMN MINI POSTS
============================================================ */
.mini-posts-section { padding: 72px 0; }
.mini-posts-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
}
.mini-col-heading {
	font-family: 'Playfair Display', serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--text);
	padding-bottom: 10px;
	border-bottom: 2px solid var(--burgundy);
	margin-bottom: 24px;
}
.mini-post-row {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 14px 0;
	border-bottom: 1px solid rgba(107,26,56,0.07);
	cursor: pointer;
	border-radius: 3px;
	text-decoration: none;
}
.mini-post-row:last-child { border-bottom: none; }
.mini-post-row:hover .mini-title { color: var(--burgundy); }
.mini-thumb {
	width: 68px; height: 68px;
	border-radius: 3px;
	flex-shrink: 0;
	overflow: hidden;
}
.mini-thumb img {
	width: 100%; height: 100%;
	object-fit: cover;
}
.mini-thumb-placeholder {
	width: 68px; height: 68px;
	border-radius: 3px;
	flex-shrink: 0;
}
.mini-info { flex: 1; }
.mini-title {
	font-family: 'Playfair Display', serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--text);
	margin-bottom: 6px;
	transition: color 0.2s;
	display: block;
}
.mini-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 10px;
	color: #9A8A8D;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/* ============================================================
   7. FOLLOW STRIP
============================================================ */
.follow-strip {
	background: var(--blush-bg);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 36px 0;
}
.follow-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}
.follow-heading {
	font-family: 'Playfair Display', serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 4px;
}
.follow-sub { font-size: 13px; color: var(--text-light); }
.follow-buttons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.follow-btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 16px;
	border-radius: 3px;
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
	text-decoration: none;
	border: none;
}
.follow-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.14); }
.follow-btn svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }
.follow-instagram { background: var(--burgundy); color: #fff; }
.follow-tiktok    { background: var(--noir); color: #fff; }
.follow-pinterest { background: var(--gold); color: var(--noir); }
.follow-youtube   { background: #1E3A5F; color: #fff; }
.follow-x         { background: transparent; color: var(--text); border: 1.5px solid rgba(107,26,56,0.25); }

/* ============================================================
   8. NEWSLETTER SECTION
============================================================ */
.newsletter-section {
	background: var(--blush-bg);
	padding: 80px 0;
	text-align: center;
}
.newsletter-inner { max-width: 560px; margin: 0 auto; }
.newsletter-heading {
	font-family: 'Playfair Display', serif;
	font-size: clamp(26px, 4vw, 36px);
	margin-bottom: 12px;
	color: var(--text);
}
.newsletter-sub {
	font-size: 15px;
	color: var(--text-light);
	line-height: 1.6;
	margin-bottom: 32px;
}
.newsletter-form {
	display: flex;
	border-radius: 3px;
	overflow: hidden;
	border: 1.5px solid rgba(107,26,56,0.25);
	transition: border-color 0.2s, box-shadow 0.2s;
}
.newsletter-form:focus-within {
	border-color: var(--burgundy);
	box-shadow: 0 0 0 3px rgba(107,26,56,0.1);
}
.newsletter-input {
	flex: 1;
	border: none;
	outline: none;
	padding: 13px 18px;
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	background: #fff;
	color: var(--text);
}
.newsletter-input::placeholder { color: #B0A0A3; }
.btn-nl-subscribe {
	background: var(--burgundy);
	color: #fff;
	border: none;
	padding: 13px 24px;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	cursor: pointer;
	transition: background 0.2s;
	white-space: nowrap;
}
.btn-nl-subscribe:hover { background: #891f47; }
.newsletter-note {
	font-size: 11px;
	color: #B0A0A3;
	margin-top: 14px;
	letter-spacing: 0.02em;
}

/* ============================================================
   9. SITE FOOTER
============================================================ */
.site-footer { background: var(--noir); }
.footer-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 36px 0 28px;
	gap: 20px;
}
.footer-logo {
	font-family: 'Playfair Display', serif;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: -0.01em;
	text-decoration: none;
}
.footer-logo-oli   { color: #fff; }
.footer-logo-naomi { color: var(--gold); }
.footer-social-icons { display: flex; gap: 8px; }
.footer-social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px; height: 34px;
	border-radius: 50%;
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(255,255,255,0.12);
	color: rgba(255,255,255,0.7);
	cursor: pointer;
	transition: background 0.2s, color 0.2s, transform 0.2s;
	text-decoration: none;
}
.footer-social-btn:hover {
	background: var(--gold);
	color: var(--noir);
	border-color: var(--gold);
	transform: translateY(-2px);
}
.footer-social-btn svg { width: 14px; height: 14px; fill: currentColor; }
.footer-divider {
	border: none;
	border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0 28px;
	gap: 20px;
	flex-wrap: wrap;
}
.footer-nav { display: flex; gap: 24px; }
.footer-nav a {
	font-size: 12px;
	font-weight: 500;
	color: rgba(255,255,255,0.5);
	letter-spacing: 0.06em;
	transition: color 0.2s;
	text-decoration: none;
}
.footer-nav a:hover { color: var(--gold); }
.footer-disclaimer {
	font-size: 11px;
	color: rgba(255,255,255,0.3);
	letter-spacing: 0.04em;
}

/* ============================================================
   SINGLE POST
============================================================ */
.single-post-wrap { padding: 60px 0 80px; }
.single-inner {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 56px;
	align-items: start;
}
.single-content-area { min-width: 0; }
.single-sidebar { position: sticky; top: 120px; }

.post-header { margin-bottom: 32px; }
.post-header .cat-badge { margin-bottom: 14px; }
.post-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 20px;
	color: var(--text);
}
.post-byline {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--border);
}
.post-byline .avatar {
	width: 40px; height: 40px;
	border-radius: 50%;
	background: var(--blush);
	overflow: hidden;
}
.byline-info { font-size: 13px; color: var(--text-light); }
.byline-info strong { color: var(--text); font-weight: 600; }
.byline-divider { opacity: 0.3; }

.post-featured-image {
	margin-bottom: 36px;
	border-radius: 4px;
	overflow: hidden;
}
.post-featured-image img {
	width: 100%;
	height: auto;
	display: block;
}

.entry-content { font-size: 16px; line-height: 1.8; color: #2A2022; }
.entry-content > * + * { margin-top: 1.4em; }

.post-footer-tags {
	margin-top: 48px;
	padding-top: 24px;
	border-top: 1px solid var(--border);
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.tag-link {
	display: inline-block;
	border: 1px solid var(--border);
	padding: 4px 12px;
	font-size: 11px;
	font-weight: 500;
	border-radius: 20px;
	color: var(--text-light);
	transition: border-color 0.2s, color 0.2s;
	text-decoration: none;
}
.tag-link:hover { border-color: var(--burgundy); color: var(--burgundy); }

/* Author box */
.author-box {
	background: var(--blush-bg);
	border: 1px solid var(--border);
	border-radius: 4px;
	padding: 28px;
	margin-top: 48px;
	display: flex;
	gap: 20px;
	align-items: flex-start;
}
.author-avatar {
	width: 64px; height: 64px;
	border-radius: 50%;
	background: var(--blush);
	overflow: hidden;
	flex-shrink: 0;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name {
	font-family: 'Playfair Display', serif;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 6px;
	color: var(--text);
}
.author-bio { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* Post navigation */
.post-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 56px;
	padding-top: 32px;
	border-top: 1px solid var(--border);
}
.post-nav-item {
	padding: 18px 20px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 3px;
	transition: border-color 0.2s, box-shadow 0.2s;
	text-decoration: none;
	display: block;
}
.post-nav-item:hover {
	border-color: rgba(107,26,56,0.3);
	box-shadow: 0 4px 16px rgba(107,26,56,0.08);
}
.post-nav-item.next-post { text-align: right; }
.post-nav-label {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 6px;
}
.post-nav-title {
	font-family: 'Playfair Display', serif;
	font-size: 15px;
	font-weight: 600;
	color: var(--text);
	line-height: 1.35;
}

/* ============================================================
   ARCHIVE / CATEGORY
============================================================ */
.archive-wrap { padding: 56px 0 80px; }
.archive-inner {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 56px;
	align-items: start;
}
.archive-header {
	padding: 40px 0 36px;
	border-bottom: 1px solid var(--border);
	margin-bottom: 48px;
}
.archive-header .cat-badge { margin-bottom: 10px; }
.archive-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(30px, 5vw, 52px);
	font-weight: 700;
	color: var(--text);
	margin-bottom: 10px;
}
.archive-description { font-size: 15px; color: var(--text-light); max-width: 560px; }

/* ============================================================
   SIDEBAR
============================================================ */
.widget-area { position: sticky; top: 120px; }
.widget {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 3px;
	padding: 24px;
	margin-bottom: 24px;
}
.widget:last-child { margin-bottom: 0; }
.widget-title {
	font-family: 'Playfair Display', serif;
	font-size: 16px;
	font-weight: 700;
	color: var(--text);
	padding-bottom: 12px;
	border-bottom: 2px solid var(--burgundy);
	margin-bottom: 16px;
}
.widget ul li {
	border-bottom: 1px solid rgba(107,26,56,0.07);
	padding: 8px 0;
}
.widget ul li:last-child { border-bottom: none; }
.widget ul li a {
	font-size: 13px;
	color: var(--text);
	transition: color 0.2s;
	text-decoration: none;
}
.widget ul li a:hover { color: var(--burgundy); }
.widget_categories ul li a {
	display: flex;
	justify-content: space-between;
}
.widget_search .search-form { display: flex; }
.widget_search .search-field {
	flex: 1;
	border: 1px solid var(--border);
	border-right: none;
	padding: 9px 14px;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	outline: none;
	border-radius: 2px 0 0 2px;
}
.widget_search .search-field:focus { border-color: var(--burgundy); }
.widget_search .search-submit {
	background: var(--burgundy);
	color: #fff;
	border: none;
	padding: 9px 16px;
	cursor: pointer;
	font-size: 12px;
	border-radius: 0 2px 2px 0;
	transition: background 0.2s;
}
.widget_search .search-submit:hover { background: #891f47; }

/* ============================================================
   STATIC PAGE
============================================================ */
.page-wrap { padding: 60px 0 80px; }
.page-inner { max-width: 760px; margin: 0 auto; }
.page-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 700;
	margin-bottom: 10px;
}
.page-header { margin-bottom: 40px; border-bottom: 1px solid var(--border); padding-bottom: 24px; }

/* ============================================================
   SEARCH RESULTS
============================================================ */
.search-wrap { padding: 60px 0 80px; }
.search-header {
	margin-bottom: 48px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--border);
}
.search-title {
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 8px;
}
.search-title span { color: var(--burgundy); }
.search-meta { font-size: 14px; color: var(--text-light); }
.search-form-wrap { margin-bottom: 48px; }
.search-full-form { display: flex; max-width: 560px; }
.search-full-form input[type="search"] {
	flex: 1;
	border: 1.5px solid var(--border);
	border-right: none;
	padding: 13px 18px;
	font-family: 'DM Sans', sans-serif;
	font-size: 15px;
	outline: none;
	border-radius: 2px 0 0 2px;
	background: #fff;
}
.search-full-form input[type="search"]:focus { border-color: var(--burgundy); }
.search-full-form button {
	background: var(--burgundy);
	color: #fff;
	border: none;
	padding: 13px 22px;
	font-family: 'DM Sans', sans-serif;
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
	border-radius: 0 2px 2px 0;
	transition: background 0.2s;
}
.search-full-form button:hover { background: #891f47; }

/* ============================================================
   404 PAGE
============================================================ */
.error-404-wrap {
	padding: 100px 0;
	text-align: center;
	min-height: 60vh;
	display: flex;
	align-items: center;
}
.error-404-inner { max-width: 560px; margin: 0 auto; }
.error-404-code {
	font-family: 'Playfair Display', serif;
	font-size: 120px;
	font-weight: 700;
	color: var(--blush);
	line-height: 1;
	margin-bottom: 16px;
}
.error-404-title {
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 14px;
}
.error-404-text {
	font-size: 15px;
	color: var(--text-light);
	margin-bottom: 32px;
}

/* ============================================================
   COMMENTS
============================================================ */
.comments-area { margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--border); }
.comments-title {
	font-family: 'Playfair Display', serif;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 32px;
	color: var(--text);
}
.comment-list { margin-bottom: 48px; }
.comment {
	padding: 20px 0;
	border-bottom: 1px solid rgba(107,26,56,0.07);
}
.comment:last-child { border-bottom: none; }
.comment-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}
.comment-author-avatar {
	width: 40px; height: 40px;
	border-radius: 50%;
	overflow: hidden;
}
.comment-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.comment-author-name {
	font-weight: 600;
	font-size: 14px;
	color: var(--text);
}
.comment-date {
	font-size: 11px;
	color: #9A8A8D;
}
.comment-content { font-size: 14px; color: #3A2C30; line-height: 1.7; }
.comment-reply-link {
	display: inline-block;
	margin-top: 8px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--burgundy);
	text-decoration: none;
}
.comment-reply-link:hover { text-decoration: underline; }

/* Comment form */
.comment-respond { margin-top: 40px; }
.comment-reply-title {
	font-family: 'Playfair Display', serif;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 24px;
	color: var(--text);
}
.comment-form label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--text);
	margin-bottom: 6px;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	border: 1.5px solid var(--border);
	padding: 11px 16px;
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	background: #fff;
	color: var(--text);
	border-radius: 2px;
	outline: none;
	transition: border-color 0.2s;
	display: block;
}
.comment-form input:focus,
.comment-form textarea:focus { border-color: var(--burgundy); }
.comment-form textarea { min-height: 140px; resize: vertical; }
.comment-form p { margin-bottom: 18px; }
.comment-form .form-submit { margin-top: 8px; }
.comment-form .submit {
	background: var(--burgundy);
	color: #fff;
	border: none;
	padding: 13px 28px;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	border-radius: 2px;
	transition: background 0.2s, transform 0.2s;
}
.comment-form .submit:hover { background: #891f47; transform: translateY(-1px); }

/* ============================================================
   PAGINATION
============================================================ */
.pagination-wrap { margin-top: 56px; display: flex; justify-content: center; }
.pagination {
	display: flex;
	align-items: center;
	gap: 6px;
}
.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px; height: 38px;
	border: 1px solid var(--border);
	border-radius: 2px;
	font-size: 13px;
	font-weight: 600;
	color: var(--text);
	transition: background 0.2s, color 0.2s, border-color 0.2s;
	text-decoration: none;
}
.page-numbers.current,
.page-numbers:hover {
	background: var(--burgundy);
	color: #fff;
	border-color: var(--burgundy);
}

/* ============================================================
   WP CORE CLASSES
============================================================ */
.alignleft  { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 16px auto; }
.alignwide  { margin-left: -60px; margin-right: -60px; }
.alignfull  { margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); width: 100vw; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 6px; }
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
	.single-inner,
	.archive-inner { grid-template-columns: 1fr; }
	.single-sidebar { position: static; }
	.widget-area { position: static; }
	.shop-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	.nav-top-bar { flex-wrap: wrap; gap: 10px; }
	.nav-social-row { order: 1; }
	.btn-subscribe-top { order: 2; }

	/* Mobile nav */
	.nav-toggle { display: flex; }
	.main-navigation ul {
		flex-direction: column;
		align-items: center;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.35s ease;
		gap: 0;
	}
	.main-navigation.open ul { max-height: 400px; }
	.main-navigation ul li { width: 100%; text-align: center; }
	.main-navigation ul li a { padding: 10px 0; border-bottom: 1px solid rgba(107,26,56,0.07); }
	.main-navigation ul li:last-child a { border-bottom: none; }
	.main-navigation ul li a::after { display: none; }
	.main-navigation ul li ul { position: static; border-top: none; box-shadow: none; }

	.hero-inner { grid-template-columns: 1fr; gap: 28px; }
	.posts-grid { grid-template-columns: 1fr; }
	.shop-grid { grid-template-columns: 1fr; }
	.shop-header { flex-direction: column; align-items: flex-start; }
	.mini-posts-grid { grid-template-columns: 1fr; gap: 32px; }
	.follow-inner { flex-direction: column; align-items: flex-start; }
	.newsletter-form { flex-direction: column; }
	.newsletter-input { border-radius: 2px 2px 0 0; }
	.btn-nl-subscribe { border-radius: 0 0 2px 2px; }
	.post-nav { grid-template-columns: 1fr; }
	.footer-top { flex-direction: column; align-items: flex-start; gap: 16px; }
	.footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
	.footer-nav { flex-wrap: wrap; gap: 14px; }
	.alignwide { margin-left: 0; margin-right: 0; }
}

@media (max-width: 480px) {
	.logo-text { font-size: 36px; }
	.shop-grid { grid-template-columns: 1fr; }
	.follow-buttons { flex-direction: column; }
	.follow-btn { justify-content: center; }
}
