@font-face {
    font-family: 'Kalpurush';
    src: url('/assets/fonts/kalpurush/Kalpurush.woff2') format('woff2'),
        url('/assets/fonts/kalpurush/Kalpurush.woff') format('woff'),
        url('/assets/fonts/kalpurush/Kalpurush.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.fnt-kalp {
    font-family: 'Kalpurush';
}

/*=============================================
=            BRAND VARIABLES                   =
=============================================*/
:root {
    --brand-primary: #0B4F37;
    --brand-secondary: #1A7B4C;
    --brand-light: rgba(11, 79, 55, 0.1);
    --brand-lighter: rgba(11, 79, 55, 0.05);
    --brand-soft: rgba(11, 79, 55, 0.03);
    --brand-shadow: rgba(11, 79, 55, 0.15);
    --brand-gradient: linear-gradient(135deg, #0B4F37 0%, #1A7B4C 100%);
    --brand-gradient-light: linear-gradient(135deg, rgba(11, 79, 55, 0.05) 0%, rgba(26, 123, 76, 0.05) 100%);
}

/*=============================================
=            TYPOGRAPHY & LINKS                =
=============================================*/
body {
    color: #333;
}

html, body {
  transform: none !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--brand-dark, var(--brand-primary));
}

a {
    color: var(--brand-dark, var(--brand-primary));
    text-decoration: none;
}

a:hover {
    color: var(--brand-primary);
    text-decoration: underline;
}

.btn-outline-primary {
    --bs-btn-color: var(--brand-primary);;
    --bs-btn-border-color: var(--brand-primary);;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--brand-primary);;
    --bs-btn-hover-border-color: var(--brand-primary);;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--brand-primary);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--brand-primary);;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--brand-primary);;
    --bs-gradient: none;
}
/* Brand Text Colors */
.brand-primary-text,
.brand-heading,
.brand-highlight {
    color: var(--brand-primary);
    border-left: 10px solid var(--brand-primary);
    padding-left: 10px;
}

.brand-subtitle {
    color: #6c757d;
    font-size: 1rem;
    font-weight: normal;
}

.brand-text-muted {
    color: #718096 !important;
}
.bg-veterinary{
    background-color: #F59B00 !important;
}

/*============================================
=            MARGINGS 
==============================================*/

.ml-1 {
    margin-left: 0.25rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.ml-3 {
    margin-left: 0.75rem;
}

.ml-4 {
    margin-left: 1rem
}


/*============================================
=            PADDINGS 
==============================================*/
.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-70 {
    padding-top: 70px;
}


/*=============================================
=            BUTTONS & BADGES                  =
=============================================*/
/* Primary Button */
.btn-primary {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
}

.btn-primary:hover {
    background: var(--brand-secondary);
    border-color: var(--brand-secondary);
}

/* Outline Primary */
.btn-outline-primary {
    color: var(--brand-primary);
    border-color: var(--brand-primary);
}

.btn-outline-primary:hover {
    background: var(--brand-primary);
    color: #fff;
}

/* Brand Buttons */
.brand-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 5px 15px;
    background: transparent;
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    height: 32px;
}

.brand-btn-outline:hover {
    background: var(--brand-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 79, 55, 0.2);
    text-decoration: none;
}

