body{

    font-family:'Poppins',sans-serif;

    background:#f8f9fa;

    color:#1F2937;

}

a{

    text-decoration:none;

}

img{

    max-width:100%;

    height:auto;

}

.section-padding{

    padding:80px 0;

}

/* ===========================
   Brand colours
   Sapphire blue + gold accent
=========================== */

:root{

    --brand-primary:#1B4F9C;
    --brand-primary-hover:#123A78;
    --brand-primary-active:#0F2E5C;
    --brand-primary-light:#E9EFF8;

    --brand-accent:#C9A227;
    --brand-accent-hover:#B08F1F;

}

/* ===========================
   Logo
=========================== */

.header-logo{

    height: 80px;
    width: auto;
    transition: .3s ease;

}

.footer-logo{

    height: 85px;
    width: auto;

}

@media (max-width: 991px){

    .header-logo{

        height: 50px;

    }

    .footer-logo{

        height: 40px;

    }

}

/* ===========================
   Header
=========================== */

.navbar{

    padding:15px 0;

}

.navbar-brand img{

    max-height:90px;

}

.navbar-nav .nav-link{

    font-weight:450;

    color:#1F2937;

    margin:0 10px;

    transition:.3s;

}

.navbar-nav .nav-link:hover,

.navbar-nav .nav-link.active{

    color:var(--brand-primary);

}

.btn{

    border-radius:8px;

    padding:10px 22px;

    font-weight:500;

}

.btn-primary{

    background:var(--brand-primary);

    border-color:var(--brand-primary);

}

.btn-primary:hover,

.btn-primary:focus{

    background:var(--brand-primary-hover);

    border-color:var(--brand-primary-hover);

}

.btn-primary:active{

    background:var(--brand-primary-active) !important;

    border-color:var(--brand-primary-active) !important;

}

.btn-outline-primary{

    color:var(--brand-primary);

    border-color:var(--brand-primary);

}

.btn-outline-primary:hover,

.btn-outline-primary:focus{

    background:var(--brand-primary);

    border-color:var(--brand-primary);

    color:#fff;

}

/* ===========================
   Brand colour utilities
   (keeps text-primary / bg-primary / border-primary
   consistent with the rest of the site)
=========================== */

.text-primary{

    color:var(--brand-primary) !important;

}

.bg-primary{

    background-color:var(--brand-primary) !important;

}

.border-primary{

    border-color:var(--brand-primary) !important;

}

.bg-primary.bg-opacity-10,

.bg-primary-subtle{

    background-color:var(--brand-primary-light) !important;

}

/* ===========================
   Gold accent
   Use on prices and premium highlights only
=========================== */

.text-accent{

    color:var(--brand-accent) !important;

    font-weight:600;

}

/* ===========================
   Responsive
=========================== */

@media(max-width:991px){

    .navbar-nav{

        margin-top:20px;

        margin-bottom:20px;

    }

    .navbar-nav .nav-link{

        margin:8px 0;

    }

    .navbar .btn{

        width:100%;

    }

    .navbar .d-flex{

        flex-direction:column;

        align-items:stretch!important;

    }

}

/* ==========================================================
   USER DASHBOARD
========================================================== */

.dashboard-sidebar{
    position: sticky;
    top: 30px;
}

