/*
Theme Name: Vivienne - Kadence Child
Theme URI: https://yoursite.com/vivienne
Author: Your Name
Author URI: https://yoursite.com
Description: An elegant, feminine Kadence child theme inspired by the Vivienne design from 17th Avenue. Features warm taupe accents, sophisticated serif typography, and clean modern layouts perfect for lifestyle bloggers and creatives.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Template: kadence
Text Domain: vivienne-kadence
Tags: blog, one-column, two-columns, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, theme-options, translation-ready, block-styles, wide-blocks
*/

/* ==========================================================================
   VIVIENNE DESIGN SYSTEM FOR KADENCE
   ==========================================================================
   
   This child theme provides custom styling on top of the Kadence theme.
   Most layout/typography settings are configured via Kadence Customizer.
   This CSS handles additional refinements and custom block styles.
   ========================================================================== */

/* ==========================================================================
   CSS CUSTOM PROPERTIES (Design Tokens from Original Vivienne)
   ========================================================================== */

:root {
    /* Core Palette - Exact values from Vivienne Genesis */
    --viv-cream: #f9f9f9;
    --viv-taupe: #ece7e6;
    --viv-gray: #ccc7c6;
    --viv-black: #222222;
    --viv-white: #ffffff;
    
    /* Extended Palette */
    --viv-body-text: #444444;
    --viv-light-text: #777777;
    --viv-border: #f0f0f0;
    --viv-border-dark: #e0e0e0;
    
    /* Typography */
    --viv-font-heading: 'Cardo', Georgia, serif;
    --viv-font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --viv-font-accent: 'Montserrat', sans-serif;
    
    /* Spacing Scale */
    --viv-space-xs: 0.5rem;
    --viv-space-sm: 1rem;
    --viv-space-md: 1.5rem;
    --viv-space-lg: 2rem;
    --viv-space-xl: 3rem;
    --viv-space-2xl: 4rem;
    --viv-space-3xl: 6rem;
    
    /* Transitions */
    --viv-transition: all 0.2s ease-in-out;
}

/* ==========================================================================
   GLOBAL OVERRIDES
   ========================================================================== */

body {
    letter-spacing: 0.75px;
    -webkit-font-smoothing: subpixel-antialiased;
}

/* Selection Color */
::selection {
    background-color: var(--viv-gray);
    color: var(--viv-white);
}

::-moz-selection {
    background-color: var(--viv-gray);
    color: var(--viv-white);
}

/* Focus States */
:focus {
    outline: 1px solid var(--viv-gray);
    outline-offset: 2px;
}

/* ==========================================================================
   TYPOGRAPHY REFINEMENTS
   ========================================================================== */

/* Subheading Style - Use class "viv-subheading" */
.viv-subheading,
.subheading,
.wp-block-kadence-advancedheading.viv-subheading {
    font-family: var(--viv-font-accent) !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: var(--viv-body-text) !important;
    margin-bottom: var(--viv-space-sm) !important;
}

/* Italic Accent Style */
.viv-italic,
.italic-accent {
    font-family: var(--viv-font-heading);
    font-style: italic;
}

/* Category Labels */
.viv-category,
.entry-categories a,
.post-categories a {
    font-family: var(--viv-font-accent);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--viv-body-text);
}

.viv-category:hover,
.entry-categories a:hover,
.post-categories a:hover {
    color: var(--viv-gray);
}

/* Section Titles with Underline */
.viv-section-title {
    text-align: center;
    position: relative;
    padding-bottom: var(--viv-space-md);
    margin-bottom: var(--viv-space-xl);
}

.viv-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--viv-black);
}

/* ==========================================================================
   BUTTON STYLES
   ========================================================================== */

/* Primary Button (Dark) */
.wp-block-button__link,
.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.kb-button {
    font-family: var(--viv-font-accent) !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    padding: 14px 24px !important;
    border-radius: 0 !important;
    transition: var(--viv-transition) !important;
}

/* Button Hover */
.wp-block-button__link:hover,
.button:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.kb-button:hover {
    background-color: var(--viv-taupe) !important;
    color: var(--viv-black) !important;
}

/* Outline Button Style */
.is-style-outline .wp-block-button__link,
.viv-btn-outline {
    background: transparent !important;
    border: 1px solid var(--viv-black) !important;
    color: var(--viv-black) !important;
}

.is-style-outline .wp-block-button__link:hover,
.viv-btn-outline:hover {
    background: var(--viv-black) !important;
    color: var(--viv-white) !important;
}

