/* L'Atelier Parisien - Artisanal French Shoe E-commerce */

/* CSS Variables - French Artisan Color Palette */
:root {
    --midnight-leather: #2C3E50;
    --brass-hardware: #C9A961;
    --saddle-brown: #8B4513;
    --beige-canvas: #F5F5DC;
    --noir: #1A1A1A;
    --cream: #FAF9F6;
    --tan-leather: #D2691E;

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Crimson Text', serif;
    --font-sans: 'DM Sans', sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 80px 0;
    --element-spacing: 2rem;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--midnight-leather);
    background-color: var(--cream);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.8rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Header Styles */
.main-header {
    background: var(--cream);
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--midnight-leather);
    color: var(--cream);
    padding: 8px 0;
    font-family: var(--font-sans);
    font-size: 0.9rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shipping-notice {
    margin: 0;
    font-size: 0.85rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-actions svg {
    fill: var(--cream);
    color: var(--cream);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cream);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.header-phone:hover {
    color: var(--brass-hardware);
}

.cart-toggle {
    background: none;
    border: none;
    color: var(--cream);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.cart-toggle:hover {
    color: var(--brass-hardware);
}

.cart-count {
    background: var(--brass-hardware);
    color: var(--midnight-leather);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 500;
}

.header-main {
    padding: 20px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo a {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--midnight-leather);
    text-decoration: none;
    display: block;
    line-height: 1;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--brass-hardware);
    font-style: italic;
    display: block;
    margin-top: 4px;
}

.main-navigation .nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--midnight-leather);
    text-decoration: none;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--brass-hardware);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brass-hardware);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(26, 26, 26, 0.4), rgba(26, 26, 26, 0.4)),
                url('../images/hero-workshop.jpg') center/cover;
    color: var(--cream);
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--brass-hardware);
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Buttons */
.btn-artisan {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--brass-hardware);
    color: var(--midnight-leather);
    padding: 16px 32px;
    border: none;
    border-radius: 0;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-artisan:hover {
    background: var(--midnight-leather);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--cream);
}

.btn-secondary:hover {
    background: var(--cream);
    color: var(--midnight-leather);
}

/* Featured Collection */
.featured-collection {
    padding: var(--section-padding);
    background: var(--cream);
}

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

.section-badge {
    display: inline-block;
    background: var(--brass-hardware);
    color: var(--midnight-leather);
    padding: 8px 20px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--midnight-leather);
}

.section-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--saddle-brown);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--brass-hardware);
    color: var(--midnight-leather);
    padding: 6px 12px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 25px;
}

.product-name {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--midnight-leather);
}

.product-type {
    color: var(--saddle-brown);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.product-details {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--midnight-leather);
}

.product-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--midnight-leather);
    margin-bottom: 1rem;
}

.price-old {
    text-decoration: line-through;
    color: var(--saddle-brown);
    margin-right: 10px;
}

.product-colors {
    display: flex;
    gap: 8px;
}

.color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--beige-canvas);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.color-swatch:hover {
    transform: scale(1.2);
}

/* Contact Form */
.artisan-contact-form {
    padding: var(--section-padding);
    background: var(--beige-canvas);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.1);
}

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

.form-badge {
    display: inline-block;
    background: var(--brass-hardware);
    color: var(--midnight-leather);
    padding: 8px 20px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.form-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 2rem;
}

.form-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--midnight-leather);
    border-bottom: 2px solid var(--brass-hardware);
    padding-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--midnight-leather);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--beige-canvas);
    background: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brass-hardware);
}

.full-width {
    grid-column: 1 / -1;
}

.form-preferences {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    cursor: pointer;
    font-family: var(--font-sans);
}

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

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--brass-hardware);
    position: relative;
    background: white;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--brass-hardware);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.form-footer {
    text-align: center;
    margin-top: 2rem;
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--saddle-brown);
}

/* Footer */
.artisan-footer {
    background: var(--midnight-leather);
    color: var(--cream);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--brass-hardware);
}

