/*
Theme Name: BruidsmodeSale
Theme URI: https://bruidsmodesale.nl
Author: Hugo
Author URI: https://winkelvanhugo.nl
Description: Elegante bruidsmode outlet theme voor WooCommerce. Designer bruidsjurken van Sincerity, Maggie Sottero, Pronovias en Lady Bird.
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
Text Domain: bruidsmodesale
Tags: e-commerce, woocommerce, bridal, wedding, custom-colors, custom-logo, featured-images

BruidsmodeSale WordPress Theme
Copyright 2024 WinkelvanHugo.nl
*/

/* ==========================================================================
   CSS Variables & Base
   ========================================================================== */

:root {
    /* Accessible color palette - WCAG AA compliant */
    --champagne: #F5E6D3;
    --blush: #F8E8E0;
    --rose: #D4A5A5;
    --dusty-rose: #9E7B78;      /* Darker for better contrast on white */
    --dusty-rose-light: #C9A9A6; /* Original for backgrounds */
    --warm-taupe: #6B5B4F;      /* Darker for text - 4.5:1 on white */
    --charcoal: #2D2D2D;        /* Darker for better contrast */
    --soft-black: #1A1A1A;      /* Near black for headings */
    --cream: #FFFEF9;
    --ivory: #FFFFF0;
    --gold: #8B6914;            /* Darker gold for text contrast */
    --soft-gold: #D4B896;
    --white: #FFFFFF;
    --success: #1B8F4B;         /* Darker green for contrast */
    --error: #C53030;           /* Accessible red */
    
    /* Text colors with guaranteed contrast */
    --text-primary: #1A1A1A;    /* 15:1 on white */
    --text-secondary: #4A4A4A;  /* 7:1 on white */
    --text-muted: #666666;      /* 5.7:1 on white - WCAG AA */
    --text-on-dark: #FFFFFF;
    
    /* Interactive colors */
    --link-color: #8B5A5A;      /* 4.5:1 on white */
    --link-hover: #5C3D3D;      /* Darker on hover */
    --focus-ring: #2563EB;      /* Blue focus ring for accessibility */
    
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --container-width: 1400px;
    --container-narrow: 900px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.3;
    color: var(--soft-black);
    margin-top: 0;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.4rem; }

p {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--link-hover);
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--focus-ring);
    outline-offset: 2px;
}

/* Skip link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--soft-black);
    color: var(--white);
    padding: 8px 16px;
    z-index: 10000;
    text-decoration: none;
}

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

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

ul, ol {
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 60px;
    height: 1px;
    background: var(--dusty-rose);
    margin: 1.5rem auto;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 254, 249, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 169, 166, 0.2);
    transition: all 0.4s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Logo */
.site-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--soft-black);
    text-decoration: none;
    letter-spacing: 0.1em;
}

.site-logo span {
    color: var(--dusty-rose);
    font-style: italic;
}

.site-logo img {
    max-height: 50px;
    width: auto;
}

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

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

.main-navigation a {
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--charcoal);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--dusty-rose);
    transition: width 0.3s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
    color: var(--dusty-rose);
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after,
.main-navigation .current_page_item > a::after {
    width: 100%;
}

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

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--charcoal);
    margin: 5px 0;
    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Header Cart */
.header-cart {
    margin-left: 2rem;
}

.header-cart a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--charcoal);
}

.header-cart .cart-count {
    background: var(--dusty-rose);
    color: white;
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }
    
    .main-navigation ul {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        opacity: 0;
        transition: all 0.4s ease;
        overflow-y: auto;
    }
    
    .main-navigation.toggled ul {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn,
.button,
button[type="submit"],
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s ease;
    line-height: 1;
}

.btn-primary,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background: var(--soft-black);
    color: var(--cream);
    border-color: var(--soft-black);
}

.btn-primary:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
    background: transparent;
    color: var(--soft-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-secondary,
.woocommerce a.button,
.woocommerce button.button {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--charcoal);
}

.btn-secondary:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
    background: var(--charcoal);
    color: white;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--success);
    color: white;
    border-color: var(--success);
}

.btn-whatsapp:hover {
    background: #156B3A;
    border-color: #156B3A;
    color: white;
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--blush) 0%, var(--champagne) 50%, var(--cream) 100%);
    overflow: hidden;
    padding-top: 70px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(232, 196, 196, 0.3) 0%, transparent 70%);
    animation: heroFloat 20s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
    animation: heroFloat 25s ease-in-out infinite reverse;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 20px) rotate(5deg); }
}

.hero-content {
    text-align: center;
    z-index: 10;
    padding: 2rem;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(158, 123, 120, 0.15);
    border: 1px solid var(--dusty-rose);
    border-radius: 30px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease 0.2s both;
    color: var(--text-primary);
}