/* Text Link Button */
.viv-text-link,
.more-link {
    display: inline-block;
    font-family: var(--viv-font-accent);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--viv-black);
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.viv-text-link::after,
.more-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--viv-black);
    transition: var(--viv-transition);
}

.viv-text-link:hover,
.more-link:hover {
    color: var(--viv-gray);
}

.viv-text-link:hover::after,
.more-link:hover::after {
    background-color: var(--viv-gray);
}

/* ==========================================================================
   FORM STYLES
   ========================================================================== */

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
textarea,
select {
    background-color: var(--viv-white);
    border: 1px solid var(--viv-border);
    border-radius: 0;
    box-shadow: none;
    color: var(--viv-black);
    font-family: var(--viv-font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.05em;
    padding: 14px;
    transition: var(--viv-transition);
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--viv-gray);
    outline: none;
}

::placeholder {
    color: var(--viv-light-text);
    opacity: 1;
}

/* ==========================================================================
   HEADER STYLES
   ========================================================================== */

/* Logo Text Style */
.site-title,
.custom-logo-link,
.site-branding .site-title a {
    font-family: var(--viv-font-accent) !important;
    font-weight: 500 !important;
    letter-spacing: 4px !important;
    text-transform: uppercase !important;
}

/* Navigation Links */
.header-navigation .menu > li > a,
.primary-menu > li > a {
    font-family: var(--viv-font-accent);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--viv-black);
    transition: var(--viv-transition);
}

.header-navigation .menu > li > a:hover,
.primary-menu > li > a:hover {
    color: var(--viv-gray);
}

/* Dropdown Menus */
.header-navigation .sub-menu,
.primary-menu .sub-menu {
    background: var(--viv-white);
    border: 1px solid var(--viv-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-navigation .sub-menu a,
.primary-menu .sub-menu a {
    font-size: 11px;
    padding: 12px 20px;
}

/* Header Social Icons */
.header-social-wrap a {
    color: var(--viv-black);
    transition: var(--viv-transition);
}

.header-social-wrap a:hover {
    color: var(--viv-gray);
}

/* ==========================================================================
   SIDEBAR STYLES
   ========================================================================== */

/* Sidebar Widget Titles */
.sidebar .widget-title,
.widget-area .widget-title {
    font-family: var(--viv-font-heading);
    font-size: 18px;
    font-weight: normal;
    text-align: center;
    position: relative;
    padding-bottom: var(--viv-space-sm);
    margin-bottom: var(--viv-space-md);
}

.sidebar .widget-title::after,
.widget-area .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--viv-black);
}

/* About Widget in Sidebar */
.viv-about-widget {
    text-align: center;
}

.viv-about-widget img {
    border-radius: 50%;
    margin-bottom: var(--viv-space-md);
}

.viv-about-widget p {
    font-size: 14px;
    line-height: 1.8;
}

/* "Where I Shop" Buttons */
.viv-shop-buttons a {
    display: block;
    padding: 12px 20px;
    margin-bottom: 8px;
    border: 1px solid var(--viv-border);
    font-family: var(--viv-font-accent);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    color: var(--viv-black);
    transition: var(--viv-transition);
}

.viv-shop-buttons a:hover {
    background-color: var(--viv-cream);
    border-color: var(--viv-border-dark);
}

/* Newsletter Widget */
.viv-newsletter-widget {
    background-color: var(--viv-cream);
    padding: var(--viv-space-lg);
    text-align: center;
}

.viv-newsletter-widget .widget-title {
    font-family: var(--viv-font-heading);
    font-style: italic;
}

/* ==========================================================================
   POST CARD STYLES
   ========================================================================== */

/* Post Card */
.viv-post-card {
    margin-bottom: var(--viv-space-xl);
}

.viv-post-card .post-thumbnail {
    margin-bottom: var(--viv-space-md);
    overflow: hidden;
}

.viv-post-card .post-thumbnail img {
    transition: transform 0.4s ease;
}

.viv-post-card:hover .post-thumbnail img {
    transform: scale(1.03);
}

.viv-post-card .entry-categories {
    margin-bottom: var(--viv-space-xs);
}

.viv-post-card .entry-title {
    font-family: var(--viv-font-heading);
    font-size: 22px;
    font-weight: normal;
    line-height: 1.4;
    margin-bottom: var(--viv-space-sm);
}

.viv-post-card .entry-title a {
    color: var(--viv-black);
}

