/* Shared styles for sitweb templates */

:root {
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --primary: #e86f1c;
    --secondary-orange: #ff8c1a;
}

/* Global font reset - all elements use Inter by default */
* {
    font-family: var(--font-body) !important;
}

/* All elements use the same Inter font */

html,
body {
    font-family: var(--font-body) !important;
}

/* Ensure all text elements use body font unless specified */
p, span, div, a, li, td, th, label, input, textarea, select, button, .btn, .nav-link, .hero-subtitle, .section-subtitle, .dish-description, .cta-text {
    font-family: var(--font-body) !important;
}

/* ---- Headings ---- */
h1 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
}

/* Keep base template spacing consistent */
body {
    margin: 0;
}

/* Desktop Cart Styles */
.desktop-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--primary);
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.desktop-cart:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.desktop-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--secondary-orange);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

@media (max-width: 768px) {
    .desktop-cart {
        display: none;
    }
}