.footer-description {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.craft-badges {
    display: flex;
    gap: 10px;
}

.badge {
    background: var(--brass-hardware);
    color: var(--midnight-leather);
    padding: 6px 12px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--brass-hardware);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--brass-hardware);
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(249, 249, 246, 0.1);
    border-bottom: 1px solid rgba(249, 249, 246, 0.1);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    padding: 12px 20px;
    border: none;
    background: white;
    min-width: 300px;
    font-family: var(--font-body);
}

.newsletter-form button {
    background: var(--brass-hardware);
    color: var(--midnight-leather);
    border: none;
    padding: 12px 25px;
    font-family: var(--font-sans);
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--tan-leather);
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(249, 249, 246, 0.7);
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: rgba(249, 249, 246, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--brass-hardware);
}

.footer-bottom {
    background: rgba(26, 26, 26, 0.5);
    padding: 20px 0;
    margin-top: 2rem;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-methods {
    display: flex;
    gap: 15px;
}

.payment-badge {
    background: white;
    color: var(--midnight-leather);
    padding: 4px 8px;
    font-size: 0.7rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .form-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-newsletter {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .newsletter-form input {
        min-width: 250px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
/*
 Product Card Styles */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--brass-hardware);
    color: var(--midnight-leather);
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 20px;
    z-index: 2;
}

.product-badge.new {
    background: #27ae60;
    color: white;
}

.product-badge.limited {
    background: #e74c3c;
    color: white;
}

.product-info {
    padding: 25px;
}

.product-link {
    text-decoration: none;
    color: inherit;
}

.product-name {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--midnight-leather);
    transition: color 0.3s ease;
}

.product-link:hover .product-name {
    color: var(--brass-hardware);
}

.product-type {
    color: var(--saddle-brown);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1rem;
}

.product-material,
.product-craft {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--saddle-brown);
}

.product-price {
    margin-bottom: 1rem;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--midnight-leather);
}

.product-colors {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.color-swatch:hover {
    transform: scale(1.1);
    border-color: var(--brass-hardware);
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.size-selector {
    flex: 1;
    padding: 10px;
    border: 2px solid var(--beige-canvas);
    border-radius: 4px;
    background: white;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    cursor: pointer;
}

.size-selector:focus {
    outline: none;
    border-color: var(--brass-hardware);
}

.add-to-cart-btn {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--brass-hardware);
    color: var(--midnight-leather);
    border: none;
    padding: 12px 16px;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: var(--midnight-leather);
    color: var(--cream);
    transform: translateY(-1px);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

.add-to-cart-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Basket Dropdown */
.basket-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 400px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
    max-height: 500px;
    overflow-y: auto;
}

.basket-dropdown.show {
    display: block;
}

.basket-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: var(--beige-canvas);
}

.basket-header h3 {
    margin: 0;
    color: var(--midnight-leather);
    font-size: 1.2rem;
}

.basket-items {
    max-height: 300px;
    overflow-y: auto;
}

.basket-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.basket-item-image {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
}

.basket-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.basket-item-info {
    flex: 1;
}

.basket-item-name {
    font-weight: 500;
    color: var(--midnight-leather);
    margin-bottom: 5px;
}

.basket-item-details {
    font-size: 0.85rem;
    color: var(--saddle-brown);
}

.basket-item-price {
    font-weight: 600;
    color: var(--midnight-leather);
}

.basket-item-remove {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.basket-item-remove:hover {
    background: #f8f9fa;
}

.basket-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: var(--beige-canvas);
}

.basket-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--midnight-leather);
}

.basket-actions {
    display: flex;
    gap: 10px;
}