.viv-post-card .entry-title a:hover {
    color: var(--viv-gray);
}

.viv-post-card .entry-summary {
    font-size: 14px;
    line-height: 2;
    color: var(--viv-body-text);
    margin-bottom: var(--viv-space-md);
}

/* ==========================================================================
   ARCHIVE/CATEGORY STYLES
   ========================================================================== */

/* Archive Title */
.viv-archive-title,
.archive-title {
    font-family: var(--viv-font-accent);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    padding-bottom: var(--viv-space-md);
    margin-bottom: var(--viv-space-xl);
    position: relative;
}

.viv-archive-title::after,
.archive-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--viv-black);
}

/* Subcategory Filters */
.viv-subcategory-nav {
    text-align: center;
    margin-bottom: var(--viv-space-xl);
}

.viv-subcategory-nav span {
    font-family: var(--viv-font-accent);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--viv-light-text);
    margin-right: var(--viv-space-sm);
}

.viv-subcategory-nav a {
    font-family: var(--viv-font-accent);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--viv-black);
    margin: 0 var(--viv-space-sm);
    transition: var(--viv-transition);
}

.viv-subcategory-nav a:hover {
    color: var(--viv-gray);
}

/* ==========================================================================
   SINGLE POST STYLES
   ========================================================================== */

/* Post Meta */
.viv-post-meta,
.entry-meta {
    font-family: var(--viv-font-accent);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--viv-body-text);
    margin-bottom: var(--viv-space-sm);
}

.viv-post-meta a,
.entry-meta a {
    color: var(--viv-body-text);
}

.viv-post-meta a:hover,
.entry-meta a:hover {
    color: var(--viv-gray);
}

/* Single Post Title */
.single .entry-title {
    font-family: var(--viv-font-heading);
    font-size: 36px;
    font-weight: normal;
    line-height: 1.3;
    margin-bottom: var(--viv-space-lg);
}

/* Post Content Links */
.entry-content a:not(.wp-block-button__link):not(.kb-button) {
    color: var(--viv-gray);
    text-decoration: underline;
}

.entry-content a:not(.wp-block-button__link):not(.kb-button):hover {
    color: var(--viv-black);
}

/* Related Posts Section */
.viv-related-posts {
    background-color: var(--viv-cream);
    padding: var(--viv-space-2xl) var(--viv-space-lg);
    margin-top: var(--viv-space-2xl);
}

.viv-related-posts .section-title {
    font-family: var(--viv-font-accent);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: var(--viv-space-xl);
}

/* Post Navigation */
.viv-post-nav,
.post-navigation {
    border-top: 1px solid var(--viv-border);
    border-bottom: 1px solid var(--viv-border);
    padding: var(--viv-space-lg) 0;
    margin: var(--viv-space-xl) 0;
}