.user-avatar{
    width:90px;
    height:90px;
    border-radius:50%;
    background:var(--brand-primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    margin:auto;
}

.dashboard-menu{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.dashboard-menu .menu-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 16px;
    border-radius:12px;
    color:#495057;
    text-decoration:none;
    transition:all .3s ease;
    font-weight:500;
    border:none;
    background:transparent;
    width:100%;
}

.dashboard-menu .menu-item i{
    font-size:18px;
    width:22px;
}

.dashboard-menu .menu-item:hover{
    background:var(--brand-primary-light);
    color:var(--brand-primary);
    transform:translateX(4px);
}

.dashboard-menu .menu-item.active{
    background:var(--brand-primary);
    color:#fff;
    box-shadow:0 8px 20px rgba(27,79,156,.20);
}

.dashboard-menu hr{
    margin:18px 0;
}

.logout-btn{
    cursor:pointer;
}

.logout-btn:hover{
    background:#dc3545 !important;
    color:#fff !important;
}

.dashboard-card{
    border:none;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.dashboard-title{
    font-weight:700;
}

@media(max-width:991px){

    .dashboard-sidebar{

        position:relative;
        top:0;
        margin-bottom:20px;

    }

}

/* ==========================================================
   DASHBOARD STAT CARDS
========================================================== */

.stats-card{
    border-radius:18px;
    transition:.3s;
}

.stats-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 25px rgba(0,0,0,.08)!important;
}

.stats-icon{
    width:58px;
    height:58px;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
}

.bg-success{
    background:#198754!important;
}

.bg-warning{
    background:#ffc107!important;
    color:#212529!important;
}

.bg-danger{
    background:#dc3545!important;
}

.fs-13{
    font-size:13px;
}

.dashboard-card h5{
    font-size:1.35rem;
    font-weight:700;
    margin-bottom:1.25rem;
}

.dashboard-card strong{
    font-size:15px;
    font-weight:600;
}

.dashboard-card small{
    font-size:13px;
    color:#6c757d;
}

/* ==========================================================
   ACCOUNT DROPDOWN
========================================================== */

.dropdown-menu{

    border-radius:16px;
    padding:10px;
    border:none;
    box-shadow:0 10px 30px rgba(0,0,0,.10);

}

.dropdown-menu .dropdown-item{

    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 14px;
    border-radius:10px;
    color:#495057;
    font-weight:500;
    transition:all .25s ease;

}

.dropdown-menu .dropdown-item i{

    width:20px;
    font-size:18px;

}

.dropdown-menu .dropdown-item:hover{

    background:var(--brand-primary-light);
    color:var(--brand-primary);

}

.dropdown-menu .dropdown-item:hover i{

    color:var(--brand-primary);

}

.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active{

    background:#2F6FED;
    color:#fff;

}

.dropdown-menu .dropdown-item.active i,
.dropdown-menu .dropdown-item:active i{

    color:#fff;

}

.dropdown-divider{

    margin:.5rem 0;

}

.dropdown-menu .text-danger{

    color:#dc3545 !important;

}

.dropdown-menu .text-danger:hover{

    background:#fdeaea !important;
    color:#dc3545 !important;

}

/* ==========================================================
   SITE TYPOGRAPHY & PRODUCT DESIGN
========================================================== */

/* Section Headings */
.section-title{
    font-size:1.75rem;
    font-weight:700;
    line-height:1.3;
    color:#1F2937;
}

.section-title + p{
    font-size:.95rem;
    color:#6c757d;
    line-height:1.6;
}

/* ==========================================
   PRODUCT CARDS
========================================== */

.product-card{
    border-radius:14px;
    transition:.25s ease;
}

.product-card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 28px rgba(0,0,0,.08)!important;
}

.product-image img{
    aspect-ratio:16/9;
    object-fit:cover;
}

