/*
Theme Name: Aachri Child Theme
Theme URI: https://aachri.in
Description: Custom child theme for Aachri Jewelry WooCommerce store with elegant design
Author: Your Name
Author URI: https://aachri.in
Template: storefront
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aachri-child
*/

/* ===========================
   GLOBAL VARIABLES & RESET
   =========================== */
:root {
    --primary-color: #d4af37;
    --primary-dark: #b8941f;
    --secondary-color: #2c2c2c;
    --text-color: #333333;
    --light-gray: #f8f8f8;
    --border-color: #e5e5e5;
    --white: #ffffff;
    --accent-pink: #ffd5e5;
    --accent-gold: #f4e4c1;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Lato', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

/* ===========================
   HEADER & TOP BAR
   =========================== */
.site-header {
    border-bottom: 1px solid var(--border-color);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow-sm);
}

/* Promotional Top Bar */
.promo-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 6px 20px;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    animation: slideDown 0.5s ease;
}

.promo-bar strong {
    font-weight: 700;
    text-decoration: underline;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Main Header */
.site-branding {
    text-align: center;
    padding: 10px 0;
}

.site-branding img {
    max-height: 54px;
    width: auto;
    transition: var(--transition);
}

.site-branding img:hover {
    transform: scale(1.05);
}

/* Navigation */
.main-navigation {
    background: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.main-navigation ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 9px 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.main-navigation a:hover {
    color: var(--primary-color);
}

.main-navigation a:hover::after {
    width: 80%;
}

/* Header Icons */
.site-header-cart {
    position: relative;
}

.cart-contents {
    color: var(--text-color);
    font-size: 1.2rem;
    position: relative;
    transition: var(--transition);
}

.cart-contents:hover {
    color: var(--primary-color);
}

.cart-contents-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-pink) 100%);
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 213, 229, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.hero-cta {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    animation: fadeInUp 1.2s ease;
}

.hero-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   SECTION HEADERS
   =========================== */
.section-header {
    text-align: center;
    margin: 60px auto 40px;
    position: relative;
    max-width: 600px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding: 0 40px;
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 80px;
    height: 2px;
    background: var(--primary-color);
}

.section-title::before {
    left: -90px;
}

.section-title::after {
    right: -90px;
}

.decorative-line {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 15px auto;
}

/* ===========================
   CATEGORY SHOWCASE
   =========================== */
.category-showcase {
    padding: 60px 20px;
    background: var(--light-gray);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--white);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.category-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 30px 20px;
    color: var(--white);
}