.viv-post-nav a,
.post-navigation a {
    font-family: var(--viv-font-accent);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.viv-post-nav .nav-title,
.post-navigation .post-title {
    font-family: var(--viv-font-heading);
    font-size: 16px;
    font-style: italic;
    margin-top: var(--viv-space-xs);
}

/* ==========================================================================
   RECIPE CARD STYLES (for WP Recipe Maker or similar)
   ========================================================================== */

.viv-recipe-buttons {
    display: flex;
    gap: var(--viv-space-sm);
    margin-bottom: var(--viv-space-lg);
}

.viv-recipe-buttons .button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.wprm-recipe-container,
.viv-recipe-card {
    border: 1px solid var(--viv-border);
    padding: var(--viv-space-xl);
    margin: var(--viv-space-xl) 0;
}

.wprm-recipe-name,
.viv-recipe-card .recipe-title {
    font-family: var(--viv-font-heading);
    font-size: 28px;
    text-align: center;
}

.wprm-recipe-header {
    text-align: center;
    padding-bottom: var(--viv-space-lg);
    border-bottom: 1px solid var(--viv-border);
    margin-bottom: var(--viv-space-lg);
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */

/* Footer Widget Titles */
.footer-widget-area .widget-title,
.site-footer .widget-title {
    font-family: var(--viv-font-accent);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--viv-space-md);
}

/* Footer Links */
.footer-widget-area a,
.site-footer a {
    color: var(--viv-black);
    transition: var(--viv-transition);
}

.footer-widget-area a:hover,
.site-footer a:hover {
    color: var(--viv-gray);
}

/* Footer Newsletter */
.viv-footer-newsletter {
    background-color: var(--viv-cream);
    padding: var(--viv-space-2xl);
}

.viv-footer-newsletter .newsletter-title {
    font-family: var(--viv-font-heading);
    font-size: 24px;
    font-weight: normal;
}

/* Instagram Footer */
.viv-instagram-footer {
    position: relative;
}

.viv-instagram-footer .instagram-label {
    position: absolute;
    left: var(--viv-space-lg);
    top: 50%;
    transform: translateY(-50%);
    background: var(--viv-white);
    padding: var(--viv-space-md) var(--viv-space-lg);
    z-index: 10;
}

.viv-instagram-footer .instagram-label span {
    font-family: var(--viv-font-heading);
    font-size: 20px;
    font-style: italic;
}

.viv-instagram-footer .instagram-handle {
    font-family: var(--viv-font-accent);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: var(--viv-space-sm);
}

/* Copyright */
.site-footer .copyright,
.viv-copyright {
    font-family: var(--viv-font-accent);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==========================================================================
   WOOCOMMERCE STYLES
   ========================================================================== */

/* Shop Title */
.woocommerce-products-header__title {
    font-family: var(--viv-font-accent);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
}

/* Product Title */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.wc-block-grid__product-title {
    font-family: var(--viv-font-heading);
    font-size: 18px;
    font-weight: normal;
}

/* Product Price */
.woocommerce ul.products li.product .price,
.wc-block-grid__product-price {
    font-family: var(--viv-font-body);
    font-size: 14px;
    color: var(--viv-body-text);
}

/* Add to Cart Button */
.woocommerce a.button,
.woocommerce button.button,
.wc-block-grid__product-add-to-cart a {
    font-family: var(--viv-font-accent) !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
}

/* Shop Sidebar */
.woocommerce-widget-layered-nav-list a,
.widget_product_categories a {
    font-size: 14px;
}

/* Price Filter */
.widget_price_filter .price_slider_wrapper {
    padding-top: var(--viv-space-sm);
}

/* Browse by Category - Shop Sidebar */
.viv-shop-categories .widget-title {
    font-family: var(--viv-font-heading);
    font-style: italic;
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

/* Contact Hero */
.viv-contact-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--viv-white);
}

.viv-contact-hero .subheading {
    font-family: var(--viv-font-accent);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.viv-contact-hero .title {
    font-family: var(--viv-font-heading);
    font-size: 48px;
    font-weight: normal;
}

.viv-contact-hero .title em {
    font-style: italic;
}

/* Contact Info Card */
.viv-contact-info {
    background-color: var(--viv-cream);
    padding: var(--viv-space-xl);
}

.viv-contact-info h4 {
    font-family: var(--viv-font-accent);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--viv-space-xs);
}

.viv-contact-info p {
    font-size: 14px;
    margin-bottom: var(--viv-space-md);
}

/* ==========================================================================
   CUSTOM BLOCK PATTERNS STYLES
   ========================================================================== */

/* Free Download Block */
.viv-free-download {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--viv-space-xl);
    align-items: center;
}

/* Tip Block */
.viv-tip-block {
    background-color: var(--viv-cream);
    padding: var(--viv-space-xl);
    text-align: center;
}

.viv-tip-block .tip-icon {
    font-size: 24px;
    margin-bottom: var(--viv-space-md);
}

.viv-tip-block .tip-title {
    font-family: var(--viv-font-heading);
    font-size: 24px;
    margin-bottom: var(--viv-space-md);
}

/* Shop This Outfit Block */
.viv-shop-outfit {
    position: relative;
}

.viv-shop-outfit .outfit-details {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--viv-cream);
    padding: var(--viv-space-lg);
    max-width: 300px;
}

.viv-shop-outfit .outfit-title {
    font-family: var(--viv-font-heading);
    font-size: 22px;
    font-style: italic;
    margin-bottom: var(--viv-space-md);
}

