/* desktop.css - Desktop styles only */
/* ============================
   OTHOBA CART DRAWER
============================ */
#cartOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9998;
}

#cartDrawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 18px rgba(0,0,0,0.18);
    transition: 0.35s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

#cartDrawer.active {
    right: 0;
}

#cartOverlay.active {
    opacity: 1;
    visibility: visible;
}

/* Header */
.cart-header {
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h5 {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

#closeCart {
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
}

/* Body */
.cart-body {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}

.empty-cart {
    font-size: 14px;
    color: #555;
}

    /* ============================
   COLORFUL SOCIAL ICONS
============================ */
.footer-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social.facebook { background: #1877f2; }
.footer-social.twitter { background: #1da1f2; }
.footer-social.linkedin { background: #0a66c2; }
.footer-social.youtube { background: #ff0000; }

.footer-social:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    opacity: 0.9;
}

    .othoba-footer {
    background: linear-gradient(#ffffff, #f7f4f4);
    justify-content: center;
}

.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 6px;
}
.footer-links a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}
.footer-links a:hover {
    color: #0d6efd;
}

    /* ============================
       WHITE HEADER STYLES
    ============================ */
    
    /* HEADER BACKGROUND - CHANGED TO WHITE */
    .archon-header {
        background: #ffffff;
        padding: 12px 0;
        color: #333;
        font-family: 'Segoe UI', sans-serif;
        border-bottom: 1px solid #f0f0f0;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        position: relative;
        top: 0;
        z-index: 1000;
    }

    /* DESKTOP LAYOUT */
    .archon-header .container {
        gap: 30px;
        display: flex;
        align-items: center;
    }

    /* LOGO */
    .logo img {
        height: 55px;
        width: auto;
        transition: transform 0.3s ease;
    }

    .logo img:hover {
        transform: scale(1.03);
    }

    /* ============================
       ENHANCED SEARCH BAR
    ============================ */
    .header-search {
        flex: 1;
        max-width: 650px;
    }

    .header-search form {
        position: relative;
        width: 100%;
    }

    .header-search input {
        width: 100%;
        height: 48px;
        border-radius: 30px;
        border: 2px solid #e8e8e8;
        padding: 0 50px 0 50px;
        font-size: 15px;
        outline: none;
        background: #ffffff;
        transition: all 0.3s ease;
        box-shadow: 0 3px 12px rgba(0,0,0,0.05);
    }

    .header-search input:hover {
        border-color: #d0d0d0;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }

    .header-search input:focus {
        border-color: #0d6efd;
        box-shadow: 0 5px 20px rgba(13, 110, 253, 0.15);
    }

    .search-icon {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #777;
        font-size: 16px;
        z-index: 2;
    }

    /* Search suggestions dropdown */
    .search-suggestions {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        max-height: 300px;
        overflow-y: auto;
        display: none;
        z-index: 1001;
        margin-top: 5px;
    }

    .search-suggestions.active {
        display: block;
    }

    .suggestion-item {
        padding: 12px 20px;
        border-bottom: 1px solid #f5f5f5;
        font-size: 14px;
        color: #333;
        cursor: pointer;
        transition: background 0.2s ease;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .suggestion-item:hover {
        background: #f8f9fa;
    }

    .suggestion-item i {
        color: #777;
        font-size: 12px;
    }

    /* ============================
       RIGHT ACTIONS SECTION
    ============================ */
    .header-actions {
        display: flex;
        align-items: center;
        gap: 25px;
    }

    /* AUTH LINK - DARK COLOR */
    .auth-link {
        color: #333;
        font-size: 14px;
        text-decoration: none;
        white-space: nowrap;
        font-weight: 600;
        padding: 8px 16px;
        border-radius: 20px;
        border: 2px solid #e8e8e8;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .auth-link:hover {
        color: #0d6efd;
        border-color: #0d6efd;
        background: rgba(13, 110, 253, 0.05);
        transform: translateY(-1px);
    }

    /* ============================
       ICONS SECTION
    ============================ */
    .archon-icons {
        display: flex;
        align-items: center;
        gap: 28px;
    }

    /* SINGLE ICON - DARK COLOR */
    .archon-icon {
        position: relative;
        text-align: center;
        color: #333;
        text-decoration: none;
        font-size: 13px;
        padding: 8px 5px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    /* ICON SYMBOL */
    .archon-icon i {
        font-size: 24px;
        display: block;
        margin-bottom: 4px;
        color: #333;
        transition: all 0.3s ease;
    }

    /* TEXT BELOW ICON */
    .icon-text {
        font-size: 12px;
        font-weight: 600;
        display: block;
        color: #333;
        transition: all 0.3s ease;
    }

    /* BADGE (EXACT POSITION) */
    .archon-badge {
        position: absolute;
        top: 0;
        right: 0;
        background: #ff4d4d;
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        padding: 2px 6px;
        border-radius: 50%;
        line-height: 1;
        min-width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 5px rgba(255, 77, 77, 0.3);
    }

    /* HOVER EFFECTS */
    .archon-icon:hover {
        color: #0d6efd;
        background: rgba(13, 110, 253, 0.05);
        transform: translateY(-2px);
    }
    
    .archon-icon:hover i {
        color: #0d6efd;
        transform: scale(1.1);
    }
    
    .archon-icon:hover .icon-text {
        color: #0d6efd;
    }

    /* ============================
       ANIMATIONS
    ============================ */
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .search-suggestions {
        animation: fadeIn 0.3s ease-out;
    }

    /* Loading animation for search */
    .search-loading {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        display: none;
    }

    .search-loading.active {
        display: block;
    }

    .spinner {
        width: 16px;
        height: 16px;
        border: 2px solid #f3f3f3;
        border-top: 2px solid #0d6efd;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }