/* ==========================
   CLEANBLUE VULTR-INSPIRED THEME
   ========================== */

/* GLOBAL */
body {
    background: #f5f7fa;
    font-family: "Inter", sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e3e8f0;
    padding: 15px 0;
}
.navbar-brand {
    font-size: 28px;
    font-weight: 700;
    color: #2176ff !important;
}

/* BUTTONS */
.btn-primary {
    background: #2176ff;
    color: #fff;
    border-radius: 8px;
    padding: 12px 18px;
    font-weight: 600;
}
.btn-primary:hover {
    background: #0f5be1;
}
.btn-outline-primary {
    border: 2px solid #2176ff;
    color: #2176ff;
    border-radius: 8px;
}
.btn-outline-primary:hover {
    background: #2176ff;
    color: #fff;
}

/* CARDS */
.card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.2s ease, box-shadow 0.2s;
    border-left: 5px solid #2176ff;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(33, 118, 255, 0.15);
}

/* EMOJI ICONS */
.ico-container {
    font-size: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e0f0ff;
    color: #2176ff;
    margin: 0 auto 10px;
}

/* HEADINGS */
h2 {
    font-size: 32px;
    font-weight: 600;
    color: #0f3f91;
}
h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0f3f91;
}
p {
    color: #6c7a99;
}

/* HOMEPAGE SECTIONS */
.section {
    padding: 50px 0;
}

/* PRICE BADGE */
.price-badge {
    background: #e0f0ff;
    padding: 5px 12px;
    border-radius: 8px;
    font-weight: 600;
    color: #2176ff;
}

/* COMPACT PRODUCTS & SERVICES */
.home .card.mb-3 {
    padding: 15px 10px;
    margin-bottom: 15px;
}
.home .card-title.pricing-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}
.home .card p {
    font-size: 14px;
    margin-bottom: 10px;
}
.home .btn-block {
    font-size: 13px;
    padding: 6px 10px;
}

/* ACTION ICON CARDS */
.action-icon-btns a {
    display: block;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 10px;
    text-align: center;
    border-left: 4px solid #2176ff;
    transition: all 0.2s ease;
}
.action-icon-btns a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(33, 118, 255, 0.12);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ico-container { width: 50px; height: 50px; font-size: 32px; }
    h2 { font-size: 28px; }
    h3 { font-size: 18px; }
    .home .card p { font-size: 13px; }
    .btn-block { font-size: 12px; padding: 5px 8px; }
}
@media (max-width: 480px) {
    .ico-container { width: 45px; height: 45px; font-size: 28px; }
    h2 { font-size: 24px; }
    h3 { font-size: 16px; }
    .home .card p { font-size: 12px; }
    .btn-block { font-size: 11px; padding: 4px 6px; }
}



/* PRODUCT CARDS */
.clean-card {
    border-radius: 10px;
    border: 1px solid #e5e9f2;
    transition: 0.2s;
}
.clean-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* ICON CARDS (Help + Account) */
.clean-icon-card {
    display: block;
    padding: 12px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e6ebf3;
    text-decoration: none;
    transition: 0.2s;
}
.clean-icon-card:hover {
    transform: translateY(-4px);
    background: #f5f9ff;
    border-color: #cbdaf7;
}
.ico-container {
    font-size: 36px;
}

/* Mobile fixes */
@media (max-width: 480px) {
    .ico-container {
        font-size: 30px;
    }
    .clean-card {
        padding: 14px;
    }
}



/* HIDE MOBILE CATEGORY & ACTION DROPDOWNS */
#order-standard_cart .sidebar-collapsed {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}


.custom-footer {
    text-align: center;       /* center text */
    font-size: 12px;          /* small text */
    color: #6c7a99;           /* grayish */
    margin-top: 5px;          /* spacing from copyright */
}


/* Remove grey/blur effect on cart icon */
.navbar-nav .cart-btn i {
    filter: none !important;
    opacity: 1 !important;
    color: #007bff !important; /* optional: your brand colour */
}

/* Remove dimming on hover for cart button */
.navbar-nav .cart-btn {
    opacity: 1 !important;
}

.navbar-nav .cart-btn:hover i {
    color: #0056b3 !important; /* darker shade on hover (optional) */
}



/* Reduce bottom gap under footer */
footer, .footer, #footer {
    padding-bottom: 5px !important;
    margin-bottom: 0 !important;
}

/* Also reduce spacing from main wrapper */
body, #main-body, .main-content {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}





