
:root {
    --primary: #1a1a1a;
    --primary-light: #444444;
    --gold: #8b7355;
    --gold-light: #a89076;
    --text: #1a1a1a;
    --text-light: #595959;
    --text-muted: #666666;
    --bg: #ffffff;
    --bg-cream: #faf9f7;
    --border: #e8e6e3;
    --border-light: #f0eeeb;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    letter-spacing: 0.01em;
}


.grid-bg {
    display: none;
}


.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 60px;
    position: relative;
    z-index: 10;
}

header {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--primary);
}

.header-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.header-bg-image .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.75) 50%,
        rgba(255, 255, 255, 0.9) 100%
    );
    z-index: 2;
}

.header-glow {
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.header-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    padding: 60px 40px 120px;
}

.badge-top {
    display: inline-block;
    background: transparent;
    border: none;
    padding: 0;
    font-size: 0.75em;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

header h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.5em, 5vw, 4em);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.gradient-text {
    color: var(--text);
    background: none;
    -webkit-text-fill-color: var(--text);
    font-style: italic;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
}

header p {
    font-size: 1em;
    color: var(--text-light);
    max-width: 480px;
    margin: 0 auto 50px;
    font-weight: 300;
}

.header-stats {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    margin-top: 20px;
}

.stat {
    text-align: center;
    padding: 30px 50px;
    position: relative;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
    color: var(--gold);
    stroke-width: 1.2;
}

.stat-icon .flag-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.stat-value {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1.6em;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.stat-number {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1.6em;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.05em;
}

.stat-label {
    font-size: 0.65em;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 400;
    display: block;
}

.stat-divider {
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, var(--border), transparent);
    align-self: stretch;
    margin: 20px 0;
}

.header-phone {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    z-index: 100;
}

.header-phone:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.header-phone svg {
    width: 18px;
    height: 18px;
    stroke: white;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}


.tabs {
    display: flex;
    gap: 0;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0;
    justify-content: center;
}

.tab-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    border: none;
    border-bottom: 1px solid transparent;
    cursor: pointer;
    font-size: 0.8em;
    font-weight: 400;
    color: var(--text-light);
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: -1px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tab-button::before {
    display: none;
}

.tab-button:hover {
    color: var(--text);
    background: transparent;
}

.tab-button:hover::before {
    display: none;
}

.tab-button.active {
    background: transparent;
    color: var(--text);
    border-bottom: 1px solid var(--text);
    box-shadow: none;
    transform: none;
}

.tab-button.active::before {
    display: none;
}

.tab-icon {
    display: none;
}

.tab-text {
    position: relative;
    z-index: 1;
}

.tab-badge {
    background: transparent;
    border: 1px solid var(--border);
    padding: 2px 8px;
    border-radius: 2px;
    font-size: 0.85em;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

.tab-button.active .tab-badge {
    background: var(--text);
    color: white;
    border-color: var(--text);
}


.tab-content {
        display: none;
        width: 100%;
        padding: 0;
        margin: 0;
        background: transparent;
}

.tab-content.active {
    display: block;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.section-header {
    display: block;
    text-align: left;
    background: var(--bg);
    border: none;
    padding: 0 0 40px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.section-header::before {
    display: none;
}

.section-icon {
    display: none;
}

.section-info h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.8em;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--text);
    letter-spacing: 0.02em;
}

.section-desc {
    color: var(--text-muted);
    font-size: 0.9em;
    font-weight: 300;
}

.period {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--bg-cream);
    border: none;
    padding: 24px 32px;
    margin-bottom: 50px;
    position: relative;
}

.period::before {
    display: none;
}

.period-icon {
    display: none;
}

.period-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.period-label {
    display: block;
    font-size: 0.7em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.period-dates {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15em;
    font-weight: 400;
    color: var(--text);
    font-style: italic;
}

.period-countdown {
    text-align: center;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--text);
    position: relative;
    z-index: 1;
}

.countdown-label {
    display: none;
}

.countdown-value {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2em;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 1px;
}

