:root {
    --cp75-black: #181A1F;
    --cp75-accent: #E95440;
    --cp75-white: #FFFFFF;
    --cp75-gray: #6B7280;
    --cp75-light: #F9FAFB;
    --cp75-border: #E5E7EB;
    --cp75-max-width: 1300px;
}

.cp75-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: var(--cp75-white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

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

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

.cp75-nav {
    display: flex;
    align-items: center;
}

.cp75-menu {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
}

.cp75-menu li {
    position: relative;
}

.cp75-menu li a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--cp75-black);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s, background 0.2s;
    border-radius: 6px;
}

.cp75-menu li a:hover,
.cp75-menu li.current-menu-item a {
    color: var(--cp75-accent);
    background: rgba(233,84,64,0.06);
}

.cp75-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--cp75-white);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-radius: 8px;
    min-width: 220px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    list-style: none;
    z-index: 100;
}

.cp75-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cp75-menu .sub-menu a {
    padding: 0.6rem 1.25rem;
    font-size: 14px;
    border-radius: 0;
}

.cp75-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cp75-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cp75-black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.cp75-phone:hover {
    color: var(--cp75-accent);
}

.cp75-cart-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--cp75-black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.cp75-cart-btn:hover {
    background: var(--cp75-light);
    color: var(--cp75-accent);
}

.cp75-cta-btn {
    display: inline-block;
    background: var(--cp75-accent);
    color: var(--cp75-white) !important;
    padding: 0.65rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.cp75-cta-btn:hover {
    background: #d44433;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(233,84,64,0.3);
}

.cp75-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10001;
}

.cp75-hamburger,
.cp75-hamburger::before,
.cp75-hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cp75-black);
    transition: all 0.3s;
    position: relative;
}

.cp75-hamburger::before,
.cp75-hamburger::after {
    content: "";
    position: absolute;
    left: 0;
    width: 24px;
}

.cp75-hamburger::before { top: -7px; }
.cp75-hamburger::after { top: 7px; }

.cp75-menu-toggle.active .cp75-hamburger {
    background: transparent;
}

.cp75-menu-toggle.active .cp75-hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.cp75-menu-toggle.active .cp75-hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

.cp75-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9997;
}

.cp75-mobile-overlay.active {
    display: block;
}

@media (max-width: 1024px) {
    .cp75-menu-toggle {
        display: block;
    }

    .cp75-nav .cp75-menu {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: var(--cp75-white);
        flex-direction: column;
        padding: 80px 1.5rem 2rem;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 9998;
        overflow-y: auto;
        gap: 0;
    }

    .cp75-nav .cp75-menu.active {
        right: 0;
    }

    .cp75-menu li a {
        padding: 0.85rem 1rem;
        font-size: 16px;
        border-bottom: 1px solid var(--cp75-border);
    }

    .cp75-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
        min-width: auto;
    }

    .cp75-phone span { display: none; }
    .cp75-cart-btn span { display: none; }

    .cp75-header-inner {
        padding: 0 1rem;
        height: 65px;
    }

    .cp75-logo-img { height: 40px; }
}

@media (max-width: 600px) {
    .cp75-cta-btn {
        padding: 0.5rem 1rem;
        font-size: 13px;
    }

    .cp75-header-actions { gap: 0.5rem; }
}

/* FOOTER */
.cp75-footer {
    background: var(--cp75-black);
    color: var(--cp75-white);
    margin-top: 0;
}

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

.cp75-footer-top {
    padding: 4rem 0 3rem;
}

.cp75-footer-top .cp75-footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.cp75-footer-logo img {
    height: 45px;
    width: auto;
    margin-bottom: 1.25rem;
    display: block;
}

.cp75-footer-desc {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.cp75-footer-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 1.25rem;
    color: var(--cp75-white);
    position: relative;
    padding-bottom: 0.75rem;
}

.cp75-footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--cp75-accent);
}

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

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

.cp75-footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
    display: inline-block;
}

.cp75-footer-links a:hover {
    color: var(--cp75-accent);
    padding-left: 4px;
}

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

.cp75-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.cp75-footer-contact li svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--cp75-accent);
}

.cp75-footer-contact a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.cp75-footer-contact a:hover { color: var(--cp75-accent); }

.cp75-footer-cta-text {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 1.25rem;
}

.cp75-footer-cta-btn {
    display: inline-block;
    background: var(--cp75-accent);
    color: var(--cp75-white) !important;
    padding: 0.7rem 1.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.cp75-footer-cta-btn:hover {
    background: #d44433;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(233,84,64,0.3);
}

.cp75-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
}

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