.hero-content h1 em {
    font-style: italic;
    color: var(--dusty-rose);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

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

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

/* ==========================================================================
   Trust Bar
   ========================================================================== */

.trust-bar {
    background: var(--soft-black);
    padding: 1.5rem 0;
}

.trust-bar-inner {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.trust-item svg {
    width: 24px;
    height: 24px;
    fill: var(--soft-gold);
}

@media (max-width: 768px) {
    .trust-bar-inner {
        gap: 1.5rem 3rem;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   Brand Cards
   ========================================================================== */

.brands-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.brand-card {
    background: white;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--dusty-rose);
}

.brand-card h3 {
    margin-bottom: 1rem;
}

.brand-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.brand-card .price-range {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--blush);
    font-size: 0.85rem;
    color: var(--link-color);
    font-weight: 600;
}

/* ==========================================================================
   WooCommerce Shop & Products
   ========================================================================== */

.woocommerce-page {
    padding-top: 100px;
}

/* Shop Header */
.shop-header {
    background: linear-gradient(135deg, var(--blush) 0%, var(--champagne) 100%);
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.shop-header h1 {
    margin-bottom: 1rem;
}

.shop-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Filters Sidebar */
.shop-filters {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.shop-filters h3,
.filters-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--soft-black);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--blush);
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

/* Range Sliders */
.filter-slider,
.range-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 4px;
    background: var(--blush);
    border-radius: 2px;
    outline: none;
    margin: 0.5rem 0;
}

.filter-slider::-webkit-slider-thumb,
.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--dusty-rose);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(201, 169, 166, 0.5);
    transition: transform 0.2s ease;
}

.filter-slider::-webkit-slider-thumb:hover,
.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.filter-slider::-moz-range-thumb,
.range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--dusty-rose);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.filter-values {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--warm-taupe);
}

/* Checkbox Filters */
.filter-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--blush);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.filter-checkbox:hover,
.filter-checkbox.active {
    background: var(--dusty-rose);
    color: white;
}

.filter-checkbox input[type="checkbox"] {
    display: none;
}

/* Products Grid */
.woocommerce ul.products,
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce ul.products li.product,
.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product:hover,
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Product Image */
.woocommerce ul.products li.product a img,
.product-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image-placeholder {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--blush) 0%, var(--champagne) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

/* Sale Badge */
.woocommerce span.onsale,
.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--dusty-rose);
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
    font-weight: 500;
    z-index: 10;
    min-width: auto;
    min-height: auto;
    line-height: 1.4;
}

/* Product Info */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.product-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--soft-black);
    margin: 0 0 0.5rem;
    padding: 0;
}

.product-info {
    padding: 1.5rem;
}

.product-brand {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--link-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Product Price */
.woocommerce ul.products li.product .price,
.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
}

.woocommerce ul.products li.product .price del,
.product-price .original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.woocommerce ul.products li.product .price ins,
.product-price .sale {
    color: var(--link-color);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    background: none;
}

.product-sizes {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--warm-taupe);
}

/* Add to Cart Button in Loop */
.woocommerce ul.products li.product .button {
    margin-top: 1rem;
    width: 100%;
}

/* ==========================================================================
   Single Product Page
   ========================================================================== */

.single-product {
    padding-top: 100px;
}

.single-product .product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 3rem 2rem;
}

@media (max-width: 991px) {
    .single-product .product {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Product Gallery */
.woocommerce-product-gallery {
    position: relative;
}

.woocommerce-product-gallery__image img {
    width: 100%;
    border-radius: 8px;
}

/* Product Summary */
.single-product .summary {
    padding: 1rem 0;
}

.single-product .product_title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.single-product .price {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.single-product .price del {
    color: var(--warm-taupe);
    font-size: 1.2rem;
}

.single-product .price ins {
    color: var(--dusty-rose);
    font-weight: 600;
    text-decoration: none;
}

.woocommerce-product-details__short-description {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--blush);
}

/* Product Meta */
.product_meta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--blush);
    font-size: 0.9rem;
    color: var(--warm-taupe);
}

.product_meta > span {
    display: block;
    margin-bottom: 0.5rem;
}

.product_meta a {
    color: var(--dusty-rose);
}

/* Product Tabs */
.woocommerce-tabs {
    margin-top: 4rem;
    grid-column: 1 / -1;
}

.woocommerce-tabs ul.tabs {
    display: flex;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid var(--blush);
}

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

.woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--warm-taupe);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

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

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

/* ==========================================================================
   Maatgids Page
   ========================================================================== */

.maatgids-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 991px) {
    .maatgids-content {
        grid-template-columns: 1fr;
    }
}

.measurement-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.measurement-card:hover {
    transform: translateY(-3px);
}

.measurement-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.measurement-number {
    width: 36px;
    height: 36px;
    background: var(--dusty-rose);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    flex-shrink: 0;
}