.product-title{
    font-size:15px;
    font-weight:600;
    line-height:1.4;
    margin-bottom:10px;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.product-title a{
    color:#1F2937;
    text-decoration:none;
}

.product-title a:hover{
    color:var(--brand-primary);
}

.product-description{
    font-size:13px;
    line-height:1.55;
    color:#6c757d;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.product-price{
    color:var(--brand-accent);
    font-size:21px;
    font-weight:700;
}

/* ==========================================
   MEMBERSHIP CARDS
========================================== */

.membership-title{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:64px;
    width:100%;

    padding:0 20px;

    background:linear-gradient(180deg,#f8fbff 0%,#eef5ff 100%);
    border:1px solid #dfe9f8;
    border-radius:16px;

    box-shadow:0 6px 18px rgba(27,79,156,.08);

    font-size:1.1rem;      /* 17.5px */
    font-weight:700;
    line-height:1.25;

    transition:.3s;
}

.membership-title a{
    color:#1F2937;
    text-decoration:none;
}

.membership-title a:hover{
    color:var(--brand-primary);
}

.membership-card:hover .membership-title{
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(27,79,156,.15);
}

.membership-feature-list{
    list-style:none;
    padding:0;
    margin:0 0 1.5rem;
}

.membership-feature-list li{
    display:flex;
    align-items:flex-start;

    font-size:.86rem;
    color:#495057;

    line-height:1.45;
    margin-bottom:.65rem;
}

.membership-feature-list i{
    color:#16a34a !important;
    font-size:15px;
    margin-top:3px;
    margin-right:8px;
    flex-shrink:0;
}

.membership-label{
    font-size:12px;
    font-weight:600;
    color:#198754;
}

.card-body h2.text-primary{
    font-size:2rem;
    font-weight:700;
}

.card-body{
    padding:1.35rem;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:768px){

    .card-img-top{
        height:170px!important;
        object-fit:cover;
    }

    section.py-5{
        padding-top:3rem!important;
        padding-bottom:3rem!important;
    }

    .section-title{
        font-size:1.55rem;
    }

    .membership-title{
        font-size:1.2rem;
        padding:1rem .75rem;
    }

    .membership-feature-list li{
        font-size:.82rem;
    }

    .product-title{
        font-size:.9rem;
    }

    .product-description{
        font-size:.8rem;
    }

    .product-price{
        font-size:1.15rem;
    }

    .product-card .btn,
    .membership-card .btn{
        font-size:.85rem;
        padding:.45rem .75rem;
    }

    .display-4{
        font-size:2.2rem;
    }

    .btn-lg{
        font-size:.95rem;
        padding:.65rem 1rem;
    }
}

/* ==========================================
   GOOGLE REVIEWS
========================================== */

.reviewer-name{
    font-size:1.1rem;
    font-weight:500;
    line-height:1.3;
    color:#1F2937;
    margin-bottom:.25rem;
}

.review-card p{
    line-height:1.7;
}

.review-card small{
    font-size:.9rem;
    color:#6c757d;
}

/* =========================================================
   Global Search
   ========================================================= */

.global-search-wrapper {
    background: #f8f9fa;
    border-top: 1px solid #eef0f3;
    border-bottom: 1px solid #e9ecef;
    padding: 14px 0;
}

.global-search-form {
    margin: 0 auto;
}

.global-search-box {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #dfe3e8;
    border-radius: 14px;
    padding: 5px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.global-search-box:focus-within {
    border-color: #0d6efd;
    box-shadow: 0 5px 18px rgba(13, 110, 253, 0.12);
}

.global-search-icon {
    position: absolute;
    left: 18px;
    color: #6c757d;
    font-size: 1.1rem;
    z-index: 2;
}

.global-search-input {
    height: 46px;
    border: 0 !important;
    box-shadow: none !important;
    padding-left: 48px;
    padding-right: 15px;
    font-size: 0.95rem;
    border-radius: 10px;
}

.global-search-input::placeholder {
    color: #9aa0a6;
}

.global-search-button {
    height: 46px;
    min-width: 125px;
    border-radius: 10px;
    font-weight: 500;
    white-space: nowrap;
}


/* =========================================================
   Global Search - Mobile
   ========================================================= */

@media (max-width: 767.98px) {

    .global-search-wrapper {
        padding: 10px 0;
    }

    .global-search-box {
        border-radius: 12px;
    }

    .global-search-input {
        height: 44px;
        font-size: 0.9rem;
        padding-left: 44px;
    }

    .global-search-button {
        height: 44px;
        min-width: 48px;
        padding: 0 14px;
    }

    .global-search-button i {
        margin-right: 0 !important;
    }

    .global-search-button {
        font-size: 0;
    }

    .global-search-button i {
        font-size: 1rem;
    }

    .global-search-icon {
        left: 16px;
    }
}