/* ==========================================================================
   Liquid Liberty Mercantile Theme - Parchment Colonial Style
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
    --ll-parchment: #f5eeda;
    --ll-parchment-light: #faf3e0;
    --ll-ink: #4a2c2a;
    --ll-ink-light: #5a3d2b;
    --ll-red: #8c1c13;
    --ll-gold: #8a6d3b;
    --ll-border: #d3c0a5;
    --ll-success: #27ae60;
    --ll-warning: #f39c12;
    --ll-gray: #bdc3c7;
    
    --ll-font-title: 'IM Fell English SC', serif;
    --ll-font-body: 'IM Fell DW Pica', serif;
    
    --ll-transition: 0.15s ease-in-out;
    --ll-shadow: 3px 3px 0px #4a2c2a;
    --ll-shadow-small: 2px 2px 0px #4a2c2a;
}

/* --------------------------------------------------------------------------
   Reset & Base Styles
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ll-font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ll-ink);
    background-color: var(--ll-parchment);
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEWFhYWDg4N3d3dtbW17e3t1dXWBgYGHh4d5eXlzc3OLi4ubm5uVlZWYmJitbW1oaGhpaWpycnJwcHBvb29bW1tZWFlgYGCvr6/CsrKztbW9vb2Dg4N3d3e+vr7R0dG4uLi3t7e5ubmhAbAmAAAAPUlEQVR42t3QWRIAIAhEwfT/fy6xHdXaTbfiHZZbO3QMRMyvPRN5c2wrASAwE/g3wIixitqJ+l0ZAAAAAElFTSuQmCC');
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--ll-ink);
    text-decoration: none;
    transition: color var(--ll-transition);
}

a:hover {
    color: var(--ll-red);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ll-font-title);
    font-weight: normal;
    line-height: 1.3;
    color: var(--ll-ink-light);
}

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

p {
    margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   Main Container - Parchment Style
   -------------------------------------------------------------------------- */
.parchment-container {
    background-color: var(--ll-parchment);
    box-shadow: 0 0 100px rgba(0,0,0,0.3) inset;
    border: 2px solid var(--ll-border);
    max-width: 1400px;
    margin: 1rem auto;
    padding: 1rem;
}

@media (min-width: 768px) {
    .parchment-container {
        margin: 2rem auto;
        padding: 3rem;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.revolutionary-button,
button.revolutionary-button,
input[type="submit"].revolutionary-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    font-family: var(--ll-font-title);
    color: var(--ll-parchment);
    background-color: var(--ll-red);
    border: 2px solid var(--ll-ink);
    padding: 0.75rem 2rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--ll-shadow);
    transition: all 0.1s ease-in-out;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    border-radius: 0;
    line-height: 1.4;
}

.revolutionary-button:hover,
button.revolutionary-button:hover,
input[type="submit"].revolutionary-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    transform: translate(3px, 3px);
    box-shadow: 0px 0px 0px var(--ll-ink);
    color: var(--ll-parchment);
    background-color: var(--ll-red);
}

.revolutionary-button-secondary {
    background-color: transparent;
    color: var(--ll-ink);
    border-style: dashed;
}

.revolutionary-button-secondary:hover {
    background-color: var(--ll-red);
    color: var(--ll-parchment);
    border-style: solid;
}

.revolutionary-button-small,
.woocommerce ul.products li.product .button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    box-shadow: var(--ll-shadow-small);
}

.revolutionary-button-small:hover,
.woocommerce ul.products li.product .button:hover {
    transform: translate(2px, 2px);
    box-shadow: 0px 0px 0px var(--ll-ink);
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="url"],
textarea,
select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    width: 100%;
    padding: 0.5rem;
    font-family: var(--ll-font-body);
    font-size: 1rem;
    color: var(--ll-ink);
    background-color: var(--ll-parchment-light);
    border: 1px solid var(--ll-gold);
    transition: border-color var(--ll-transition);
}

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--ll-red);
    border-color: var(--ll-red);
}

