/*
Theme Name: Custom Theme
Theme URI: http://wordpress.org/themes/twentythirteen
Author: John Dev
Author URI: http://johndev.com/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: black, brown, orange, tan, white, yellow, light, one-column, two-columns, right-sidebar, flexible-width, custom-header, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, translation-ready
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* Header */

       :root {
    --brand-blue: #2b2f8c;
    --black: #000000;
    --white: #ffffff;
    --gray-light: #f4f4f4;
}

.main-header {
    background: var(--white);
    border-bottom: 1px solid #ececec;
    padding: 12px 0;
}

.header-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logo */
.logo-img {height: 40px !important;width: auto;}

/* Large Search Bar Styling */
.header-search-expanded {
    flex-grow: 1;
    max-width: 600px;
}

.search-form-pro {
    display: flex;
    background: var(--gray-light);
    border-radius: 8px;
    padding: 4px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.search-form-pro:focus-within {
    background: var(--white);
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 4px rgba(43, 47, 140, 0.1);
}

.search-input {
    flex-grow: 1;
    border: none;
    background: transparent;
    padding: 10px 15px;
    outline: none;
    font-size: 14px;
    width:300px;
}
.mobile-menu-btn {
    background: none;
    border: 1px solid #ddd;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    position: relative;
    color: var(--black);
    transition: 0.3s;
}
.search-submit {
    background: var(--brand-blue);
    color: var(--white);
    border: none;
    width: 45px;
    border-radius: 6px;
    transition: 0.2s;
}

.search-submit:hover { background: var(--black); }

/* Navigation */
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.nav-links a:hover { color: var(--brand-blue); }

/* Dropdowns */
.custom-dropdown {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px;
    margin-top: 15px !important;
}

.custom-dropdown .dropdown-item {
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
}

.custom-dropdown .dropdown-item:hover {
    background: var(--brand-blue);
    color: var(--white);
}

/* Buttons & Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-signup-brand {
    background: var(--brand-blue);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    transition: 0.3s;
}

.btn-signup-brand:hover { background: var(--black); }

.cart-trigger-btn {
    background: none;
    border: 1px solid #ddd;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    position: relative;
    color: var(--black);
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-trigger-btn:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

.cart-count-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--brand-blue);
    color: var(--white);
    font-size: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.btn-icon-text {
    background: none;
    border: none;
    font-weight: 600;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 2px;
}

.action-divider {
    width: 1px;
    height: 25px;
    background: #ddd;
}


/* --- Brand Colors --- */
:root {
    --primary-blue: #2b2f8c;
    --brand-black: #1a1a1a;
    --brand-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.98);
}

/* --- Offcanvas Sidebar --- */
.mobile-sidebar {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-right: 3px solid var(--primary-blue); /* Bold brand accent line */
    width: 300px !important;
}

.offcanvas-header {
    padding: 2rem 1.5rem;
    background: var(--brand-white);
}

/* --- Modern Search Bar (Navy Theme) --- */
.search-glass {
    display: flex;
    background: #f1f3f9;
    border-radius: 4px; /* Sharper edges for a more professional look */
    padding: 8px 15px;
    align-items: center;
    border: 1px solid transparent;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.search-glass:focus-within {
    background: var(--brand-white);
    border-color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(43, 47, 140, 0.15);
}
.search-glass input {
    border: none;
    background: none;
    outline: none;
    width: 100%;
    font-size: 12px;
    color: var(--brand-black);
}
.search-glass button {
    border: none;
    background: none;
    color: var(--primary-blue);
    font-weight: bold;
}

/* --- Nav Links with Hover Interaction --- */
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}
.mobile-nav-list a {
    display: flex;
    align-items: center;
    padding: 10px 10px;
    color: var(--brand-black);
    text-decoration: none;
     font-weight: 500; 
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.2s ease-in-out;
}
.mobile-nav-list a i {
    margin-right: 10px;
    width: 20px;
    color: var(--primary-blue);
}
.mobile-nav-list a:hover {
    background: var(--primary-blue);
    color: var(--brand-white);
    padding-left: 30px; /* Slide effect */
}
.mobile-nav-list a:hover i {
    color: var(--brand-white);
}

/* --- Action Buttons --- */
.btn-login-mobile {
    width: 100%;
    background: var(--primary-blue);
    color: var(--brand-white);
    border: 2px solid var(--primary-blue);
    padding: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}
.btn-login-mobile:hover {
    background: transparent;
    color: var(--primary-blue);
}

.user-pill {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-blue);
    padding: 12px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}