.category-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.category-cta {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.category-cta:hover {
    background: var(--primary-dark);
    transform: translateX(5px);
}

/* Feature Categories Grid */
.feature-categories {
    padding: 60px 20px;
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.feature-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* ===========================
   FEATURES SECTION
   =========================== */
.features-section {
    padding: 60px 20px;
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    max-width: 100%;
    height: auto;
}

.feature-title {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.feature-description {
    color: var(--text-color);
    line-height: 1.6;
}

/* ===========================
   BLOG SECTION
   =========================== */
.blog-section {
    padding: 60px 20px;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-content {
    padding: 25px;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.blog-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

.blog-excerpt {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.read-more:hover {
    gap: 10px;
}

.read-more::after {
    content: '→';
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
    background: #111d07 !important;
    color: rgba(250, 247, 242, 0.75) !important;
    font-family: 'Lato', sans-serif;
}

/* Main footer grid */
.footer-main {
    padding: 72px 0 56px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.18);
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 56px;
    align-items: start;
}

/* Brand column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    color: #faf7f2;
    display: block;
    margin-bottom: 4px;
}
.footer-brand-sub {
    font-family: 'Lato', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #c9a96e;
    display: block;
    margin-bottom: 18px;
}
.footer-brand-desc {
    font-size: 0.88rem;
    line-height: 1.75;
    color: rgba(250, 247, 242, 0.55);
    margin-bottom: 22px;
    max-width: 280px;
}
.footer-shop-link {
    font-family: 'Lato', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c9a96e !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(201, 169, 110, 0.4);
    padding-bottom: 2px;
    display: inline-block;
    transition: color 0.2s, border-color 0.2s;
}
.footer-shop-link:hover {
    color: #faf7f2 !important;
    border-color: rgba(250, 247, 242, 0.4);
}

/* Column headings */
.footer-col-heading {
    font-family: 'Lato', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c9a96e;
    margin: 0 0 18px;
    padding: 0;
}

/* Column links */
.footer-col-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col-list li {
    margin-bottom: 11px;
    line-height: 1.4;
}
.footer-col-list a {
    font-size: 0.88rem;
    color: rgba(250, 247, 242, 0.7) !important;
    text-decoration: none !important;
    transition: color 0.2s;
}
.footer-col-list a:hover {
    color: #faf7f2 !important;
}

/* Bottom bar */
.footer-bottom {
    padding: 20px 0;
    background: #0c1505;
}
.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(250, 247, 242, 0.38);
    margin: 0;
    letter-spacing: 0.04em;
}
.footer-bottom-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: rgba(201, 169, 110, 0.45) !important;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 0 28px;
    }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom-inner { padding: 0 28px; flex-direction: column; text-align: center; }
}
@media (max-width: 540px) {
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-main { padding: 48px 0 40px; }
}

/* ===========================
   WOOCOMMERCE STYLES
   =========================== */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.woocommerce ul.products li.product {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.woocommerce ul.products li.product img {
    border-radius: 15px 15px 0 0;
    transition: var(--transition);
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.05);
}

.woocommerce ul.products li.product .price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.woocommerce ul.products li.product .button {
    background: var(--primary-color);
    color: var(--white);
    border-radius: 25px;
    padding: 10px 25px;
    transition: var(--transition);
}

.woocommerce ul.products li.product .button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.woocommerce div.product .summary {
    padding: 30px;
    background: var(--light-gray);
    border-radius: 15px;
}

.woocommerce div.product form.cart .button {
    background: var(--primary-color);
    color: var(--white);
    border-radius: 25px;
    padding: 15px 40px;
    font-weight: 600;
    transition: var(--transition);
}

.woocommerce div.product form.cart .button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 768px) {
    .promo-bar {
        font-size: 0.72rem;
        padding: 5px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-navigation a {
        padding: 9px 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-title::before,
    .section-title::after {
        width: 40px;
    }
    
    .section-title::before {
        left: -50px;
    }
    
    .section-title::after {
        right: -50px;
    }
    
    .category-grid,
    .feature-grid,
    .features-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    /* footer-content replaced by .footer-inner — handled in footer responsive block above */
}

/* ===========================
   ANIMATIONS & UTILITIES
   =========================== */
.fade-in {
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   ACCESSIBILITY
   =========================== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/**
 * ENHANCED SHOP PAGE STYLES
 * Add this to your style.css or create a custom CSS file
 * This will improve the product grid layout and fix display issues
 */

/* ===========================
   SHOP PAGE PRODUCT GRID FIX
   =========================== */

/* Ensure proper grid layout */
.woocommerce .products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

/* Individual product items */
.woocommerce ul.products li.product {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: var(--white, #ffffff);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* Product image container */
.woocommerce ul.products li.product .woocommerce-loop-product__link {
    display: block;
    text-decoration: none;
}

.woocommerce ul.products li.product img {
    width: 100% !important;
    height: 300px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 15px 15px 0 0;
    transition: transform 0.3s ease;
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.05);
}

/* Remove placeholder images or style them properly */
.woocommerce ul.products li.product img.woocommerce-placeholder {
    opacity: 0.3;
    filter: grayscale(100%);
}

/* Product title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    line-height: 1.4;
    margin: 15px 15px 10px;
    color: #2c2c2c;
    font-weight: 600;
    display: block;
    min-height: 48px;
}

/* Product price */
.woocommerce ul.products li.product .price {
    display: block;
    margin: 0 15px 15px;
    color: #d4af37 !important;
    font-size: 1.25rem;
    font-weight: 700;
}

.woocommerce ul.products li.product .price del {
    color: #999;
    font-size: 1rem;
    margin-right: 5px;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none;
    color: #d4af37;
}

/* Sale badge */
.woocommerce ul.products li.product .onsale {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d4af37;
    color: white;
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

/* Add to cart button */
.woocommerce ul.products li.product .button {
    display: block;
    width: calc(100% - 30px);
    margin: 0 15px 15px;
    padding: 12px 20px;
    background: #d4af37;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce ul.products li.product .button:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Loading state */
.woocommerce ul.products li.product.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* ===========================
   HIDE DUPLICATE PRODUCTS
   =========================== */

/* If you have products without images showing as duplicates, hide them */
.woocommerce ul.products li.product:has(img.woocommerce-placeholder) {
    /* Option 1: Hide completely */
    /* display: none !important; */
    
    /* Option 2: Make them less prominent */
    opacity: 0.5;
    pointer-events: none;
}

/* Or specifically target products with placeholder + same title */
.woocommerce ul.products li.product:has(img.woocommerce-placeholder):not(:first-of-type) {
    display: none !important;
}

/* ===========================
   RESPONSIVE ADJUSTMENTS
   =========================== */

/* Tablet - 3 columns */
@media (max-width: 1024px) {
    .woocommerce .products {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }
}

/* Tablet Portrait - 2 columns */
@media (max-width: 768px) {
    .woocommerce .products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .woocommerce ul.products li.product img {
        height: 250px !important;
    }
    
    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 0.9rem;
        min-height: auto;
    }
}

/* Mobile - 1 column */
@media (max-width: 480px) {
    .woocommerce .products {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .woocommerce ul.products li.product img {
        height: 300px !important;
    }
}

/* ===========================
   SHOP PAGE ORDERING
   =========================== */

.woocommerce-ordering {
    margin-bottom: 30px;
}

.woocommerce-ordering select {
    padding: 10px 15px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce-ordering select:focus {
    border-color: #d4af37;
    outline: none;
}

/* ===========================
   RESULT COUNT
   =========================== */

.woocommerce-result-count {
    margin-bottom: 20px;
    color: #666;
}

/* ===========================
   NO PRODUCTS FOUND
   =========================== */

.woocommerce-info {
    background: #f8f8f8;
    padding: 20px;
    border-left: 4px solid #d4af37;
    margin: 20px 0;
}

/* ===========================
   PAGINATION
   =========================== */

.woocommerce-pagination {
    margin-top: 40px;
    text-align: center;
}

.woocommerce-pagination ul.page-numbers {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.woocommerce-pagination ul.page-numbers li {
    margin: 0;
}

.woocommerce-pagination ul.page-numbers li span,
.woocommerce-pagination ul.page-numbers li a {
    display: block;
    padding: 10px 15px;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 45px;
    text-align: center;
}

.woocommerce-pagination ul.page-numbers li span.current,
.woocommerce-pagination ul.page-numbers li a:hover {
    background: #d4af37;
    color: white;
    border-color: #d4af37;
}

/* ===========================
   ADDITIONAL FIXES
   =========================== */

/* ── Breadcrumbs: hidden site-wide (removed via PHP hooks; CSS is a safety net) ── */
.woocommerce-breadcrumb,
nav.woocommerce-breadcrumb,
.breadcrumbs {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ── Remove header bottom margin (Storefront default ~68px gap after header) ── */
.site-header {
    margin-bottom: 0 !important;
}

/* ── Remove top spacing on main content areas ── */
.site-main,
.content-area {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* ── Collapse empty page-header / entry-header containers ── */
.page-header:empty,
.entry-header.page-header:empty {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ── WooCommerce page top spacing ── */
.woocommerce-page .site-main,
.woocommerce .site-main {
    padding-top: 0 !important;
}

/* Fix for product categories widget */
.widget_product_categories ul {
    list-style: none;
    padding: 0;
}

.widget_product_categories ul li {
    padding: 8px 0;
    border-bottom: 1px solid #e5e5e5;
}

.widget_product_categories ul li:last-child {
    border-bottom: none;
}

.widget_product_categories ul li a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.widget_product_categories ul li a:hover {
    color: #d4af37;
    padding-left: 5px;
}

/* ===========================
   PRODUCT QUICK VIEW (IF ENABLED)
   =========================== */

.product-quick-view {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.woocommerce ul.products li.product:hover .product-quick-view {
    opacity: 1;
}

/* ===========================
   LOADING ANIMATION
   =========================== */

.woocommerce-products-loading {
    position: relative;
}

.woocommerce-products-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #d4af37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===========================
   MOBILE HEADER ALIGNMENT
   =========================== */
/*
 * Storefront mobile DOM:
 *   header.site-header
 *     div.col-full          ← logo + search
 *     div.storefront-primary-navigation   ← hamburger + cart
 *       div.col-full
 *         nav.main-navigation
 *           button.menu-toggle
 *         ul.site-header-cart
 *
 * Strategy: make .site-header a flex row so the two blocks sit side-by-side.
 */
/* ════════════════════════════════════════════════════════════════
   MOBILE HEADER REDESIGN — max-width: 768px
   Layout:
     Row 1: [Logo Left] ·············· [🔍][🛒][☰]
     Nav:   Toggles open/closed via hamburger icon (Storefront JS)
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── Promo bar: slim on mobile ── */
    .promo-bar {
        padding: 4px 12px !important;
        font-size: 0.7rem !important;
    }

    /* ── Logo image ── */
    .site-branding img,
    .custom-logo-link img {
        display: inline-block !important;
        max-height: 36px !important;
        width: auto !important;
        height: auto !important;
    }

    /* ── HEADER: block container so rows stack; position:relative anchors the icons ── */
    .site-header {
        display: block !important;
        padding: 0 !important;
        position: relative !important;
        overflow: visible !important;
    }

    /* ── ROW 1: Logo block — right-padded to leave room for absolutely-placed icons ── */
    .site-header > .col-full {
        display: flex !important;
        align-items: center !important;
        min-height: 54px;
        width: 100% !important;
        padding: 9px 140px 9px 16px !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }

    /* Strip Storefront's default 10px top/bottom padding on the branding block
       and kill the inline-block gap under the logo anchor */
    .site-header > .col-full .site-branding {
        padding: 0 !important;
        line-height: 1 !important;
    }
    .site-header > .col-full .custom-logo-link {
        display: flex !important;
        align-items: center !important;
        line-height: 1 !important;
    }

    /* ── ICONS: absolutely placed at top-right of header, vertically centred in Row 1 ── */
    .site-header .fyc-header-search {
        position: absolute !important;
        top: 0 !important;
        right: 90px !important;
        height: 54px !important;
        display: flex !important;
        align-items: center !important;
        z-index: 10;
        float: none !important;
        order: unset !important;
    }

    .site-header ul.site-header-cart {
        position: absolute !important;
        top: 0 !important;
        right: 48px !important;
        height: 54px !important;
        display: flex !important;
        align-items: center !important;
        overflow: visible !important;
        z-index: 10;
        list-style: none;
        margin: 0 !important;
        padding: 0 !important;
        float: none !important;
        order: unset !important;
    }

    /* ── NAV WRAPPER: no visible styling when closed ── */
    .site-header > .storefront-primary-navigation {
        display: block !important;
        width: 100% !important;
    }

    .storefront-primary-navigation > .col-full {
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        max-width: none !important;
        overflow: visible !important;
    }

    nav.main-navigation {
        width: 100% !important;
        display: block !important;
        position: static !important;
        order: unset !important;
        overflow: visible !important;
    }

    /* ── HAMBURGER TOGGLE: absolute top-right, 3-line icon ── */
    .menu-toggle {
        position: absolute !important;
        top: 0 !important;
        right: 4px !important;
        height: 54px !important;
        width: 42px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        cursor: pointer !important;
        z-index: 10;
        /* Hide any text label Storefront renders */
        font-size: 0 !important;
        color: transparent !important;
    }

    /* 3-line SVG hamburger icon */
    .menu-toggle::before {
        content: '';
        display: block;
        width: 22px;
        height: 16px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='16' viewBox='0 0 22 16'%3E%3Crect y='0' width='22' height='2' rx='1' fill='%23111d07'/%3E%3Crect y='7' width='22' height='2' rx='1' fill='%23111d07'/%3E%3Crect y='14' width='22' height='2' rx='1' fill='%23111d07'/%3E%3C%2Fsvg%3E");
        background-repeat: no-repeat;
        background-size: contain;
    }

    .menu-toggle:hover::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='16' viewBox='0 0 22 16'%3E%3Crect y='0' width='22' height='2' rx='1' fill='%232d4a0e'/%3E%3Crect y='7' width='22' height='2' rx='1' fill='%232d4a0e'/%3E%3Crect y='14' width='22' height='2' rx='1' fill='%232d4a0e'/%3E%3C%2Fsvg%3E");
    }

    /* ── NAV DROPDOWN: styled when Storefront JS opens it ── */
    .handheld-navigation {
        position: static !important;
        width: 100% !important;
        min-width: 0 !important;
        box-shadow: none !important;
        background: #f5f0e8 !important;
        border-top: 1px solid #e2ddd4 !important;
        z-index: auto !important;
    }

    /* ── NAV GRID: 2 columns × up to 3 rows ── */
    .handheld-navigation ul.menu {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 6px 16px 10px !important;
        gap: 0 !important;
        border-top: none !important;
        background: transparent !important;
        flex-direction: unset !important;
    }

    .handheld-navigation ul.menu > li {
        display: block !important;
        list-style: none !important;
        border: none !important;
        padding: 0 !important;
    }

    .handheld-navigation ul.menu > li > a {
        display: block !important;
        text-align: center !important;
        padding: 8px 4px !important;
        font-family: 'Lato', sans-serif !important;
        font-size: 0.72rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.1em !important;
        text-transform: uppercase !important;
        color: #1a2a0a !important;
        text-decoration: none !important;
        border: none !important;
        background: none !important;
        white-space: nowrap !important;
        line-height: 1.2 !important;
    }

    .handheld-navigation ul.menu > li > a:hover,
    .handheld-navigation ul.menu > li.current-menu-item > a,
    .handheld-navigation ul.menu > li.current_page_item > a {
        color: #2d4a0e !important;
    }

    /* Hide sub-menus / dropdowns in the mobile grid */
    .handheld-navigation ul.menu li ul,
    .handheld-navigation ul.sub-menu {
        display: none !important;
    }

    /* ── SEARCH ICON BUTTON ── */
    .fyc-search-btn {
        background: none !important;
        border: none !important;
        padding: 8px;
        cursor: pointer;
        color: #333;
        display: flex;
        align-items: center;
        line-height: 1;
    }
    .fyc-search-btn svg { display: block; }
    .fyc-search-btn:hover { color: #2d4a0e; }

    /* ── SEARCH FORM: fixed strip, appears below the full header ── */
    .fyc-search-form {
        position: fixed;
        top: 175px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 12px 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.14);
        z-index: 9999;
        border-top: 2px solid #2d4a0e;
    }
    .fyc-search-form form,
    .fyc-search-form .search-form { display: flex; gap: 8px; }
    .fyc-search-form input[type="search"],
    .fyc-search-form input[name="s"] {
        flex: 1;
        border: 1px solid #ddd;
        border-radius: 4px;
        padding: 8px 12px;
        font-size: 0.95rem;
        outline: none;
    }
    .fyc-search-form input[type="search"]:focus,
    .fyc-search-form input[name="s"]:focus { border-color: #2d4a0e; }
    .fyc-search-form button[type="submit"] {
        background: #2d4a0e;
        color: #fff;
        border: none;
        border-radius: 4px;
        padding: 8px 14px;
        font-size: 0.85rem;
        cursor: pointer;
    }

    /* ── CART ICON: bag SVG, badge, hide price text ── */
    ul.site-header-cart .cart-contents {
        position: relative;
        padding: 8px;
        font-size: 0;
        color: #333;
        display: flex !important;
        align-items: center;
        text-decoration: none;
    }
    ul.site-header-cart .cart-contents::before {
        content: '';
        display: block;
        width: 22px;
        height: 22px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111d07' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z'/%3E%3Cline x1='3' y1='6' x2='21' y2='6'/%3E%3Cpath d='M16 10a4 4 0 0 1-8 0'/%3E%3C%2Fsvg%3E");
        background-size: contain;
        background-repeat: no-repeat;
    }
    /* Suppress Storefront's Font Awesome cart ::after on mobile too */
    ul.site-header-cart .cart-contents::after {
        display: none !important;
    }
    /* Count badge */
    ul.site-header-cart .cart-contents .count {
        position: absolute;
        top: 1px;
        right: 1px;
        font-size: 0.6rem !important;
        line-height: 15px;
        background: #2d4a0e;
        color: #fff !important;
        border-radius: 50%;
        width: 15px;
        height: 15px;
        display: block !important;
        text-align: center;
        padding: 0;
        overflow: hidden;
        white-space: nowrap;
    }
}

/* ── Desktop: search dropdown positions relative to icon ── */
@media (min-width: 769px) {
    .fyc-header-search {
        position: relative;
        display: inline-flex;
        align-items: center;
    }
    .fyc-search-btn {
        background: none;
        border: none;
        padding: 8px;
        cursor: pointer;
        color: #333;
        display: flex;
        align-items: center;
        line-height: 1;
    }
    .fyc-search-btn svg { display: block; }
    .fyc-search-btn:hover { color: #2d4a0e; }
    .fyc-search-form {
        position: absolute;
        top: 100%;
        right: 0;
        min-width: 280px;
        background: #fff;
        padding: 12px 16px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.12);
        z-index: 9999;
        border: 1px solid #eee;
        border-radius: 0 0 6px 6px;
    }
    .fyc-search-form form,
    .fyc-search-form .search-form { display: flex; gap: 8px; }
    .fyc-search-form input[type="search"],
    .fyc-search-form input[name="s"] {
        flex: 1;
        border: 1px solid #ddd;
        border-radius: 4px;
        padding: 7px 10px;
        font-size: 0.9rem;
        outline: none;
    }
    .fyc-search-form input[type="search"]:focus,
    .fyc-search-form input[name="s"]:focus { border-color: #2d4a0e; }
    .fyc-search-form button[type="submit"] {
        background: #2d4a0e;
        color: #fff;
        border: none;
        border-radius: 4px;
        padding: 7px 12px;
        font-size: 0.85rem;
        cursor: pointer;
    }
}

/* ════════════════════════════════════════════════════════════════
   DESKTOP HEADER REDESIGN — min-width: 769px
   Layout: [Logo Left] [Nav Center] [Search Icon + Cart Right]
   Does NOT affect mobile — all rules scoped inside this media query.
   ════════════════════════════════════════════════════════════════ */
@media (min-width: 769px) {

    /* ── Slim promo bar ── */
    .promo-bar {
        padding: 5px 20px !important;
        font-size: 0.73rem !important;
    }

    /* ── Header: single flex row ── */
    .site-header {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        padding: 0 !important;
        min-height: 64px;
        overflow: visible !important;
    }

    /* ── Logo block: left-aligned, auto-width, no float ── */
    .site-header > .col-full {
        flex: 0 0 auto !important;
        width: auto !important;
        float: none !important;
        padding: 0 0 0 max(2.61792em, calc(50vw - 33.24943em)) !important;
        display: flex !important;
        align-items: center !important;
        overflow: visible !important;
    }

    /* ── Hide Storefront's bulky WooCommerce search bar ── */
    .site-header .site-search {
        display: none !important;
    }

    /* ── Logo branding block ── */
    .site-header .site-branding {
        float: none !important;
        padding: 0 !important;
        margin: 0 !important;
        width: auto !important;
    }

    .site-header .site-branding .custom-logo,
    .site-header .site-branding img {
        max-height: 44px !important;
        width: auto !important;
        display: block;
    }

    /* ── Primary nav row: fills remaining space ── */
    .site-header .storefront-primary-navigation {
        flex: 1 1 auto !important;
        float: none !important;
        display: flex !important;
        align-items: center !important;
        padding: 0 !important;
        background: transparent !important;
        border-top: none !important;
        border-bottom: none !important;
        overflow: visible !important;
    }

    /* ── Inner col-full: flex row so nav + icons all sit on one line ── */
    .storefront-primary-navigation > .col-full {
        display: flex !important;
        align-items: center !important;
        float: none !important;
        width: 100% !important;
        padding: 0 !important;
        overflow: visible !important;
    }

    /* ── Nav: centred, order 1 ── */
    .storefront-primary-navigation nav.main-navigation {
        flex: 1 1 auto !important;
        float: none !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        border-top: none !important;
        border-bottom: none !important;
        background: transparent !important;
        padding: 0 !important;
        order: 1;
        overflow: visible !important;
    }

    .storefront-primary-navigation nav.main-navigation ul.menu {
        display: flex !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .storefront-primary-navigation nav.main-navigation ul.menu > li > a {
        font-size: 0.82rem;
        font-weight: 500;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: #1a2a0a;
        padding: 8px 10px;
        display: block;
        white-space: nowrap;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .storefront-primary-navigation nav.main-navigation ul.menu > li > a:hover {
        color: #2d4a0e;
    }

    /* Remove nav top/bottom border lines on desktop */
    nav.main-navigation {
        border-top: none !important;
        border-bottom: none !important;
    }

    /* ── Search icon: order 2 (placed before cart) ── */
    .storefront-primary-navigation .fyc-header-search {
        flex: 0 0 auto !important;
        float: none !important;
        order: 2;
        margin: 0 4px !important;
        display: inline-flex !important;
        align-items: center !important;
    }

    /* ── Cart: order 3, rightmost ── */
    .storefront-primary-navigation ul.site-header-cart {
        flex: 0 0 auto !important;
        float: none !important;
        order: 3;
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 24px 0 4px !important;
        list-style: none;
    }

    .storefront-primary-navigation ul.site-header-cart .cart-contents {
        display: flex !important;
        align-items: center !important;
        gap: 6px;
        font-size: 0.87rem;
        font-weight: 600;
        color: #2d4a0e;
        padding: 6px 8px;
        text-decoration: none;
    }

    /* Cart: shopping bag icon via SVG ::before */
    .storefront-primary-navigation ul.site-header-cart .cart-contents::before {
        content: '';
        display: inline-block;
        width: 20px;
        height: 20px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%232d4a0e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z'%2F%3E%3Cline x1='3' y1='6' x2='21' y2='6'%2F%3E%3Cpath d='M16 10a4 4 0 0 1-8 0'%2F%3E%3C%2Fsvg%3E");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        flex-shrink: 0;
    }

    /* Cart item count badge */
    .storefront-primary-navigation ul.site-header-cart .count {
        position: static !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        background: #2d4a0e !important;
        color: #fff !important;
        border-radius: 50% !important;
        min-width: 18px !important;
        height: 18px !important;
        width: auto !important;
        padding: 0 4px !important;
        font-size: 0.68rem !important;
        font-weight: 700;
        line-height: 1;
    }

    /* Cart price amount */
    .storefront-primary-navigation ul.site-header-cart .cart-contents .amount {
        font-size: 0.87rem;
        font-weight: 600;
        color: #2d4a0e;
    }

    /* Hide Storefront's default Font Awesome cart ::after icon (we use our own SVG ::before) */
    .storefront-primary-navigation ul.site-header-cart .cart-contents::after {
        display: none !important;
    }

}

/* =============================================================================
   BLOG / SINGLE POST TYPOGRAPHY
   All rules scoped to .single-post — zero impact on product, shop, or other pages
   ============================================================================= */

/* ── Reading container ── */
.single-post .entry-content {
    max-width: 760px;
}

/* ── Post title ── */
.single-post .entry-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 2.4rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #1a2d07;
    max-width: 760px;
    margin-bottom: 0.5rem;
}

/* ── Post meta (date, author, categories) ── */
.single-post .entry-meta {
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888878;
    margin: 0.75rem 0 2.5rem;
}

.single-post .entry-meta a {
    color: #888878;
    text-decoration: none;
}

.single-post .entry-meta a:hover {
    color: #2d4a0e;
}

/* ── Body paragraphs — Libre Baskerville for elegant long-form reading ── */
.single-post .entry-content p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.0625rem;
    line-height: 1.9;
    color: #3a3a2e;
    max-width: 720px;
    margin-bottom: 1.6em;
}

/* ── First paragraph lead — slightly larger and stronger ── */
.single-post .entry-content > p:first-of-type {
    font-size: 1.15rem;
    color: #2d2d1e;
    line-height: 1.85;
}

/* ── H2 — primary section headings ── */
.single-post .entry-content h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.65rem;
    line-height: 1.25;
    color: #2d4a0e;
    margin-top: 2.8em;
    margin-bottom: 0.6em;
    max-width: 720px;
}

/* ── H3 — sub-section headings ── */
.single-post .entry-content h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.35;
    color: #2d4a0e;
    margin-top: 2em;
    margin-bottom: 0.5em;
}

/* ── H4 — label-style subheadings ── */
.single-post .entry-content h4 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c9a96e;
    margin-top: 1.8em;
    margin-bottom: 0.75em;
    padding-bottom: 0.4em;
    border-bottom: 1px solid #e8e2d9;
}

/* ── Blockquote ── */
.single-post .entry-content blockquote {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2d4a0e;
    border-left: 3px solid #c9a96e;
    border-top: none;
    border-right: none;
    border-bottom: none;
    padding: 0.5em 0 0.5em 1.5em;
    margin: 2.2em 0;
    background: none;
}

.single-post .entry-content blockquote p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #2d4a0e;
    margin-bottom: 0;
}

/* ── Lists ── */
.single-post .entry-content ul,
.single-post .entry-content ol {
    max-width: 720px;
    padding-left: 1.25em;
}

.single-post .entry-content ul li,
.single-post .entry-content ol li {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #3a3a2e;
    margin-bottom: 0.5em;
}

.single-post .entry-content ul li::marker {
    color: #c9a96e;
}

.single-post .entry-content ol li::marker {
    color: #c9a96e;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

/* ── Horizontal rule ── */
.single-post .entry-content hr {
    border: none;
    border-top: 1px solid #e8e2d9;
    margin: 3em 0;
    max-width: 720px;
}

/* ── Captions and figure text ── */
.single-post .entry-content figcaption,
.single-post .entry-content .wp-caption-text {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    color: #888878;
    letter-spacing: 0.04em;
    text-align: center;
    margin-top: 0.6em;
}

/* ── Inline links ── */
.single-post .entry-content a {
    color: #2d4a0e;
    text-decoration: underline;
    text-decoration-color: #c9a96e;
    text-underline-offset: 3px;
}

.single-post .entry-content a:hover {
    color: #c9a96e;
}

/* ── Featured image spacing ── */
.single-post .post-thumbnail {
    margin-bottom: 2.5rem;
}

.single-post .post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── Mobile ── */
@media (max-width: 767px) {
    .single-post .entry-title {
        font-size: 1.75rem;
    }

    .single-post .entry-content p,
    .single-post .entry-content ul li,
    .single-post .entry-content ol li {
        font-size: 1rem;
        line-height: 1.85;
    }

    .single-post .entry-content > p:first-of-type {
        font-size: 1.05rem;
    }

    .single-post .entry-content h2 {
        font-size: 1.4rem;
        margin-top: 2.2em;
    }

    .single-post .entry-content h3 {
        font-size: 1.15rem;
    }

    .single-post .entry-content blockquote,
    .single-post .entry-content blockquote p {
        font-size: 1.05rem;
    }
}