.cp75-copyright {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin: 0;
}

.cp75-footer-legal {
    display: flex;
    gap: 1.5rem;
}

.cp75-footer-legal a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.cp75-footer-legal a:hover { color: var(--cp75-accent); }

@media (max-width: 1024px) {
    .cp75-footer-top .cp75-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

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

    .cp75-footer-top { padding: 3rem 0 2rem; }

    .cp75-footer-bottom .cp75-footer-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cp75-footer-inner { padding: 0 1rem; }
}

/* ============================================
   GLOBAL SITE OVERRIDES - Luxride Coherence
   Chauffeur Privé 75
   ============================================ */

/* ── Global Typography ── */
body,
.elementor-widget-text-editor,
.elementor-widget-text-editor p,
.elementor *,
p {
    font-family: 'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Global Headings ── */
h1, h2, h3, h4, h5, h6,
.elementor-heading-title,
.elementor-widget-heading .elementor-heading-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    color: var(--cp75-black);
    font-weight: 700;
}

/* ── Global Links ── */
a {
    transition: color 0.2s ease;
}

/* ── Elementor Buttons Consistency ── */
.elementor-button,
.elementor-widget-button .elementor-button,
.e-container .elementor-button {
    font-family: 'Inter', 'DM Sans', sans-serif !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
    letter-spacing: 0.3px;
    text-transform: none !important;
}

.elementor-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ── Elementor Sections - Clean spacing ── */
.elementor-section {
    font-family: 'Inter', 'DM Sans', sans-serif;
}

.elementor-widget-text-editor {
    line-height: 1.7;
    color: #4B5563;
    font-size: 15px;
}

/* ── Page Titles / Breadcrumb area ── */
.luxride-page-header,
.luxride-breadcrumb,
.page-header {
    font-family: 'Inter', 'DM Sans', sans-serif;
}

/* ── WooCommerce Pages ── */
.woocommerce,
.woocommerce-page {
    font-family: 'Inter', 'DM Sans', sans-serif;
}

/* Checkout */
.woocommerce-checkout .woocommerce {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.woocommerce form .form-row label {
    font-weight: 600;
    font-size: 13px;
    color: var(--cp75-black);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .select2-container--default .select2-selection--single {
    border: 1px solid #D1D5DB !important;
    border-radius: 6px !important;
    padding: 12px 14px !important;
    font-size: 15px !important;
    font-family: inherit !important;
    color: var(--cp75-black) !important;
    transition: border-color 0.2s !important;
    height: auto !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: var(--cp75-accent) !important;
    box-shadow: 0 0 0 3px rgba(233,84,64,0.08) !important;
    outline: none !important;
}

.woocommerce #place_order,
.woocommerce .button.alt,
.woocommerce button.button.alt {
    background: var(--cp75-accent) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    font-family: 'Inter', 'DM Sans', sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    padding: 14px 28px !important;
    transition: all 0.2s !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.woocommerce #place_order:hover,
.woocommerce .button.alt:hover,
.woocommerce button.button.alt:hover {
    background: #d44433 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(233,84,64,0.3) !important;
}

.woocommerce .button,
.woocommerce button.button {
    font-family: 'Inter', 'DM Sans', sans-serif !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    transition: all 0.2s !important;
}

/* Order review table */
.woocommerce-checkout-review-order-table {
    border-radius: 6px !important;
    overflow: hidden;
    border: 1px solid #E5E7EB !important;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    font-size: 14px !important;
    padding: 12px 16px !important;
    border-color: #E5E7EB !important;
}

.woocommerce-checkout-review-order-table .order-total td {
    font-weight: 700 !important;
    font-size: 18px !important;
    color: var(--cp75-accent) !important;
}

/* Checkout sections headings */
.woocommerce-checkout h3,
.woocommerce-checkout #order_review_heading {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--cp75-black);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--cp75-accent);
    margin-bottom: 24px;
}

/* My Account */
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #F9FAFB;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 13px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--cp75-black);
    text-decoration: none;
    border-bottom: 1px solid #E5E7EB;
    transition: all 0.2s;
}

.woocommerce-MyAccount-navigation ul li:last-child a {
    border-bottom: none;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
    background: var(--cp75-accent);
    color: #fff;
}

.woocommerce-MyAccount-content {
    font-size: 15px;
    line-height: 1.7;
    color: #4B5563;
}

.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
    color: var(--cp75-black);
    font-size: 20px;
}

