/* Start custom CSS for html, class: .elementor-element-f3351c5 *//* --- 1. HEADER LAYOUT --- */
.ortho-header-wrapper {
    background: #fff;
    position: relative;
    z-index: 1000;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Clean font matches image */
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px; /* More spacing to match image */
    max-width: 1400px;
    margin: 0 auto;
}

/* Logos */
.logo-mobile { display: none; }
.logo-desktop { display: block; max-height: 55px; } /* Adjusted height to match scale */

/* --- 2. NAVIGATION STYLES (Orange Links) --- */
.header-nav {
    display: flex;
    align-items: center;
    gap: 30px; /* Spacing between links */
    margin-left: auto; /* Pushes nav to the right */
    margin-right: 30px; /* Space between Nav and Cart */
}

.header-nav a {
    text-decoration: none;
    color: #ed8b00; /* ORANGE COLOR matches image */
    font-weight: 400;
    font-size: 16px;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: #c47200; /* Darker orange on hover */
}

/* --- 3. "SHOP NOW" BUTTON STYLE --- */
/* This targets specifically the link with class 'header-cta' */
.header-nav a.header-cta {
    background-color: #1a1a1a; /* Black background */
    color: #ffffff !important; /* White text */
    padding: 10px 25px;
    border-radius: 50px; /* Pill shape */
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.3s;
}

.header-nav a.header-cta:hover {
    background-color: #333; /* Dark grey on hover */
    color: #fff;
}

/* --- 4. CART ICON & BADGE --- */
.header-extras {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-icon-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a; /* Black Icon */
    text-decoration: none;
}

.cart-icon-link svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5; /* Slightly thicker to match bold look */
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: #ff0000; /* Red Badge */
    color: white;
    font-size: 11px;
    font-weight: bold;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff; /* Small white border makes it pop */
}

/* --- 5. MOBILE MENU TOGGLE --- */
.mobile-toggle-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
}
.mobile-toggle-btn .bar {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    transition: 0.3s;
}

/* --- 6. MOBILE RESPONSIVENESS --- */
@media (max-width: 900px) {
    .logo-desktop { display: none; }
    .logo-mobile { display: block; max-height: 40px; }
    .mobile-toggle-btn { display: flex; }
    
    .header-container { padding: 10px 20px; }

    /* Hide Nav by Default on Mobile */
    .header-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        margin: 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        visibility: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 999;
    }

    .header-nav.mobile-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
    
    /* On mobile, reset the Shop button to look consistent or keep it button-like */
    .header-nav a.header-cta {
        width: 80%;
        text-align: center;
    }
}

/* --- 7. CART SLIDER (Drawer) --- */
.cart-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}
.cart-overlay.open { visibility: visible; opacity: 1; }

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 320px;
    height: 100%;
    background: #fff;
    z-index: 2001;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}
.cart-sidebar.open { right: 0; }

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
}
.cart-header h3 { margin: 0; font-size: 18px; color: #333; }
.cart-body { padding: 20px; overflow-y: auto; flex-grow: 1; }
.close-cart { background: none; border: none; font-size: 28px; cursor: pointer; color: #333; }/* End custom CSS */