.viv-shop-outfit .outfit-links {
    font-family: var(--viv-font-accent);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.viv-shop-outfit .outfit-links a {
    text-decoration: underline;
}

/* Product Feature Block */
.viv-product-feature {
    background-color: var(--viv-cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.viv-product-feature.reverse {
    direction: rtl;
}

.viv-product-feature.reverse > * {
    direction: ltr;
}

.viv-product-feature .product-info {
    padding: var(--viv-space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.viv-product-feature .product-brand {
    font-family: var(--viv-font-accent);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--viv-space-xs);
}

.viv-product-feature .product-name {
    font-family: var(--viv-font-heading);
    font-size: 26px;
    margin-bottom: var(--viv-space-md);
}

/* Tips List Block */
.viv-tips-list {
    background-color: var(--viv-cream);
    padding: var(--viv-space-xl);
}

.viv-tips-list .tips-title {
    font-family: var(--viv-font-heading);
    font-size: 24px;
    margin-bottom: var(--viv-space-lg);
}

.viv-tips-list ul {
    list-style: none;
    padding: 0;
}

.viv-tips-list li {
    padding-left: var(--viv-space-lg);
    position: relative;
    margin-bottom: var(--viv-space-md);
}

.viv-tips-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--viv-gray);
}

/* Callout/Quote Block */
.viv-callout {
    background-color: var(--viv-cream);
    padding: var(--viv-space-2xl);
    text-align: center;
}

.viv-callout .callout-label {
    font-family: var(--viv-font-accent);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--viv-space-md);
}

.viv-callout .callout-text {
    font-family: var(--viv-font-heading);
    font-size: 28px;
    line-height: 1.5;
}

/* Packing List Block */
.viv-packing-list {
    background-color: var(--viv-cream);
    padding: var(--viv-space-xl);
    text-align: center;
}

.viv-packing-list .list-icon {
    font-size: 32px;
    margin-bottom: var(--viv-space-md);
}

.viv-packing-list .list-title {
    font-family: var(--viv-font-heading);
    font-size: 26px;
    margin-bottom: var(--viv-space-lg);
}

.viv-packing-list .list-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--viv-space-md);
    text-align: left;
}

.viv-packing-list .list-item {
    display: flex;
    align-items: center;
    gap: var(--viv-space-xs);
    font-size: 14px;
}

/* Ebook/Lead Magnet Block */
.viv-ebook-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.viv-ebook-block .ebook-content {
    background-color: var(--viv-taupe);
    padding: var(--viv-space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.viv-ebook-block .ebook-title {
    font-family: var(--viv-font-heading);
    font-size: 28px;
}

.viv-ebook-block .ebook-title em {
    font-style: italic;
}

/* Shop the Look Carousel */
.viv-shop-look {
    text-align: center;
    padding: var(--viv-space-xl) 0;
}

.viv-shop-look .shop-title {
    font-family: var(--viv-font-accent);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--viv-space-lg);
}

/* More Posts in Category Block */
.viv-more-posts {
    background-color: var(--viv-cream);
    padding: var(--viv-space-2xl);
}

.viv-more-posts .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--viv-space-xl);
}

.viv-more-posts .section-title {
    font-family: var(--viv-font-heading);
    font-size: 24px;
}

.viv-more-posts .section-title em {
    font-style: italic;
}

.viv-more-posts .see-all {
    font-family: var(--viv-font-accent);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--viv-black);
    padding: 10px 20px;
}

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

@media (max-width: 1024px) {
    .viv-free-download,
    .viv-product-feature,
    .viv-ebook-block {
        grid-template-columns: 1fr;
    }
    
    .viv-packing-list .list-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .single .entry-title {
        font-size: 28px;
    }
    
    .viv-contact-hero .title {
        font-size: 36px;
    }
    
    .viv-packing-list .list-columns {
        grid-template-columns: 1fr;
    }
    
    .viv-shop-outfit .outfit-details {
        position: static;
        max-width: 100%;
    }
    
    .viv-recipe-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .viv-section-title,
    .viv-archive-title {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    .single .entry-title {
        font-size: 24px;
    }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.viv-text-center { text-align: center; }
.viv-text-left { text-align: left; }
.viv-text-right { text-align: right; }

.viv-mt-0 { margin-top: 0; }
.viv-mt-sm { margin-top: var(--viv-space-sm); }
.viv-mt-md { margin-top: var(--viv-space-md); }
.viv-mt-lg { margin-top: var(--viv-space-lg); }
.viv-mt-xl { margin-top: var(--viv-space-xl); }

.viv-mb-0 { margin-bottom: 0; }
.viv-mb-sm { margin-bottom: var(--viv-space-sm); }
.viv-mb-md { margin-bottom: var(--viv-space-md); }
.viv-mb-lg { margin-bottom: var(--viv-space-lg); }
.viv-mb-xl { margin-bottom: var(--viv-space-xl); }

.viv-bg-cream { background-color: var(--viv-cream); }
.viv-bg-taupe { background-color: var(--viv-taupe); }
.viv-bg-white { background-color: var(--viv-white); }

.viv-hidden { display: none; }
.viv-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