/* Login form */
.woocommerce-form-login,
.woocommerce-form-register {
    border: 1px solid #E5E7EB !important;
    border-radius: 8px !important;
    padding: 30px !important;
    background: #fff !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04) !important;
}

/* ── Blog Page ── */
.blog article,
.archive article {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog article:hover,
.archive article:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.blog .entry-title a,
.archive .entry-title a {
    color: var(--cp75-black);
    text-decoration: none;
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-weight: 700;
    transition: color 0.2s;
}

.blog .entry-title a:hover,
.archive .entry-title a:hover {
    color: var(--cp75-accent);
}

/* Single post */
.single-post .entry-title {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-weight: 700;
    color: var(--cp75-black);
}

.single-post .entry-content {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
}

/* ── Contact Page ── */
.wpcf7-form label {
    font-weight: 600;
    font-size: 13px;
    color: var(--cp75-black);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
    display: block;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: 12px 14px !important;
    border: 1px solid #D1D5DB !important;
    border-radius: 6px !important;
    font-size: 15px !important;
    font-family: inherit !important;
    color: var(--cp75-black);
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    border-color: var(--cp75-accent) !important;
    box-shadow: 0 0 0 3px rgba(233,84,64,0.08);
    outline: none;
}

.wpcf7-form input[type="submit"],
.wpcf7-submit {
    background: var(--cp75-accent) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 14px 32px !important;
    font-family: 'Inter', 'DM Sans', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    cursor: pointer;
    transition: all 0.2s !important;
}

.wpcf7-form input[type="submit"]:hover {
    background: #d44433 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(233,84,64,0.3);
}

/* ── Prix Page ── */
.elementor-price-table {
    border-radius: 8px !important;
    overflow: hidden;
    border: 1px solid #E5E7EB !important;
    transition: transform 0.2s, box-shadow 0.2s;
}

.elementor-price-table:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* ── Elementor Icon Boxes ── */
.elementor-icon-box-title {
    font-family: 'Inter', 'DM Sans', sans-serif !important;
    font-weight: 700 !important;
}

.elementor-icon-box-description {
    color: #6B7280 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

/* ── Image hover effects ── */
.elementor-widget-image img {
    transition: transform 0.3s ease;
}

.elementor-widget-image:hover img {
    transform: scale(1.02);
}

/* ── Smooth scrolling ── */
html {
    scroll-behavior: smooth;
}

/* ── Selection color ── */
::selection {
    background: rgba(233,84,64,0.15);
    color: var(--cp75-black);
}

/* ── Scrollbar (Webkit) ── */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F3F4F6;
}
::-webkit-scrollbar-thumb {
    background: #9CA3AF;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #6B7280;
}

/* ── WooCommerce Notices ── */
.woocommerce-message {
    border-top-color: var(--cp75-accent) !important;
    background: #FFF5F4 !important;
    border-radius: 6px !important;
    font-size: 14px;
}

.woocommerce-message::before {
    color: var(--cp75-accent) !important;
}

.woocommerce-error {
    border-top-color: #DC2626 !important;
    border-radius: 6px !important;
}

.woocommerce-info {
    border-top-color: #3B82F6 !important;
    border-radius: 6px !important;
}

/* ── Elementor Forms (if any) ── */
.elementor-field-group input,
.elementor-field-group textarea,
.elementor-field-group select {
    border-radius: 6px !important;
    font-family: 'Inter', 'DM Sans', sans-serif !important;
}

/* ── Table global ── */
table {
    border-radius: 6px;
    overflow: hidden;
}

table th {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #6B7280;
}

/* ── Global page content padding for non-Elementor ── */
.page-template-default .entry-content,
.single .entry-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ── Thank you page ── */
.woocommerce-order-received .woocommerce {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.woocommerce-thankyou-order-received {
    background: #F0FDF4 !important;
    border: 1px solid #BBF7D0 !important;
    border-radius: 8px !important;
    padding: 20px !important;
    font-weight: 600;
    color: #166534 !important;
    text-align: center;
    font-size: 16px;
}

/* ── Mobile global ── */
@media (max-width: 768px) {
    .woocommerce-checkout .woocommerce {
        padding: 20px 16px;
    }

    .woocommerce-checkout h3,
    .woocommerce-checkout #order_review_heading {
        font-size: 18px;
    }

    .page-template-default .entry-content,
    .single .entry-content {
        padding: 20px 16px;
    }
}

/* Fix logo squash on mobile (flex-shrink) */
.cp75-logo { flex-shrink: 0; display: flex; align-items: center; }
.cp75-logo-img { flex-shrink: 0; object-fit: contain; max-width: 100%; }