.btn-basket {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-basket.primary {
    background: var(--brass-hardware);
    color: var(--midnight-leather);
}

.btn-basket.primary:hover {
    background: var(--midnight-leather);
    color: var(--cream);
}

.btn-basket.secondary {
    background: transparent;
    color: var(--midnight-leather);
    border: 2px solid var(--midnight-leather);
}

.btn-basket.secondary:hover {
    background: var(--midnight-leather);
    color: var(--cream);
}

.basket-empty {
    padding: 40px 20px;
    text-align: center;
    color: var(--saddle-brown);
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--brass-hardware);
    color: var(--midnight-leather);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 2000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification.error {
    background: #e74c3c;
    color: white;
}

.notification.success {
    background: #27ae60;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .basket-dropdown {
        width: 300px;
        right: -50px;
    }

    .product-actions {
        flex-direction: column;
    }

    .size-selector,
    .add-to-cart-btn {
        width: 100%;
    }
}/* Legal
Pages Styles */
.legal-header {
    padding: 80px 0;
    background: var(--beige-canvas);
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
}

.legal-content {
    padding: 80px 0;
    background: var(--cream);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.legal-section {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    color: var(--midnight-leather);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--brass-hardware);
    display: inline-block;
}

.legal-section h3 {
    color: var(--saddle-brown);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: var(--midnight-leather);
    font-size: 1.05rem;
}

.legal-section ul,
.legal-section ol {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    color: var(--midnight-leather);
}

.legal-section li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.legal-section li strong {
    color: var(--saddle-brown);
}

.legal-highlight {
    background: var(--beige-canvas);
    padding: 25px;
    border-left: 4px solid var(--brass-hardware);
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.legal-highlight p {
    margin: 0;
    line-height: 1.6;
}

.legal-highlight p:not(:last-child) {
    margin-bottom: 10px;
}

.legal-highlight strong {
    color: var(--midnight-leather);
}

.legal-contact-box {
    background: linear-gradient(135deg, var(--beige-canvas) 0%, #f8f6f0 100%);
    padding: 30px;
    border-left: 4px solid var(--brass-hardware);
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.legal-contact-box p {
    margin: 0;
    line-height: 1.6;
}

.legal-contact-box p:not(:last-child) {
    margin-bottom: 8px;
}

.legal-link {
    color: var(--brass-hardware);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--saddle-brown);
    text-decoration: underline;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.legal-table th {
    background: var(--beige-canvas);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--midnight-leather);
    border-bottom: 2px solid var(--brass-hardware);
}

.legal-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    color: var(--midnight-leather);
}

.legal-table tr:hover {
    background: #fafafa;
}

.legal-navigation {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.legal-nav-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-nav-links a {
    color: var(--saddle-brown);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.legal-nav-links a:hover,
.legal-nav-links a.active {
    background: var(--brass-hardware);
    color: var(--midnight-leather);
}

.legal-toc {
    background: var(--beige-canvas);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.legal-toc h3 {
    color: var(--midnight-leather);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.legal-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-toc li {
    margin-bottom: 8px;
}

.legal-toc a {
    color: var(--saddle-brown);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.legal-toc a:hover {
    color: var(--brass-hardware);
}

.legal-last-updated {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--saddle-brown);
    border: 1px solid #e9ecef;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-container {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.2rem;
    }

    .legal-highlight,
    .legal-contact-box {
        padding: 20px;
        margin: 1rem 0;
    }

    .legal-nav-links {
        gap: 15px;
    }

    .legal-nav-links a {
        font-size: 0.9rem;
        padding: 6px 12px;
    }

    .legal-table {
        font-size: 0.9rem;
    }

    .legal-table th,
    .legal-table td {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 40px 0;
    }

    .legal-container {
        padding: 20px 15px;
        margin: 0 5px;
    }

    .legal-section {
        margin-bottom: 2.5rem;
    }

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

    .legal-nav-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}/
* Additional styles for legal pages */
.legal-toc a.active {
    color: var(--brass-hardware);
    font-weight: 600;
}

.legal-section {
    scroll-margin-top: 120px; /* For smooth scrolling with fixed header */
}

/* Print styles for legal pages */
@media print {
    .legal-navigation,
    .legal-toc,
    .section-badge {
        display: none;
    }

    .legal-container {
        box-shadow: none;
        padding: 20px;
    }

    .legal-section {
        page-break-inside: avoid;
        margin-bottom: 2rem;
    }

    .legal-section h2 {
        page-break-after: avoid;
    }
}