.measurement-tip {
    background: var(--blush);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--dusty-rose);
    font-style: italic;
    margin-top: 1rem;
}

.measurement-illustration {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: sticky;
    top: 120px;
}

/* Size Table */
.size-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.size-table th {
    background: var(--dusty-rose);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.size-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--blush);
}

.size-table tr:last-child td {
    border-bottom: none;
}

.size-table tr:hover td {
    background: var(--blush);
}

/* ==========================================================================
   Content Pages
   ========================================================================== */

.page-template-default,
.single-post {
    padding-top: 100px;
}

.page-header,
.entry-header {
    background: linear-gradient(135deg, var(--blush) 0%, var(--champagne) 100%);
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1,
.entry-title {
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--warm-taupe);
    max-width: 600px;
    margin: 0 auto;
}

.page-content,
.entry-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.entry-content h2 {
    margin-top: 3rem;
}

.entry-content h3 {
    margin-top: 2rem;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 991px) {
    .contact-section {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--blush);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--warm-taupe);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.visit-info {
    background: linear-gradient(135deg, var(--blush) 0%, var(--champagne) 100%);
    padding: 3rem;
    border-radius: 12px;
}

.visit-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--soft-black);
    color: var(--white);
    padding: 5rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.footer-brand span {
    color: var(--dusty-rose);
    font-style: italic;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.site-footer h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    color: var(--cream);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-legal {
    max-width: var(--container-width);
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 169, 166, 0.2);
    text-align: center;
}

.footer-legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 2rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: var(--container-width);
    margin: 1.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 169, 166, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--warm-taupe);
}

/* ==========================================================================
   WhatsApp Float Button
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(27, 143, 75, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(27, 143, 75, 0.5);
}

/* Accessibility: add label for screen readers */
.whatsapp-float[aria-label] {
    position: relative;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */

.woocommerce-breadcrumb,
.breadcrumb {
    padding: 1rem 2rem;
    background: var(--blush);
    font-size: 0.85rem;
    max-width: 100%;
}

.woocommerce-breadcrumb a,
.breadcrumb a {
    color: var(--warm-taupe);
}

.woocommerce-breadcrumb a:hover,
.breadcrumb a:hover {
    color: var(--dusty-rose);
}

/* ==========================================================================
   Cart & Checkout
   ========================================================================== */

.woocommerce-cart,
.woocommerce-checkout {
    padding-top: 100px;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 3rem 2rem;
}

.woocommerce table.shop_table {
    border: 1px solid var(--blush);
    border-radius: 8px;
    overflow: hidden;
}

.woocommerce table.shop_table th {
    background: var(--blush);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.woocommerce table.shop_table td {
    border-top: 1px solid var(--blush);
}

.woocommerce .cart_totals,
.woocommerce-checkout #order_review {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Checkout Form */
.woocommerce form .form-row label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    border: 1px solid var(--blush);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: var(--dusty-rose);
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 169, 166, 0.2);
}

/* ==========================================================================
   WooCommerce Messages
   ========================================================================== */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-radius: 8px;
    border-top: none;
    border-left: 4px solid;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}

.woocommerce-message {
    background: rgba(37, 211, 102, 0.1);
    border-color: var(--success);
}

.woocommerce-info {
    background: var(--blush);
    border-color: var(--dusty-rose);
}

.woocommerce-error {
    background: rgba(232, 196, 196, 0.3);
    border-color: var(--rose);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.hidden { display: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    
    .hero-section {
        min-height: auto;
        padding: 6rem 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ==========================================================================
   Accessibility Enhancements
   ========================================================================== */

/* Screen reader only text */
.screen-reader-text,
.sr-only {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus,
.sr-only:focus {
    background-color: var(--cream);
    clip: auto !important;
    clip-path: none;
    color: var(--text-primary);
    display: block;
    font-size: 1rem;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Focus visible - better keyboard navigation */
:focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 2px;
}

/* Remove outline for mouse users */
:focus:not(:focus-visible) {
    outline: none;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #000000;
        --text-secondary: #1A1A1A;
        --link-color: #0000EE;
        --link-hover: #551A8B;
    }
    
    .btn-primary,
    .btn-secondary {
        border-width: 3px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-section::before,
    .hero-section::after {
        animation: none;
    }
}

/* Ensure minimum touch target size (44x44px) for mobile */
@media (max-width: 768px) {
    .btn,
    button,
    a.btn,
    input[type="submit"],
    .menu-toggle {
        min-height: 44px;
        min-width: 44px;
    }
    
    .footer-links a {
        display: block;
        padding: 0.5rem 0;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .site-header,
    .site-footer,
    .whatsapp-float {
        display: none;
    }
    
    body {
        background: white;
    }
}