.brand-btn-success {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    padding: 5px 15px;
    height: 32px;
    background: var(--brand-gradient);
    border: none;
    color: white;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.brand-btn-success:hover {
    background: linear-gradient(135deg, #1A7B4C 0%, #0B4F37 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 79, 55, 0.3);
    text-decoration: none;
}

/* Alphabet Buttons */
.alphabet-btn {
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.alphabet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(11, 79, 55, 0.2);
}

.active-brand {
    background: var(--brand-primary) !important;
    border-color: var(--brand-primary) !important;
    color: white !important;
}

.outline-brand {
    color: var(--brand-primary) !important;
    border-color: var(--brand-primary) !important;
    background: transparent !important;
}

.outline-brand:hover {
    background: var(--brand-primary) !important;
    color: white !important;
    border-color: var(--brand-primary) !important;
}

/* Badges */
.badge-primary {
    background-color: var(--brand-primary);
    color: #fff;
}

.badge-info {
    background-color: var(--brand-light);
    color: var(--brand-primary);
}

.badge-success {
    background-color: #28a745;
    color: #fff;
}

.badge-danger {
    background-color: #dc3545;
    color: #fff;
}

.badge-warning {
    background-color: #ffc107;
    color: #212529;
}

.badge-secondary {
    background-color: #6c757d;
    color: #fff;
}

.badge-dark {
    background-color: #343a40;
    color: #fff;
}

.badge-light {
    background-color: #f8f9fa;
    color: #212529;
    border: 1px solid #ddd;
}

/* Badge Styles */
.badge-pill {
    border-radius: 50px;
    padding: 4px 10px;
}

.badge-sm {
    font-size: 10px;
    padding: 2px 6px;
}

.badge-lg {
    font-size: 14px;
    padding: 6px 12px;
}

.brand-badge-pill,
.brand-strength-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 16px;
    background: var(--brand-light);
    color: var(--brand-primary);
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.8rem;
}

.brand-badge {
    background: var(--brand-light);
    color: var(--brand-primary);
    border-radius: 30px;
    padding: 6px 12px;
}

.brand-count-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
}

/*=============================================
=            ICONS & WRAPPERS                  =
=============================================*/
.brand-icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--brand-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(11, 79, 55, 0.2);
}

.brand-icon-circle {
    width: 50px;
    height: 50px;
    background: var(--brand-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--brand-primary);
}

.brand-header-icon {
    color: rgba(255, 255, 255, 0.9);
}

.brand-icon-small {
    font-size: 0.9rem;
    opacity: 0.7;
}

.empty-state-icon {
    width: 60px;
    height: 60px;
    background: var(--brand-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--brand-primary);
    font-size: 24px;
    opacity: 0.5;
}

.empty-state-icon.large {
    width: 80px;
    height: 80px;
    font-size: 32px;
}

.brand-empty-icon {
    font-size: 4rem;
    color: var(--brand-light);
}

/*=============================================
=            CARDS & CONTAINERS                =
=============================================*/
/* Generic Card */
.brand-card,
.brand-details-card,
.brand-sidebar-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px var(--brand-shadow);
    border: 1px solid var(--brand-light);
    transition: all 0.3s ease;
}


.brand-card:hover,
.brand-details-card:hover,
.brand-sidebar-card:hover {
    box-shadow: 0 15px 40px rgba(11, 79, 55, 0.15);
}

.brand-card-header {
    background: var(--brand-gradient);
    color: white;
    padding: 10px;
    border-bottom: none;
}

/* Prices Card */
.brand-prices-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 79, 55, 0.08);
    border: 1px solid var(--brand-light);
}

.prices-header {
    background: var(--brand-gradient);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.prices-body {
    padding: 20px;
}

/* Also Available Card */
.brand-also-available {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 79, 55, 0.08);
    border: 1px solid var(--brand-light);
}

.also-header {
    background: var(--brand-light);
    color: var(--brand-primary);
    padding: 10px;
    display: flex;
    align-items: center;
    font-weight: 600;
    border-bottom: 2px solid var(--brand-primary);
}

.also-header h5 {
    font-size: 16px;
}

.also-body {
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Sidebar */
.sidebar-header {
    background: var(--brand-gradient);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.sidebar-header i {
    font-size: 1.2rem;
}

.sidebar-body {
    padding: 15px;
}

.sidebar-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--brand-light);
}

/* Alphabet Bar */
.brand-gradient-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.brand-left-border {
    border-left: 4px solid var(--brand-primary);
}

.brand-shadow {
    box-shadow: 0 4px 15px rgba(11, 79, 55, 0.1);
}