label {
    display: block;
    margin-bottom: 0.25rem;
    font-family: var(--ll-font-title);
    color: var(--ll-ink);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px dashed var(--ll-gold);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-branding img {
    height: 48px;
    width: auto;
}

.site-title {
    font-family: var(--ll-font-title);
    font-size: 1.5rem;
    color: rgba(140, 28, 19, 0.8);
    margin: 0;
}

@media (min-width: 768px) {
    .site-title {
        font-size: 1.875rem;
    }
}

.site-title a {
    color: inherit;
}

.site-title a:hover {
    color: var(--ll-red);
}

/* Main Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    font-family: var(--ll-font-title);
    font-size: 1.1rem;
    color: var(--ll-ink);
    transition: color var(--ll-transition);
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    color: var(--ll-red);
}

/* Header Cart */
.header-cart {
    position: relative;
    display: flex;
    align-items: center;
}

.header-cart svg {
    width: 24px;
    height: 24px;
    stroke: var(--ll-ink);
}

.header-cart:hover svg {
    stroke: var(--ll-red);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: var(--ll-red);
    color: var(--ll-parchment);
    font-family: var(--ll-font-title);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.menu-toggle svg {
    width: 32px;
    height: 32px;
    stroke: var(--ll-ink);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    text-align: center;
    padding: 3rem 1rem;
}

.hero-section h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-section h1 {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-section h1 {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-tagline {
    font-size: 1.1rem;
    opacity: 0.7;
}

/* --------------------------------------------------------------------------
   Section Divider
   -------------------------------------------------------------------------- */
.section-divider {
    height: 3px;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='3' viewBox='0 0 100 3' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 1.5H100' stroke='%238a6d3b' stroke-width='1'/%3E%3Cpath d='M25 1.5L28 0L31 1.5L28 3L25 1.5Z' fill='%238a6d3b'/%3E%3Cpath d='M75 1.5L78 0L81 1.5L78 3L75 1.5Z' fill='%238a6d3b'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-position: center;
    border: 0;
    margin: 3rem 0;
}

/* --------------------------------------------------------------------------
   Section Titles
   -------------------------------------------------------------------------- */
.section-title {
    font-family: var(--ll-font-title);
    font-size: 2.5rem;
    color: var(--ll-ink-light);
    text-align: center;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    text-align: center;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 2rem;
}

/* --------------------------------------------------------------------------
   Feature & Proclamation Boxes
   -------------------------------------------------------------------------- */
.feature-box {
    background-color: var(--ll-parchment-light);
    border: 4px double var(--ll-gold);
    padding: 2rem;
    text-align: center;
}

.feature-box h3 {
    font-family: var(--ll-font-title);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.proclamation-box {
    background-color: var(--ll-parchment-light);
    border: 2px solid var(--ll-gold);
    padding: 2rem;
}

.proclamation-box h3 {
    font-family: var(--ll-font-title);
    font-size: 2rem;
    color: var(--ll-red);
}

/* --------------------------------------------------------------------------
   Category Filter
   -------------------------------------------------------------------------- */
.product-categories-filter {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.category-btn {
    font-family: var(--ll-font-title);
    color: var(--ll-ink);
    background-color: transparent;
    border: 2px dashed var(--ll-gold);
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--ll-transition);
    cursor: pointer;
}

.category-btn:hover,
.category-btn.active {
    background-color: var(--ll-red);
    color: var(--ll-parchment);
    border-color: var(--ll-red);
    border-style: solid;
}

/* --------------------------------------------------------------------------
   WooCommerce Product Grid
   -------------------------------------------------------------------------- */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (min-width: 640px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(4, 1fr);
    }
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none;
}

/* Product Card */
.woocommerce ul.products li.product {
    float: none;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: var(--ll-parchment-light);
    border: 2px solid var(--ll-gold);
    transition: all 0.2s ease-in-out;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.woocommerce ul.products li.product:hover {
    border-color: var(--ll-red);
    box-shadow: 0 4px 12px rgba(74, 44, 42, 0.15);
}

/* Staggered animation */
.woocommerce ul.products li.product:nth-child(1) { animation-delay: 0.05s; }
.woocommerce ul.products li.product:nth-child(2) { animation-delay: 0.1s; }
.woocommerce ul.products li.product:nth-child(3) { animation-delay: 0.15s; }
.woocommerce ul.products li.product:nth-child(4) { animation-delay: 0.2s; }
.woocommerce ul.products li.product:nth-child(5) { animation-delay: 0.25s; }
.woocommerce ul.products li.product:nth-child(6) { animation-delay: 0.3s; }
.woocommerce ul.products li.product:nth-child(7) { animation-delay: 0.35s; }
.woocommerce ul.products li.product:nth-child(8) { animation-delay: 0.4s; }

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

/* Product Image */
.woocommerce ul.products li.product a img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    margin: 0;
    background-color: var(--ll-parchment);
    border-bottom: 2px solid var(--ll-gold);
}

/* Sale Badge */
.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    left: auto;
    background-color: var(--ll-success);
    color: white;
    padding: 0.25rem 0.5rem;
    font-family: var(--ll-font-title);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    min-width: auto;
    min-height: auto;
    line-height: 1.5;
    z-index: 5;
}

/* Product Info */
.woocommerce ul.products li.product .product-info {
    padding: 1.25rem;
}

.woocommerce ul.products li.product .product-category {
    font-family: var(--ll-font-title);
    font-size: 0.75rem;
    color: var(--ll-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.25rem;
    display: block;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--ll-font-title);
    font-size: 1.25rem;
    color: var(--ll-ink-light);
    margin: 0 0 0.5rem;
    padding: 0;
    line-height: 1.3;
}

.woocommerce ul.products li.product .product-description {
    font-size: 0.95rem;
    color: var(--ll-ink);
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Product Footer */
.woocommerce ul.products li.product .product-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 1.25rem 1.25rem;
}

.woocommerce ul.products li.product .price {
    font-family: var(--ll-font-title);
    font-size: 1.5rem;
    color: var(--ll-red);
    margin: 0;
}

.woocommerce ul.products li.product .price del {
    color: var(--ll-gold);
    font-size: 1rem;
    margin-right: 0.5rem;
}

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

/* --------------------------------------------------------------------------
   Single Product Page
   -------------------------------------------------------------------------- */
.single-product .product {
    max-width: 1200px;
    margin: 0 auto;
}

.single-product .woocommerce-product-gallery {
    background-color: var(--ll-parchment);
    border: 2px solid var(--ll-gold);
}

.single-product .summary {
    padding: 2rem;
    background-color: var(--ll-parchment-light);
    border: 2px solid var(--ll-gold);
}

.single-product .product_title {
    font-family: var(--ll-font-title);
    font-size: 2rem;
    color: var(--ll-ink-light);
    margin-bottom: 1rem;
}

.single-product .price {
    font-family: var(--ll-font-title);
    font-size: 1.75rem;
    color: var(--ll-red);
    margin-bottom: 1.5rem;
}

.single-product .woocommerce-product-details__short-description {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.single-product .quantity input {
    width: 80px;
    text-align: center;
}

.single-product .single_add_to_cart_button {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 2rem;
}

/* Product Tabs */
.woocommerce-tabs ul.tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    border-bottom: 2px solid var(--ll-gold);
}

.woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0;
}

.woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 1rem 1.5rem;
    font-family: var(--ll-font-title);
    font-size: 1rem;
    color: var(--ll-ink);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.woocommerce-tabs ul.tabs li.active a {
    color: var(--ll-red);
    border-bottom-color: var(--ll-red);
}

.woocommerce-tabs .panel {
    padding: 2rem 0;
}

/* --------------------------------------------------------------------------
   Cart Page
   -------------------------------------------------------------------------- */
.woocommerce-cart .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
}

.woocommerce table.shop_table {
    border: 2px solid var(--ll-gold);
    border-collapse: collapse;
    background-color: var(--ll-parchment-light);
}

.woocommerce table.shop_table th {
    font-family: var(--ll-font-title);
    font-size: 1rem;
    color: var(--ll-ink-light);
    background-color: var(--ll-parchment);
    padding: 1rem;
    border: none;
    border-bottom: 2px solid var(--ll-gold);
}

.woocommerce table.shop_table td {
    padding: 1.5rem 1rem;
    border: none;
    border-bottom: 1px solid var(--ll-gold);
    color: var(--ll-ink);
    vertical-align: middle;
}

.woocommerce table.shop_table img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid var(--ll-gold);
}