.products-table {
    background: var(--bg);
    border: none;
    border-top: 1px solid var(--border);
    border-radius: 0;
    overflow: visible;
    margin-bottom: 50px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: transparent;
}

th {
    padding: 16px 16px;
    text-align: left;
    font-weight: 400;
    font-size: 0.7em;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

td {
    padding: 20px 16px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text);
    font-size: 0.9em;
    font-weight: 300;
    transition: all 0.2s ease;
}

tbody tr {
    transition: all 0.2s ease;
}

tbody tr:hover {
    background: var(--bg-cream);
    transform: none;
}

tbody tr:last-child td {
    border-bottom: 1px solid var(--border);
}

.product-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: 1.1em;
    color: var(--text);
}

.product-image {
    width: 90px;
    padding: 12px !important;
}

.product-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 0;
    border: none;
    background: var(--bg-cream);
    transition: all 0.3s ease;
}

.product-image img:hover {
    transform: none;
    opacity: 0.8;
    box-shadow: none;
}

.tva-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 0;
    font-weight: 400;
    font-size: 0.8em;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.tva-badge:hover {
    transform: none;
}

.tva-55 {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    box-shadow: none;
}

.tva-20 {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border);
    box-shadow: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    border-color: var(--text);
    transform: translateY(-4px);
}

.product-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background: var(--primary);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(30, 30, 30, 0.9);
    color: #fff;
    padding: 6px 14px;
    font-size: 0.7em;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 400;
    z-index: 2;
}

.card-badge-secondary {
    background: rgba(80, 80, 80, 0.85);
}

.product-card-content {
    padding: 24px;
}

.product-card-content .product-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3em;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-details {
    font-size: 0.85em;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
}

.product-info {
    font-size: 0.8em;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.products-cards {
    display: none;
}

.card-field {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    padding: 8px 0;
    border-bottom: none;
}

.card-field:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.field-label {
    font-weight: 400;
    color: var(--text-muted);
    min-width: 140px;
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.field-value {
    color: var(--text);
    flex: 1;
    font-weight: 300;
    font-size: 0.9em;
}

.product-card.animate-in {
    animation: cardIn 0.6s ease-out forwards;
}

@keyframes cardIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.note {
    display: block;
    background: var(--bg-cream);
    border: none;
    padding: 30px 36px;
    margin-top: 50px;
    border-radius: 0;
    position: relative;
}

.note::before {
    display: none;
}

.note-icon {
    display: none;
}

.note-content {
    flex: 1;
}

.note-content strong {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15em;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 10px;
}

.note-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
    font-size: 0.9em;
}

footer {
    margin-top: 100px;
    padding: 50px 60px;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-radius: 0;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5em;
    font-weight: 400;
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    letter-spacing: 0.02em;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85em;
    font-weight: 300;
}

.footer-cta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-cta span {
    font-weight: 300;
    color: var(--text-muted);
    font-size: 0.9em;
}

.cta-button {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--text);
    padding: 14px 32px;
    border-radius: 0;
    font-size: 0.75em;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
}

.cta-button:hover {
    background: var(--text);
    color: white;
    transform: none;
    box-shadow: none;
}

.trust-section {
    background: var(--bg-cream);
    padding: 100px 60px;
    position: relative;
    z-index: 10;
}

.trust-container {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-badge {
    display: inline-block;
    font-size: 0.7em;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 16px;
}

.trust-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.4em;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.trust-header p {
    color: var(--text-muted);
    font-size: 1em;
    font-weight: 300;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.trust-card {
    background: var(--bg);
    padding: 40px 30px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.trust-card:hover {
    border-color: var(--text);
    transform: translateY(-5px);
}

.trust-card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
}

.trust-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2em;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 12px;
}

.trust-card p {
    font-size: 0.85em;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
}

.trust-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 40px;
    background: var(--bg);
    border: 1px solid var(--border);
}

.trust-stat {
    text-align: center;
}

.trust-stat-value {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5em;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 8px;
}

