:root {
    --theme-bg-blue: #054086;
}

/* AD Badge */
.ad-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffcc00;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* CARD HOVER EFFECT */
.shop-card {
    transition: all 0.25s ease;
    border-radius: 14px !important;
    cursor: pointer;
    border: 1px solid #e6e6e6 !important;
    padding: 14px !important;
}

.shop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
}

/* IMAGE */
.product-image {
    height: 135px;
    object-fit: contain;
}

/* BUTTONS */
.btn-view {
    border: 1px solid var(--theme-bg-blue);
    background: #fff;
    color: var(--theme-bg-blue);
    padding: 7px 0;
    font-size: 13px;
    border-radius: 6px;
    width: 48%;
    font-weight: 600;
    transition: .25s;
    text-align: center;
}

.btn-view:hover {
    background: var(--theme-bg-blue);
    color: #fff;
}

.btn-cart {
    background: var(--theme-bg-blue);
    color: #fff;
    padding: 7px 0;
    font-size: 13px;
    border-radius: 6px;
    width: 48%;
    font-weight: 600;
    border: none;
    transition: .25s;
}

.btn-cart:hover {
    opacity: .9;
}

.info-text {
    font-size: 13px;
    margin-bottom: 3px;
    color: #555;
}

.section-gap {
    margin-top: 4px;
    margin-bottom: 4px;
}



/* Premium Checkboxes */
.form-check-input {
    width: 18px;
    height: 18px;
    border: 2px solid #7059a8 !important;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #7059a8 !important;
    border-color: #7059a8 !important;
}

/* Hover highlight for category items */
.filter-item {
    border: 1px solid #e3e3e3;
    padding: 8px 10px;
    border-radius: 6px;
    transition: all 0.2s;
}

.filter-item:hover {
    background: #f7f4ff;
    /* light purple tone */
    border-color: #7059a8;
}

/* Subcategory indentation border */
.subcat-box {
    border-left: 2px solid #7059a8;
    padding-left: 12px;
    margin-left: 4px;
}

/* PAGE HEAD STYLES */
.page-head {
    margin-bottom: 2rem;
}


.list-inline-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.5rem;
}

.breadcrumb-item {
    display: inline;
}

.breadcrumb-item a {
    color: #0066cc;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

/* NAV TABS STYLES */
.nav-tabs {
    border-bottom: 2px solid #e9ecef;
}

.nav-tabs .nav-link {
    color: #6c757d;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-tabs .nav-link:hover {
    color: #0066cc;
    border-bottom-color: #0066cc;
}

.nav-tabs .nav-link.active {
    color: #0066cc;
    border-bottom-color: #0066cc;
    background-color: transparent;
}

.nav-tabs .nav-link i {
    font-size: 1.1rem;
}

.product-thumb-link:hover {
    border-color: #054086 !important;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Filter Tags Styling */
.filter-isotope.filter-tag,
.filters.filter-tag {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-isotope.filter-tag li,
.filters.filter-tag li {
    display: inline-block;
}

.filter-isotope.filter-tag li a.tag-btn,
.filters.filter-tag li a.tag-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-isotope.filter-tag li a.tag-btn:hover,
.filters.filter-tag li a.tag-btn:hover {
    background: #054086;
    color: #fff;
    border-color: #054086;
}

.filter-isotope.filter-tag li.active a.tag-btn,
.filters.filter-tag li.active a.tag-btn {
    background: #054086;
    color: #fff;
    border-color: #054086;
}

.filter-isotope.filter-tag li input[type="radio"],
.filters.filter-tag li input[type="radio"] {
    display: none;
}