.woocommerce table.shop_table .product-name a {
    font-family: var(--ll-font-title);
    font-size: 1.1rem;
    color: var(--ll-ink-light);
}

.woocommerce table.shop_table .product-price,
.woocommerce table.shop_table .product-subtotal {
    font-family: var(--ll-font-title);
    color: var(--ll-red);
}

.woocommerce .cart_totals {
    background-color: var(--ll-parchment-light);
    border: 2px solid var(--ll-gold);
    padding: 2rem;
    margin-top: 2rem;
}

.woocommerce .cart_totals h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.woocommerce .cart_totals table {
    border: none;
    background: transparent;
}

.woocommerce .cart_totals table th,
.woocommerce .cart_totals table td {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--ll-gold);
    background: transparent;
}

.woocommerce .wc-proceed-to-checkout .checkout-button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   Checkout Page
   -------------------------------------------------------------------------- */
.woocommerce-checkout .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
}

.woocommerce form.checkout h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px dashed var(--ll-gold);
}

.woocommerce form .form-row {
    margin-bottom: 1.5rem;
}

.woocommerce-checkout-review-order {
    background-color: var(--ll-parchment-light);
    border: 2px solid var(--ll-gold);
    padding: 2rem;
}

.woocommerce #payment {
    background: transparent;
    border-radius: 0;
}