.trust-stat-label {
    font-size: 0.7em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 400;
}

.trust-stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
}

.cta-section {
    background: var(--primary);
    padding: 80px 60px;
    position: relative;
    z-index: 10;
}

.cta-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2em;
    font-weight: 400;
    color: white;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1em;
    font-weight: 300;
}

.cta-actions {
    display: flex;
    gap: 16px;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-size: 0.85em;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-btn svg {
    width: 18px;
    height: 18px;
}

.cta-btn-primary {
    background: white;
    color: var(--primary);
    border: 1px solid white;
}

.cta-btn-primary:hover {
    background: transparent;
    color: white;
}

.cta-btn-primary svg {
    stroke: var(--primary);
}

.cta-btn-primary:hover svg {
    stroke: white;
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.cta-btn-secondary svg {
    stroke: white;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.85em;
    font-weight: 300;
    margin-bottom: 12px;
}

.footer-tagline strong {
    color: var(--text);
    font-weight: 500;
}

.footer-trust {
    color: var(--text-muted);
    font-size: 0.8em;
    font-weight: 300;
    line-height: 1.6;
    max-width: 400px;
    margin-bottom: 10px;
}

.footer-since {
    display: inline-block;
    font-size: 0.7em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 400;
    padding: 6px 12px;
    border: 1px solid var(--accent);
    margin-top: 8px;
}

.footer-legal {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    margin-top: 40px;
}

.footer-legal-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.legal-company {
    color: var(--text-muted);
    font-size: 0.75em;
    font-weight: 300;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.legal-links a {
    color: var(--text-muted);
    font-size: 0.75em;
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--text);
}

.legal-separator {
    color: var(--border);
    font-size: 0.75em;
}

.legal-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.legal-modal.active {
    opacity: 1;
    visibility: visible;
}

.legal-modal-content {
    background: var(--bg);
    border: 1px solid var(--border);
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 50px;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.legal-modal.active .legal-modal-content {
    transform: translateY(0);
}

.legal-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: 1px solid var(--border);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.legal-modal-close svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-muted);
    transition: stroke 0.3s ease;
}

.legal-modal-close:hover {
    border-color: var(--text);
}

.legal-modal-close:hover svg {
    stroke: var(--text);
}

.legal-modal-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.8em;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--text);
    letter-spacing: 0.02em;
}

.legal-modal-body h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1em;
    font-weight: 500;
    margin: 25px 0 12px 0;
    color: var(--text);
}

.legal-modal-body p {
    color: var(--text-muted);
    font-size: 0.85em;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-modal-body ul {
    color: var(--text-muted);
    font-size: 0.85em;
    font-weight: 300;
    line-height: 1.7;
    margin: 10px 0;
    padding-left: 20px;
}

.legal-modal-body li {
    margin-bottom: 5px;
}

.contact-modal-content {
    max-width: 500px;
    text-align: center;
}

.contact-header {
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--text);
}

.contact-modal-content h2 {
    margin-bottom: 8px;
}

.contact-subtitle {
    font-size: 0.85em;
    color: var(--text-muted);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-body {
    text-align: left;
}

.contact-intro {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9em;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--text);
    background: var(--bg-cream);
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-method:hover .contact-method-icon {
    border-color: var(--text);
    background: var(--text);
}

.contact-method:hover .contact-method-icon svg {
    stroke: white;
}

.contact-method-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--text);
    transition: stroke 0.3s ease;
}

.contact-method-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-method-label {
    font-size: 0.7em;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.contact-method-value {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2em;
    font-weight: 500;
    color: var(--text);
}

.contact-method-arrow {
    width: 24px;
    height: 24px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.contact-method:hover .contact-method-arrow {
    opacity: 1;
    transform: translateX(0);
}

.contact-method-arrow svg {
    width: 24px;
    height: 24px;
    stroke: var(--text);
}

.contact-hours {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-cream);
    border: 1px solid var(--border-light);
    margin-bottom: 25px;
}

.contact-hours-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-hours-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-muted);
}