/*=============================================
=            LIST ITEMS & SECTIONS             =
=============================================*/
.details-section {
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.details-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-title {
    color: var(--brand-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--brand-light);
    display: flex;
    align-items: center;
}

.section-title i {
    color: var(--brand-primary);
    opacity: 0.8;
}

.section-content {
    color: #2d3748;
    line-height: 1.7;
    font-size: 0.95rem;
    padding-left: 10px;
}

/* List Items */
.brand-border-light {
    border-color: var(--brand-light) !important;
}

.brand-number {
    color: var(--brand-primary);
    font-weight: 600;
    opacity: 0.6;
}

.brand-link,
.brand-generic-link {
    color: var(--brand-primary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.brand-link:hover,
.brand-generic-link:hover {
    color: var(--brand-secondary);
    transform: translateX(5px);
}

.brand-generic-link {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 5px 16px;
    background: var(--brand-light);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
}

.brand-generic-link:hover {
    background: var(--brand-primary);
    color: white;
}

.brand-generic-link:hover i {
    color: white;
}

/* Brands List */
.brands-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: var(--brand-soft);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.brand-item:hover {
    background: white;
    border-color: var(--brand-primary);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(11, 79, 55, 0.1);
}

.brand-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-item-icon {
    color: var(--brand-primary);
    font-size: 1.1rem;
    opacity: 0.7;
}

.brand-item-name {
    color: #2d3748;
    font-weight: 500;
    font-size: 0.95rem;
}

.brand-item-arrow {
    color: var(--brand-primary);
    font-size: 0.8rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.brand-item:hover .brand-item-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Also Available Items */
.also-available-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.available-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: var(--brand-soft);
    border-radius: 8px;
}

.available-item-name {
    color: #2d3748;
    font-size: 0.9rem;
    font-weight: 500;
}

.available-item-badge {
    background: var(--brand-light);
    color: var(--brand-primary);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.also-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: var(--brand-soft);
    color: var(--brand-primary);
    border-radius: 30px;
    font-size: 0.9rem;
    border: 1px solid var(--brand-primary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.also-badge:hover {
    background: var(--brand-primary);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(11, 79, 55, 0.2);
    border-color: var(--brand-primary);
}

.also-badge:hover .also-form,
.also-badge:hover .also-brand {
    color: white;
}


/* Price Items */
.price-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--brand-light);
}

.price-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.price-title {
    padding-right: 10px;
    color: var(--brand-primary);
}

.price-details {
    flex: 1;
}

.price-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-primary);
}

.price-pack-info {
    color: #6c757d;
    font-size: 0.9rem;
    margin-left: 10px;
}

.price-box-title {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 5px;
    padding-left: 15px;
    border-left: 2px solid var(--brand-light);
}

/* Manufacturer */
.brand-manufacturer {
    font-size: 0.9rem;
    color: #4a5568;
    padding: 10px 0;
    border-bottom: 2px solid var(--brand-light);
}

/* List Group Hover */
.list-group-item {
    transition: all 0.3s ease;
}

.list-group-item:hover {
    background: var(--brand-lighter);
}

/*=============================================
=            FAQ SECTION                       =
=============================================*/
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item-card {
    background: white;
    border: 1px solid var(--brand-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(45,55,72,0.08);
}

.faq-item-card:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 4px 12px rgba(11, 79, 55, 0.1);
}

.faq-question-wrapper {
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    transition: all 0.3s ease;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.faq-question-wrapper:hover {
    background: var(--brand-soft);
}

.faq-question-wrapper.active {
    background: var(--brand-gradient-light);
    border-bottom: 1px solid var(--brand-light);
}

.faq-question-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--brand-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-question-wrapper:hover::after,
.faq-question-wrapper.active::after {
    transform: scaleX(1);
}

.faq-question-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--brand-primary);
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.faq-question-wrapper:hover::before,
.faq-question-wrapper.active::before {
    transform: scaleY(1);
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    transition: transform 0.3s ease;
}

.faq-icon i {
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.faq-question-text {
    color: #2d3748;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 600;
}

.faq-question-wrapper.active .faq-question-text {
    color: var(--brand-primary);
}

.faq-expand-badge {
    width: 28px;
    height: 28px;
    background: var(--brand-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.faq-question-wrapper:hover .faq-expand-badge,
.faq-question-wrapper.active .faq-expand-badge {
    background: var(--brand-primary);
    color: white;
}

.faq-question-wrapper:hover .faq-expand-badge {
    transform: scale(1.1);
}

.faq-answer-wrapper {
    background: var(--brand-soft);
    border-top: 1px solid var(--brand-light);
    animation: slideDown 0.3s ease;
}

.faq-answer-content {
    padding: 20px;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.7;
    border-radius: 8px;
}

.plain-text-content {
    background: var(--brand-soft);
    padding: 20px;
    border-radius: 12px;
    color: #4a5568;
    line-height: 1.7;
    border-left: 3px solid var(--brand-primary);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*=============================================
=            MODAL & GENERIC CARDS             =
=============================================*/
.brand-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.brand-modal-header {
    background: var(--brand-gradient);
    color: white;
    border-bottom: none;
    padding: 1.2rem 1.5rem;
}

.brand-modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.brand-spinner {
    color: var(--brand-primary) !important;
}

/* Generic Card for Modal */
.generic-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: white;
    border: 1px solid var(--brand-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.generic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(11, 79, 55, 0.15);
    border-color: var(--brand-primary);
}

.generic-card-content {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.generic-name {
    font-size: 1rem;
    font-weight: 500;
    color: #2d3748;
    line-height: 1.5;
}

.highlight-match {
    background: var(--brand-light);
    color: var(--brand-primary);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.generic-card:hover .highlight-match {
    background: var(--brand-primary);
    color: white;
}

.view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: var(--brand-soft);
    color: var(--brand-primary);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--brand-light);
    margin-top: auto;
    width: fit-content;
}

.view-btn i {
    margin-right: 0.5rem;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.generic-card:hover .view-btn {
    background: var(--brand-gradient);
    color: white;
    border-color: transparent;
    transform: scale(1.05);
}

.generic-card:hover .view-btn i {
    transform: translateX(4px);
}

/*=============================================
=            PAGINATION                        =
=============================================*/
.brand-pagination .pagination {
    margin-bottom: 0;
}

.brand-pagination .page-link {
    color: var(--brand-primary);
    border: 1px solid rgba(11, 79, 55, 0.2);
    margin: 0 3px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.brand-pagination .page-link:hover {
    background: var(--brand-light);
    color: var(--brand-primary);
    border-color: var(--brand-primary);
}

.brand-pagination .page-item.active .page-link {
    background: var(--brand-gradient);
    border-color: var(--brand-primary);
    color: white;
}

.brand-pagination .page-item:first-child .page-link,
.brand-pagination .page-item:last-child .page-link {
    border-radius: 8px;
}

/*=============================================
=            EMPTY STATES                      =
=============================================*/
.brand-empty-heading {
    color: var(--brand-primary);
}

/*=============================================
=            COVAX GALLERY                     =
=============================================*/
.covax-gallery .brand-btn-outline {
    padding: 6px 12px;
    font-size: 0.9rem;
}

.covax-gallery a {
    padding: 4px;
    font-size: 13px;
    margin: 4px 15px;
}

/*=============================================
=            SCROLLBAR                         =
=============================================*/
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--brand-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-secondary);
}

/*=============================================
=            RESPONSIVE                        =
=============================================*/
@media (max-width: 768px) {

    .brand-heading {
        font-size: 17px;
    }

    /* Typography */
    .brand-primary-text,
    .brand-main-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1rem;
    }

    .section-content {
        font-size: 0.9rem;
        padding-left: 0;
    }

    .generic-name {
        font-size: 0.95rem;
    }

    /* Icons & Wrappers */
    .brand-icon-wrapper,
    .brand-icon-circle {
        width: 40px;
        height: 40px;
    }

    .empty-state-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .empty-state-icon.large {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }

    .faq-expand-badge {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    /* Cards & Containers */
    .brand-details-card,
    .brand-card,
    .brand-sidebar-card {
        padding: 20px;
    }

    .brand-card-header h5 {
        font-size: 15px;
    }

    .price-title {
        margin-bottom: 5px;
    }

    /* FAQ */
    .faq-question-wrapper {
        padding: 12px 15px;
    }

    .faq-question-text {
        font-size: 0.9rem;
    }

    .faq-answer-content {
        padding: 16px;
        margin: 8px;
        font-size: 0.9rem;
    }

    /* Brand Items */
    .brand-item {
        padding: 10px;
    }

    .brand-item-name {
        font-size: 0.9rem;
    }

    /* Filter Section */
    .filter-section .form-select,
    .select2-container {
        width: 100% !important;
        margin-bottom: 10px;
    }


    .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
        background-color: var(--brand-primary) !important;
    }

    .text-md-end {
        text-align: left !important;
    }

    .sort-section {
        margin-top: 15px;
    }

    .btn-group {
        display: flex;
        width: 100%;
    }

    .btn-group .btn {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .ml-2 {
        margin-left: 0;
    }
}

/* Drug Cards */
.drug-card {
    background: white;
    border: 1px solid var(--brand-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(11, 79, 55, 0.05);
}

.drug-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(11, 79, 55, 0.15);
    border-color: var(--brand-primary);
}

.drug-card-header {
    background: var(--brand-gradient-light);
    padding: 12px 15px;
    border-bottom: 1px solid var(--brand-light);
}

.drug-brand {
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 4px;
    font-size: 1rem;
}

.drug-strength {
    font-size: 0.8rem;
    color: #6c757d;
    display: inline-block;
    background: white;
    padding: 2px 8px;
    border-radius: 20px;
    border: 1px solid var(--brand-light);
}

.drug-card-body {
    padding: 15px;
    flex: 1;
}

.drug-manufacturer {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.drug-manufacturer i {
    color: var(--brand-primary);
}

.drug-price {
    font-size: 0.9rem;
    color: #2d3748;
    background: var(--brand-soft);
    padding: 6px 10px;
    border-radius: 6px;
    display: inline-block;
}

.drug-price strong {
    color: var(--brand-primary);
}

.drug-card-footer {
    padding: 12px 15px;
    border-top: 1px solid var(--brand-light);
    background: #f9f9f9;
}

.btn-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid var(--brand-primary);
    color: var(--brand-primary);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-view:hover {
    background: var(--brand-primary);
    color: white;
    text-decoration: none;
}

/* Filter Select Styling */
#manufacturerFilter {
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.9rem;
}

#manufacturerFilter:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 0.2rem rgba(11, 79, 55, 0.25);
}

/* Animation for filter */
.drug-item {
    transition: all 0.3s ease;
}

/* Responsive for drugs grid */
@media (max-width: 768px) {
    .drug-card-header {
        padding: 10px 12px;
    }

    .drug-brand {
        font-size: 0.95rem;
    }

    .drug-card-body {
        padding: 12px;
    }

    .drug-card-footer {
        padding: 10px 12px;
    }
}

.color-white {
    color: #fff;
}

.floating-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.floating-btn:hover {
  transform: translateX(-50%) scale(1.05);
}

.bg-b9cdca {
    /*background: #b9cdca !important;*/
    background: rgba(255,255,255,1) !important;
}

/*================= BLOG Styles ===========*/
.details-text {
    text-align: justify;
    font-size: 18px !important;
}

.details-text p {
    text-align: justify;
    font-size: 18px !important;
}

.details-text h2 {
    font-size: 32px;
}

/*========== NI SELECT =======*/
.ni-select {
    width: 100%;
    display: block;
    margin: 15px;
    border: 1px solid
}

/* Pre-loader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border: 4px solid var(--brand-light);
    border-top: 4px solid var(--brand-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-text {
    font-size: 16px;
    color: var(--brand-primary);
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.loader-progress {
    width: 200px;
    height: 4px;
    background: var(--brand-light);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress-bar {
    width: 0%;
    height: 100%;
    background: var(--brand-primary);
    border-radius: 2px;
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% {
        width: 0%;
        transform: translateX(-100%);
    }

    50% {
        width: 70%;
        transform: translateX(0);
    }

    100% {
        width: 100%;
        transform: translateX(100%);
    }
}

/* Optional: Add fade-in animation for content */
.content-fade-in {
    animation: fadeInUp 0.5s ease forwards;
    transform: none !important; /* 🔥 add this */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.justify-space-between {
    justify-content: space-between;
}