.woocommerce #place_order {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   Promo Banner
   -------------------------------------------------------------------------- */
.promo-banner {
    background-color: var(--ll-ink);
    border: 4px double var(--ll-gold);
    color: var(--ll-parchment);
    padding: 2rem;
    text-align: center;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .promo-banner {
        padding: 3rem;
    }
}

.promo-banner h3 {
    font-family: var(--ll-font-title);
    font-size: 1.5rem;
    color: var(--ll-parchment);
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .promo-banner h3 {
        font-size: 2rem;
    }
}

.promo-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Coming Soon Stamp - Inline */
.coming-soon-stamp-inline {
    display: inline-block;
    transform: rotate(-3deg);
    margin-bottom: 1rem;
}

.coming-soon-stamp-inline span {
    display: inline-block;
    font-family: var(--ll-font-title);
    font-size: 1.25rem;
    text-transform: uppercase;
    color: var(--ll-red);
    border: 4px solid var(--ll-red);
    padding: 0.4rem 1.25rem;
    background-color: var(--ll-parchment);
    border-radius: 6px;
    box-shadow: inset 0 0 15px rgba(140, 28, 19, 0.1);
    letter-spacing: 2px;
}

@media (min-width: 768px) {
    .coming-soon-stamp-inline span {
        font-size: 1.75rem;
        padding: 0.5rem 1.5rem;
        border-width: 5px;
    }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 2px dashed var(--ll-gold);
}

.site-footer .footer-tagline {
    font-family: var(--ll-font-title);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.site-footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.site-footer .footer-links a {
    font-family: var(--ll-font-title);
    font-size: 1.1rem;
}

.site-footer .footer-links svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.site-footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.site-footer .footer-bottom img {
    height: 24px;
    width: auto;
}

/* --------------------------------------------------------------------------
   WooCommerce Notices
   -------------------------------------------------------------------------- */
.woocommerce-message,
.woocommerce-info {
    background-color: var(--ll-parchment-light);
    border: 2px solid var(--ll-gold);
    border-left-width: 4px;
    border-left-color: var(--ll-success);
    color: var(--ll-ink);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}

.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--ll-success);
}

.woocommerce-error {
    background-color: var(--ll-parchment-light);
    border: 2px solid var(--ll-red);
    color: var(--ll-ink);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    list-style: none;
}

/* --------------------------------------------------------------------------
   Pagination
   -------------------------------------------------------------------------- */
.woocommerce-pagination {
    margin-top: 3rem;
    text-align: center;
}

.woocommerce-pagination ul {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    display: block;
    padding: 0.5rem 1rem;
    border: 2px dashed var(--ll-gold);
    color: var(--ll-ink);
    font-family: var(--ll-font-title);
}

.woocommerce-pagination ul li span.current,
.woocommerce-pagination ul li a:hover {
    background-color: var(--ll-red);
    border-color: var(--ll-red);
    border-style: solid;
    color: var(--ll-parchment);
}

/* --------------------------------------------------------------------------
   Mobile Menu
   -------------------------------------------------------------------------- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--ll-parchment);
    z-index: 1001;
    transition: left 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu a {
    font-family: var(--ll-font-title);
    font-size: 2rem;
    margin: 1rem 0;
}

.mobile-menu .close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    background: none;
    border: none;
    color: var(--ll-ink);
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   Toast Notification
   -------------------------------------------------------------------------- */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--ll-parchment-light);
    border: 2px solid var(--ll-success);
    padding: 1rem 1.5rem;
    color: var(--ll-ink);
    font-family: var(--ll-font-body);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--ll-shadow);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast strong {
    font-family: var(--ll-font-title);
    color: var(--ll-success);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .main-navigation ul {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .site-header {
        flex-wrap: nowrap;
    }
}

/* --------------------------------------------------------------------------
   WordPress Core Styles
   -------------------------------------------------------------------------- */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
    opacity: 0.8;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