.contact-hours-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-hours-label {
    font-size: 0.7em;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.contact-hours-value {
    font-size: 0.85em;
    color: var(--text);
    font-weight: 400;
}

.contact-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    font-size: 0.7em;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.contact-badge-separator {
    color: var(--border);
}

@media (max-width: 480px) {
    .contact-modal-content {
        padding: 30px 20px;
    }
    
    .contact-method {
        padding: 16px;
    }
    
    .contact-method-value {
        font-size: 1em;
    }
    
    .contact-badge {
        flex-wrap: wrap;
        gap: 8px;
    }
}

@media (max-width: 1024px) {
    header h1 {
        font-size: 2.6em;
    }
    
    .header-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2em;
    }
    
    .container {
        padding: 60px 40px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 40px 24px;
    }

    .trust-section {
        padding: 60px 24px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-card {
        padding: 30px 24px;
    }

    .trust-stats {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }

    .trust-stat-divider {
        width: 60px;
        height: 1px;
    }

    .cta-section {
        padding: 60px 24px;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn {
        justify-content: center;
        width: 100%;
    }

    .header-phone {
        bottom: 20px;
        padding: 10px 20px;
        font-size: 0.85em;
    }
    
    header {
        padding: 60px 24px 50px;
        margin-bottom: 50px;
        min-height: auto;
        min-height: 100svh;
    }
    
    header h1 {
        font-size: 1.8em;
        white-space: normal;
        word-wrap: break-word;
    }
    
    header p {
        font-size: 0.95em;
    }
    
    .header-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat {
        padding: 15px 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .tabs {
        flex-direction: column;
        gap: 0;
        border-bottom: none;
    }
    
    .tab-button {
        border: 1px solid var(--border);
        border-bottom: none;
        margin-bottom: 0;
        justify-content: flex-start;
        padding: 16px 20px;
    }
    
    .tab-button:last-child {
        border-bottom: 1px solid var(--border);
    }
    
    .tab-button.active {
        background: var(--bg-subtle);
        border-bottom: 1px solid var(--border);
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .section-info h2 {
        font-size: 1.4em;
    }
    
    .period {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .period-countdown {
        width: 100%;
    }
    
    .products-table {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-card-content {
        padding: 16px;
    }
    
    .product-card-content .product-name {
        font-size: 1.1em;
    }
    
    .card-badge {
        font-size: 0.6em;
        padding: 5px 10px;
    }
    
    .note {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .footer-cta {
        flex-direction: column;
        gap: 12px;
    }

    .footer-trust {
        max-width: 100%;
    }

    .footer-legal-content {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }

    .legal-modal-content {
        padding: 30px 20px;
    }

    .legal-modal-content h2 {
        font-size: 1.4em;
        padding-right: 40px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 40px 20px;
    }
    
    header h1 {
        font-size: 1.4em;
        white-space: normal;
    }
    
    .badge-top {
        font-size: 0.65em;
        padding: 8px 16px;
        letter-spacing: 1.5px;
    }
    
    .stat-number {
        font-size: 1.5em;
    }
    
    .stat-label {
        font-size: 0.6em;
        letter-spacing: 1px;
    }
    
    .stat-value {
        font-size: 1.2em;
    }
    
    .header-content {
        padding: 40px 16px 80px;
    }
    
    .tab-button {
        padding: 14px 16px;
        font-size: 0.8em;
    }
    
    .tab-badge {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .product-card-content {
        padding: 20px;
    }
    
    .product-card-content .product-name {
        font-size: 1.2em;
    }
    
    .card-field {
        flex-direction: column;
        gap: 6px;
    }
    
    .field-label {
        min-width: auto;
    }
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

::selection {
    background: var(--text);
    color: white;
}

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox-overlay.visible .lightbox-backdrop {
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 0;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.lightbox-overlay.visible .lightbox-close {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.2s;
}

.lightbox-close:hover {
    background: var(--text);
    border-color: var(--text);
}

.lightbox-close:hover span {
    background: white;
}

.lightbox-close span {
    position: absolute;
    width: 18px;
    height: 1px;
    background: var(--text);
    border-radius: 0;
}

.lightbox-close span:first-child {
    transform: rotate(45deg);
}

.lightbox-close span:last-child {
    transform: rotate(-45deg);
}

.lightbox-container {
    position: relative;
    display: flex;
    max-width: 950px;
    width: 100%;
    max-height: 90vh;
    background: var(--bg);
    border: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: scale(0.98) translateY(20px);
    transition: all 0.4s ease;
}

.lightbox-overlay.visible .lightbox-container {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition-delay: 0.1s;
}

.lightbox-image-wrapper {
    position: relative;
    flex: 1;
    min-width: 50%;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lightbox-image-wrapper::before {
    display: none;
}

@keyframes spinSlow {
    to { transform: rotate(360deg); }
}

.lightbox-image-wrapper img {
    position: relative;
    z-index: 1;
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    transform: scale(0.98);
    transition: all 0.4s ease;
}

.lightbox-overlay.visible .lightbox-image-wrapper img {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.2s;
}

.lightbox-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader-ring {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-top-color: var(--text);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.lightbox-content {
    flex: 0 0 340px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-y: auto;
    border-left: 1px solid var(--border);
    background: var(--bg);
}

.lightbox-content::before {
    display: none;
}

.lightbox-badge {
    display: inline-block;
    background: transparent;
    border: none;
    padding: 0;
    font-size: 0.7em;
    font-weight: 400;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    width: fit-content;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.lightbox-overlay.visible .lightbox-badge {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
}

.lightbox-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2em;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--text);
    background: none;
    -webkit-text-fill-color: var(--text);
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.lightbox-overlay.visible .lightbox-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.lightbox-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lightbox-info-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-light);
    border-radius: 0;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease;
}

.lightbox-info-item:last-child {
    border-bottom: none;
}

.lightbox-overlay.visible .lightbox-info-item {
    opacity: 1;
    transform: translateY(0);
}

.lightbox-info-item:hover {
    background: transparent;
    border-color: var(--border-light);
}

.lightbox-info-label {
    font-size: 0.7em;
    font-weight: 400;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.lightbox-info-value {
    font-weight: 300;
    color: var(--text);
    text-align: right;
    line-height: 1.5;
    font-size: 0.9em;
}

.lightbox-info-value.highlight-green {
    color: var(--gold);
    background: none;
    -webkit-text-fill-color: var(--gold);
    font-weight: 400;
}

.lightbox-info-value.highlight-orange {
    color: var(--text-light);
    background: none;
    -webkit-text-fill-color: var(--text-light);
    font-weight: 400;
}

.lightbox-footer {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.lightbox-overlay.visible .lightbox-footer {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.lightbox-cta {
    width: 100%;
    padding: 16px 24px;
    background: transparent;
    border: 1px solid var(--text);
    border-radius: 0;
    color: var(--text);
    font-size: 0.75em;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lightbox-cta::before {
    display: none;
}

.lightbox-cta:hover {
    background: var(--text);
    color: white;
    transform: none;
    box-shadow: none;
}

.lightbox-cta:hover::before {
    display: none;
}

@media (max-width: 900px) {
    .lightbox-overlay {
        padding: 20px;
    }

    .lightbox-container {
        flex-direction: column;
        max-height: 95vh;
    }

    .lightbox-image-wrapper {
        min-width: 100%;
        min-height: 200px;
        max-height: 35vh;
    }

    .lightbox-image-wrapper img {
        max-height: 30vh;
    }

    .lightbox-content {
        flex: 1;
        padding: 24px 20px;
        border-left: none;
        border-top: 1px solid var(--border);
    }

    .lightbox-title {
        font-size: 1.4em;
    }

    .lightbox-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .lightbox-info-item {
        flex-direction: column;
        gap: 6px;
    }

    .lightbox-info-value {
        text-align: left;
    }
}

.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animation native pour le header - ne bloque pas le LCP */
header .badge-top,
header h1,
header p,
header .header-stats {
    animation: headerFadeIn 0.8s ease-out forwards;
}

header h1 {
    animation-delay: 0.1s;
}

header p {
    animation-delay: 0.2s;
}

header .header-stats {
    animation-delay: 0.3s;
}

@keyframes headerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll.fade-up {
    transform: translateY(60px);
}

.animate-on-scroll.fade-down {
    transform: translateY(-40px);
}

.animate-on-scroll.fade-left {
    transform: translateX(-60px);
}

.animate-on-scroll.fade-right {
    transform: translateX(60px);
}

.animate-on-scroll.scale-up {
    transform: scale(0.9);
}

/* Délais d'animation */
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* État visible */
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Animation des cartes produits */
.product-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Animation compteur */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Effet parallaxe header */
.header-bg-image {
    will-change: transform;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
    transition: opacity 0.3s ease;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text);
    border-bottom: 2px solid var(--text);
    transform: rotate(45deg);
    opacity: 0.4;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Sections animées */
.section-header,
.period,
.note,
.tabs {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-header.visible,
.period.visible,
.note.visible,
.tabs.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.product-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.product-modal {
    background: var(--bg);
    width: 100%;
    max-width: 560px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid var(--border);
}

.product-modal.product-modal-split {
    max-width: 900px;
    flex-direction: row;
}

.modal-image-side {
    width: 45%;
    flex-shrink: 0;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modal-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info-side {
    width: 55%;
    display: flex;
    flex-direction: column;
    max-height: 85vh;
    overflow: hidden;
    position: relative;
}

.product-modal-overlay.active .product-modal {
    transform: translateY(0);
    opacity: 1;
}

.modal-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px 36px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
    flex-shrink: 0;
    position: relative;
}

.modal-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-cream);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    stroke-width: 1.5;
    fill: none;
}

.modal-title-group {
    flex: 1;
    min-width: 0;
    padding-right: 40px;
}

.modal-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6em;
    font-weight: 500;
    color: var(--text);
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.modal-subtitle {
    font-size: 0.8em;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.modal-badge {
    position: absolute;
    top: 32px;
    right: 70px;
    padding: 4px 12px;
    font-size: 0.65em;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    border: 1px solid;
}

.modal-badge.fixe {
    background: transparent;
    border-color: #8b4049;
    color: #8b4049;
}

.modal-badge.non-remboursable {
    background: transparent;
    border-color: #c0392b;
    color: #c0392b;
}

.modal-badge.ecolo {
    background: transparent;
    border-color: #5a7d5e;
    color: #5a7d5e;
}

.modal-badge.remboursable {
    background: transparent;
    border-color: #4a6b8a;
    color: #4a6b8a;
}

.modal-badge.inclus {
    background: transparent;
    border-color: var(--text-muted);
    color: var(--text-muted);
}

.modal-close {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0.5;
}

.modal-close:hover {
    opacity: 1;
}

.modal-close:focus {
    outline: 1px solid var(--gold);
    outline-offset: 4px;
}

.modal-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--text);
    stroke-width: 1.5;
    transition: stroke 0.3s ease;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 28px 36px;
    background: var(--bg);
}

.modal-section {
    margin-bottom: 28px;
}

.modal-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 0.65em;
    font-weight: 400;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-light);
}

.section-title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    stroke-width: 1.5;
    fill: none;
}

.section-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.section-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.2s ease;
}

.section-item:last-child {
    border-bottom: none;
}

.section-item:hover {
    padding-left: 8px;
}

.item-bullet {
    width: 6px;
    height: 6px;
    background: var(--gold);
    flex-shrink: 0;
}

.item-content {
    flex: 1;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.item-text {
    font-size: 0.9em;
    color: var(--text);
    line-height: 1.5;
    font-weight: 300;
}

.item-note {
    font-size: 0.75em;
    color: var(--text-muted);
    font-style: italic;
    text-align: right;
    flex-shrink: 0;
}

.section-item.restriction {
    background: rgba(139, 64, 73, 0.04);
    margin: 0 -16px;
    padding: 12px 16px;
    border-bottom: none;
    margin-bottom: 4px;
}

.section-item.restriction:hover {
    padding-left: 20px;
}

.section-item.restriction .item-bullet {
    background: #8b4049;
    width: 8px;
    height: 8px;
}

.section-item.restriction .item-text {
    color: #8b4049;
    font-weight: 400;
}

.section-item.restriction .item-note {
    color: #8b4049;
    opacity: 0.7;
}

.legal-section {
    background: var(--bg-cream);
    border-left: 2px solid var(--gold);
    padding: 20px 24px;
    margin-top: 28px;
}

.legal-title {
    font-size: 0.6em;
    font-weight: 400;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-title svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold);
    stroke-width: 1.5;
}

.legal-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85em;
    font-weight: 300;
}

.legal-dot {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
}

.legal-dot.green { background: #5a7d5e; }
.legal-dot.orange { background: var(--gold); }
.legal-dot.red { background: #8b4049; }
.legal-dot.blue { background: #4a6b8a; }

.legal-text {
    color: var(--text);
}

.legal-text strong {
    font-weight: 500;
}

.modal-footer {
    padding: 24px 36px;
    border-top: 1px solid var(--border);
    background: var(--bg);
    flex-shrink: 0;
}

.footer-hint {
    display: none;
}

.modal-cta {
    width: 100%;
    padding: 16px 24px;
    background: transparent;
    border: 1px solid var(--text);
    color: var(--text);
    font-size: 0.75em;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.modal-cta:hover {
    background: var(--text);
    color: var(--bg);
}

.modal-cta:focus {
    outline: 1px solid var(--gold);
    outline-offset: 4px;
}

.modal-cta svg {
    width: 16px;
    height: 16px;
    stroke-width: 1.5;
}

.format-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.format-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--bg-cream);
    border: 1px solid var(--border);
    font-size: 0.85em;
    color: var(--text);
    font-weight: 300;
    transition: all 0.2s ease;
}

.format-tag:hover {
    border-color: var(--gold);
}

.format-tag svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold);
    stroke-width: 1.5;
}

.format-tag.highlight {
    border-color: var(--gold);
    background: rgba(139, 115, 85, 0.08);
}

@media (max-width: 768px) {
    .product-modal-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .product-modal {
        width: 100%;
        max-width: 100%;
        max-height: 92vh;
        border-radius: 0;
        border: none;
        border-top: 1px solid var(--border);
    }

    .product-modal.product-modal-split {
        flex-direction: column;
        max-width: 100%;
    }

    .modal-image-side {
        width: 100%;
        height: 200px;
        flex-shrink: 0;
    }

    .modal-info-side {
        width: 100%;
        max-height: calc(92vh - 200px);
    }

    .product-modal-overlay.active .product-modal {
        transform: translateY(0);
    }

    .modal-header {
        padding: 24px 24px 20px;
    }

    .modal-close {
        top: 20px;
        right: 20px;
    }

    .modal-title {
        font-size: 1.4em;
    }

    .modal-badge {
        position: static;
        margin-top: 12px;
        display: inline-block;
    }

    .modal-title-group {
        padding-right: 40px;
    }

    .modal-body {
        padding: 24px;
    }

    .modal-footer {
        padding: 20px 24px;
    }

    .legal-section {
        margin-left: -8px;
        margin-right: -8px;
    }
}

@media (max-width: 480px) {
    .modal-header {
        gap: 14px;
    }

    .modal-icon {
        width: 38px;
        height: 38px;
    }

    .modal-icon svg {
        width: 18px;
        height: 18px;
    }

    .modal-title {
        font-size: 1.25em;
    }

    .format-tags {
        gap: 6px;
    }

    .format-tag {
        padding: 6px 10px;
        font-size: 0.8em;
    }
}
