/* ============================================
   PRODUCT LISTING PAGE STYLES
   ============================================ */

/* ── HERO CAROUSEL ── */
.hero-carousel {
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
}

@media (min-width:992px){
    .hero-carousel {
        margin-top:60px;
        padding-top: 70px;
    }
}

.hero-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(.77, 0, .18, 1);
}

.hero-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 1520 / 355;   /* locks the ratio */
    max-height: 500px;          /* cap it on huge screens (optional) */
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1a1a1a;
}

.hero-slide .hero-img {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero-slide .hero-img-mb {
    display: none;
}

/*.hero-slide::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); z-index: 1; }*/

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
    max-width: 600px;
    top: 60px;
}

.hero-title {
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.hero-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.hero-desc p {
    margin: 0 0 8px;
}

.btn-hero {
    display: inline-block;
    border: none;
    border-radius: 4px;
    padding: 10px 35px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: filter .2s, transform .1s;
}

.btn-hero:hover {
    background-color:#AF1A1D;
    text-decoration: none !important;
}

.hero-prev, .hero-next {
    position: absolute;
    top: calc(50% + 60px);
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, .85);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

.hero-prev {
    left: 16px;
}

.hero-next {
    right: 16px;
}

.hero-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 10;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s;
    padding: 0;
}

.hero-dot.active {
    background: #fff;
    transform: scale(1.3);
}


@media (max-width: 991px) {
    .hero-content{
        top: 0px;
        left: 60px;
    }
    .hero-dot{
        display: none;
    }
    .hero-prev, .hero-next{
        top: calc(50% - 110px);
    }
}

@media (max-width: 768px) {
    
    .hero-slide{
        aspect-ratio: 800 / 650;
    }
    
    .hero-slide .hero-img {
        display: none;
    }

    .hero-slide .hero-img-mb {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-content {
        max-width: calc(100% - 90px);
        left:30px;
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .hero-slide .container{
        height:100%;
        padding:30px;
    }
    
}
@media (max-width: 575px){
     .hero-prev, .hero-next{
        top: calc(50% - 100px);
    }
    .btn-hero {
        padding: 6px 16px;
        font-size: 12px;
        font-weight: 400;
    }
    
    .hero-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

@media (max-width:430px){
     .hero-prev, .hero-next{
        width: 20px;
        height: 20px;
        font-size: 12px;
     }
  
    .hero-content {
        max-width: calc(100% - 90px);
        padding: 15px 0px;
        left:20px;
    }
    
    .hero-slide{
        height: 300px;          /* cap it on huge screens (optional) */
    }
}

#currency{
    padding:0 10px; 
}

/* ── ANNOUNCEMENT BAR (static parts only) ── */
.announce-bar {
    color: #555;
    padding: 10px 0;
    font-size: 20px;
    position: absolute;
    top: 0px;
    width: 100%;
}

@media (min-width:992px){
    .package-detail .announce-bar {
        top: 60px; 
    }
    
}



.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-digits {
    display: flex;
    gap: 4px;
}

.timer-num {
    background: #fff;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 18px;
    border-radius: 4px;
    padding: 2px 0;
    min-width: 28px;
    text-align: center;
    border: 1px solid #CECECE;
    display: inline-block;
}

.timer-label {
    font-size: 12px;
    color: #555;
    text-transform: uppercase;
    margin-top: 0px;
}

.timer-colon {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

.btn-announce {
    background: #EC2227;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 30px 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

.btn-announce:hover {
    text-decoration: none !important;
    color: #fff;
    background-color:#AF1A1D;
}

/* ============================================
   ANNOUNCEMENT BAR — RESPONSIVE
   ============================================ */

/* Tablet & below (≤ 991px) */
@media (max-width: 991px) {
    .announce-bar {
        position: relative;
        top: 0;
        padding: 20px 0;
        font-size: 16px;
    }
    .announce-bar-sec {
        padding: 20px 0;   /* was 70px 0 50px — no longer needs space for absolute bar */
    }
    .announce-bar .container > .d-flex {
        flex-direction: column;
        text-align: center;
        gap: 15px !important;
    }
    .announce-bar .msg {
        justify-content: center;
        flex-wrap: wrap;
    }
    .announce-bar .msg strong {
        display: block;
        width: 100%;
        margin-bottom: 4px;
    }
    .timer-num {
        font-size: 16px;
        min-width: 26px;
    }
    .btn-announce {
        padding: 6px 14px;
        font-size: 15px;
    }
}

/* Mobile (≤ 575px) */
@media (max-width: 575px) {
    .announce-bar {
        font-size: 14px;
    }
    .announce-bar-sec {
        padding: 15px 0 20px;
    }
    .announce-bar .msg strong {
        font-size: 20px;
    }
    .timer-num {
        font-size: 14px;
        min-width: 22px;
        padding: 3px 0 2px;
    }
    .timer-digits {
        gap: 3px;
    }
    .timer-label {
        font-size: 10px;
        margin-top: 3px;
    }
    .timer-colon {
        font-size: 14px;
        margin-bottom: 18px;
    }
    .announce-bar .d-flex[style*="gap:10px"] {
        gap: 5px !important;
    }
    .btn-announce {
        padding: 6px 14px;
        font-size: 12px;
    }
    .mb-mb-30{
        margin-bottom:30px! important;
    }
}

/* Extra small (≤ 380px) */
@media (max-width: 380px) {
    .timer-num {
        font-size: 13px;
        min-width: 20px;
    }
    .timer-colon {
        font-size: 13px;
        margin-bottom: 16px;
    }
    .announce-bar .d-flex[style*="gap:10px"] {
        gap: 3px !important;
    }
    .btn-announce {
        padding: 7px 18px 5px;
        font-size: 13px;
    }
}

/* ── GLOBAL ── */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}

hr {
    border-top: 1px solid #ECECEC;
}

/* ── PRODUCT CARD ── */
.product-card {
    background: #fff;
    border: 1px solid #ECECEC;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
    cursor: pointer;
    height: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.product-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .10);
    transform: translateY(-2px);
}

.card-img-wrap {
    position: relative;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
    aspect-ratio: 270 / 170;
    overflow: hidden;
    transition: transform .3s;
}

.product-card:hover .card-img-wrap img {
    transform: scale(1.04);
}

.card-badge {
    position: absolute;
    top: -3px;
    left: -8px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    z-index: 8;
}

.card-badge .promolabel {
    position: absolute;
    top: 7px;
    left: 28px;
    z-index: 5;
}

@media (max-width: 575px){
    .card-badge .promolabel{
        left: 40px;
    }
}

.card-badge span.label {
    z-index: 6;
}

.svglabel img, .oc-item .card-badge .svglabel {
    width: 105px;
    height: auto;
}

.card-body {
    padding: 12px;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.3;
    min-height: 42px;
    display: -webkit-box;           /* Required for line-clamp to work */
    -webkit-line-clamp: 2;          /* Number of lines to show */
    -webkit-box-orient: vertical;   /* Required to set vertical clipping */
    overflow: hidden;               /* Hides extra lines */
    text-overflow: ellipsis;        /* Optional: explicitly adds dots */
}

.card-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width:991px) and (min-width: 576px){
    #featured-row .card-price {
        display: block;
    }

    #featured-row .card-price .price-block{
        min-height: 40px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

.price-orig {
    font-size: 11px;
    color: #EC2227;
    text-decoration: line-through;
}

.price-now {
    font-size: 14px;
    font-weight: 700;
    color: #555;
}

.price-from {
    font-size: 10px;
    color: #888;
    font-weight: 400;
}

.btn-buy2 {
    background: #EC2227;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
    display: inline-block;
}

.btn-buy2:hover {
    background-color:#AF1A1D;
    text-decoration: none !important;
    color: #fff !important;
}

.btn-enquire {
    background: #fff;
    color: #EC2227;
    border: 1.5px solid #EC2227;
    border-radius: 4px;
    padding: 8px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
    display: inline-block;
}

.btn-enquire:hover {
    background: #EC2227;
    color: #fff;
    text-decoration: none !important;
}

.product-card:hover .card-title,
.product-card:hover .card-price,
.product-card:hover .btn-enquire,
.product-card:hover a {
    text-decoration: none !important;
}

ul.tab-nav:not(.tab-nav-lg) li.ui-tabs-active, ul.tab-nav:not(.tab-nav-lg) li.ui-tabs-active a, ul.tab-nav:not(.tab-nav-lg) li.ui-tabs-active a{
    background-color: transparent;
}

.tabs.tabs-bb ul.tab-nav li:hover a{
    background-color: transparent;
}

#oc-you-promo.owl-carousel .owl-dots .owl-dot {
    background: #EC2227;
}

@media (max-width: 991px){
    .card-title, .price-now {
        font-size: 13px;
    }
    .card-title{
        min-height:35px;
    }
    .btn-enquire, .btn-buy2, button.add-to-cart, button.btn-buy, button.add-to-cart, button.btn-buy, a.enquiry_button{
        padding: 10px 20px 12px;
        font-size: 14px;
        max-height: 42px;
    }

    
    a.enquiry_button{
        margin-top:0px;
    }
    
    .content-wrap-product2 .row, .content-wrap-product .row{
        margin-left: 0px;
        margin-right: 0px;
    }
    .content-wrap-product2 .row .row{
        margin-left: -15px;
        margin-right: -15px;
    }
    .filter-trigger-btn {
        display: inline-block;
        font-size: 14px;
        font-weight: 600;
        padding: 8px 18px;
    }
    i.icon-filter{
        font-size: 11px;
    }
    .mb-mb-20{
        margin-bottom: 20px! important;
    }
    .mb-mt-15{
        margin-top: 15px! important;
    }
    .mb-mb-0{
        margin-bottom: 0px! important;
    }
    .package-title{
        margin-top: 0px;
    }
    #oc-you-promo.owl-carousel .owl-nav .owl-next, #oc-you-promo.owl-carousel .owl-nav .owl-prev{
        display: none! important;
    }
}


@media (max-width: 900px) and (min-width:800px) {
    .card-img-wrap img {
        height: 150px;
    }
}
@media (max-width: 799px) and (min-width:700px) {
    .card-img-wrap img {
        height: 130px;
    }
}
@media (max-width: 699px) and (min-width:576px) {
    .card-img-wrap img {
        height: 110px;
    }
}
.light-grey-section {
    background: #F2F2F2;
    background-color: #F2F2F2;
}

.content-wrap-product {
    position: relative;
    padding: 40px 0 20px;
}

.content-wrap-product2 {
    position: relative;
    padding: 20px 0 20px;
}

/* ── FILTER SIDEBAR ── */
.filter-sidebar {
    background: #fff;
    padding: 20px 16px;
    border-radius: 8px;
    position: sticky;
    top: 65px;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.filter-group {
    margin-bottom: 10px;
    border-bottom: 1px solid #ECECEC;
    padding-bottom: 14px;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-label {
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-weight: 600;
}

.filter-label .arrow {
    transition: transform 0.2s ease;
}

.filter-label:not(.open) .arrow {
    transform: rotate(-90deg);
}

.filter-label.open .arrow {
    transform: rotate(0);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-weight: 400;
    text-transform: none;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    font-weight: 400;
    cursor: pointer;
    text-transform: none;
    line-height: 1.2;
}

.filter-option input[type=checkbox] {
    accent-color: #555;
    cursor: pointer;
}

.filter-option:hover {
    text-decoration: none !important;
    color: #EC2227;
}

.price-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #555;
    margin-bottom: 8px;
}

input[type=range] {
    width: 100%;
    accent-color: #EC2227;
    height: 4px;
    cursor: pointer;
}

.btn-reset {
    background: #f5f5f5;
    color: #555;
    border: 1px solid #ccc;
    padding: 5px 16px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    font-weight: 500;
    transition: all .2s;
    display: block;
    margin: 8px auto 0;
}

.btn-reset:hover {
    text-decoration: none !important;
    color: #fff;
}

/* Custom checkbox styling */
.filter-option input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-radius: 3px;
    background: #fff;
    cursor: pointer;
    position: relative;
    margin-right: 5px;
    vertical-align: middle;
    transition: all .15s ease;
}

.filter-option input[type="checkbox"]:hover {
    border-color: #555;
}

.filter-option input[type="checkbox"]:checked {
    background: #555;
    border-color: #555;
}

.filter-option input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 0px;
    width: 4px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-option input[type="checkbox"]:focus-visible {
    outline: 2px solid #555;
    outline-offset: 2px;
}

/* ── DUAL RANGE SLIDER ── */
.price-range-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.dual-range-slider {
    position: relative;
    height: 40px;
    margin: 0 10px 15px;
}

.dual-range-slider .slider-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: #e0e0e0;
    border-radius: 4px;
    transform: translateY(-50%);
}

.dual-range-slider .slider-range {
    position: absolute;
    top: 50%;
    height: 4px;
    background: #a87842;
    border-radius: 4px;
    transform: translateY(-50%);
}

.dual-range-slider input[type="range"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.dual-range-slider input[type="range"]::-webkit-slider-thumb {
    pointer-events: auto;
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #a87842;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    margin-top: 0;
}

.dual-range-slider input[type="range"]::-moz-range-thumb {
    pointer-events: auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #a87842;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.dual-range-slider input[type="range"]::-moz-range-track {
    background: transparent;
    border: none;
}

.btn-reset {
    border: 1px solid #EC2227;
    color: #EC2227;
    background: #fff;
    padding: 8px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
}

.btn-reset:hover {
    background: #EC2227;
    color: #fff;
}

/* ── SEARCH + TABS ── */
.search-box {
    display: flex;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    min-height: 40px;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 9px 14px 7px;
    font-size: 13px;
    border-radius: 5px 0 0 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.search-box button {
    background: #EC2227;
    color: #fff;
    border: none;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 0 5px 5px 0;
}

.search-box button:hover {
    background-color:#AF1A1D;
}

.search-box #search-clear-btn {
    position: absolute;
    right: 105px; /* adjust to match your search button width */
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #b5b5c3;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color 0.15s, background 0.15s;
}
.search-box #search-clear-btn:hover {
    color: #3f4254;
    background: #f3f6f9;
}

.sort-select {
    border: none;
    border-radius: 6px;
    padding: 9px 12px;
    font-size: 13px;
    background: #fff;
    cursor: pointer;
    outline: none;
    color: #555;
    width: 100%;
    min-height: 40px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.filter-tabs {
    display: flex;
    gap: 0 15px;
    margin-bottom: 0px;
    overflow-x: scroll;
    cursor: grab;
    user-select: none;
    width:100%;
}

.filter-tabs::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.tab {
    padding: 9px 16px;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    color: #555;
    transition: all .2s;
    white-space: nowrap;
    user-select: none;
    background-color: #fff;
}

.tab:hover {
    color: #EC2227;
}

.tab.active {
    color: #EC2227;
    border-bottom-color: #EC2227;
    font-weight: 600;
}

.tab-arrow {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    display: none;
    align-items: center;
    justify-content: center;
}

.filter-tabs-wrapper {
    display: flex;
    align-items: center;
    gap: 0 10px;
    margin-bottom: 30px;
}

.filter-tabs.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.porduct-cart-style2 .card-price {
    display: block;
}

.porduct-cart-style2 .price-block {
 margin-bottom: 10px;
 height: 40px;
 display: flex;
 flex-direction: column;
 align-items: baseline;
 justify-content: flex-end;
}

.patient-form-header{
    margin-bottom:20px;
}

@media (max-width:575px){
    .porduct-cart-style2 .price-block {
        height: auto;
    }
    #oc-you-promo .porduct-cart-style2 .price-block{
        height: 40px;
    }
}

.porduct-cart-style2 .price-now {
    font-size: 14px;
}

.tab-arrow:hover {
    background: #f0f0f0;
}

/* ── SEARCH SUGGESTIONS DROPDOWN ── */
.search-suggestions {
    display: none;
    position: absolute !important;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 99999 !important;
    margin-top: 4px;
}

.search-suggestions.active {
    display: block !important;
}

.search-box {
    position: relative !important;
    overflow: visible !important;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: #333;
    transition: background 0.15s;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: #f8f8f8;
    color: #333;
    text-decoration: none;
}

.suggestion-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
    flex-shrink: 0;
}

.suggestion-info {
    flex: 1;
    min-width: 0;
}

.suggestion-name {
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.suggestion-price {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.suggestion-empty {
    padding: 16px;
    text-align: center;
    color: #999;
    font-size: 14px;
}


.product_detail label {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0px;
    font-family: 'OpenSans-Bold', sans-serif;
}


.lp-phone-wrap{
    display: block;
    width: 100%;
}
.iti input[type=tel], .iti{
    width: 100%;
}

.iti input[type=tel] {
    padding-left: 100px! important;
}

@media (max-width: 767px){
    .pkg-info .attrDesc{
        font-size: 12px;
    }
}

:root {
  --red:    #EC2227;
  --gold:   #AC8C5E;
  --border: #e2e2e2;
  --bg:     #f5f5f5;
  --text:   #111;
  --muted:  #666;
  --subtle: #999;
  --green:  #27ae60;
}

    /* ============================================================
   Steps Bar
   ============================================================ */

   .steps-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      padding: 28px 20px 0;
  }

  .step-item {
      display: flex;
      align-items: center;
  }

  .step-circle {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      font-size: 12px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border: 2px solid #e2e2e2;
      background: #fff;
      color: var(--subtle);
  }

  .step-item.done .step-circle {
      background: #eafaf1;
      border-color: var(--green);
      color: var(--green);
  }

  .step-item.active .step-circle {
      background: #e2e2e2;
      border-color: #e2e2e2;
      color: #fff;
  }

  .step-label {
      font-size: 11px;
      font-weight: 500;
      color: var(--subtle);
      margin: 0 8px;
      white-space: nowrap;
  }

  .step-item.active .step-label {
      color: #555;
      font-weight: 600;
  }

  .step-item.done .step-label {
      color: var(--green);
  }

  .step-line {
      width: 48px;
      height: 2px;
      background: #e2e2e2;
  }

  .step-line.done {
      background: var(--green);
  }


/* ============================================================
   Card
   ============================================================ */

   .card {
      background: #fff;
      border: 1px solid #e2e2e2;
      border-radius: 12px;
      margin-bottom: 16px;
      overflow: hidden;
  }

  .card-header {
      padding: 18px 24px;
      font-size: 20px;
      color: #000;
      font-weight: 700;
      border-bottom: none;
      background-color: #fff;
  }


/* ============================================================
   Customer Info
   ============================================================ */

   .cust-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px 20px;
      padding: 20px 20px 24px;
  }

  .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
  }

  .form-group label {
      font-size: 14px;
      font-weight: 500;
      color: #555;
      text-transform: capitalize;
      font-family: 'OpenSans-Medium', sans serif;
  }

  .form-group input,
  .form-group select, .iti--allow-dropdown input {
      border: 1px solid #e2e2e2;
      border-radius: 4px! important;
      padding: 9px 12px;
      font-size: 13px;
      color: #555;
      background: #fff;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      width:100%;
        position: relative;
  }

  .form-group input:focus,
  .form-group select:focus {
      border-color: #e2e2e2;
      box-shadow: 0 0 0 3px rgba(236, 34, 39, 0.06);
  }

  .form-group.has-error input,
  .form-group.has-error select {
      border-color: #e2e2e2;
  }

  .form-group .err {
      font-size: 11px;
      color: #e2e2e2;
      display: none;
      margin-top: 2px;
  }

  .form-group.has-error .err {
      display: block;
  }

  .phone-wrap {
      display: flex;
  }

  .phone-prefix {
      border: 1px solid #e2e2e2;
      border-right: none;
      border-radius: 6px 0 0 6px;
      padding: 9px 10px;
      font-size: 13px;
      background: #f8f8f8;
      color: #555;
      outline: none;
      cursor: pointer;
      min-width: 62px;
      appearance: none;
  }

  .phone-prefix:focus {
      border-color: #e2e2e2;
  }

  .phone-input {
      border-radius: 0 6px 6px 0 !important;
      flex: 1;
  }

  select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 10px center;
      padding-right: 28px !important;
  }


/* ============================================================
   Accordion Item
   ============================================================ */

   .accordion-item {
      background: #fff;
      border: 1px solid #e2e2e2;
      border-radius: 12px;
      margin-bottom: 16px;
      overflow: hidden;
      padding: 20px 30px;
  }

  .accordion-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 0;
      cursor: pointer;
      user-select: none;
      transition: background 0.15s;
  }

  .accordion-header:hover {
      background: #fafafa;
  }

  .accordion-title {
      display: flex;
      align-items: center;
      gap: 12px;
  }

  .accordion-num {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: #EC2227;
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .accordion-num.done {
      background: var(--green);
  }

  .accordion-name {
      font-size: 20px;
      font-weight: 700;
      color: #000;
  }

  .accordion-chevron {
      font-size: 16px;
      color: #000;
      transition: transform 0.3s;
      margin-right: 10px;
  }

  .accordion-chevron.open {
      transform: rotate(180deg);
  }

  .accordion-body {
      display: none;
      border-top: 1px solid #e2e2e2;
  }

  .accordion-body.open {
      display: block;
  }


/* ============================================================
   Package Summary Row
   ============================================================ */

   .pkg-row {
      display: flex;
      gap: 10px;
      align-items: center;
      padding: 20px 0;
      border-bottom: 1px solid #e2e2e2;
  }

  .pkg-thumb {
      width: 90px;
      height: 68px;
      border-radius: 6px;
      object-fit: cover;
      flex-shrink: 0;
  }

  .pkg-thumb-ph {
      width: 90px;
      height: 68px;
      border-radius: 6px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 8px;
      font-weight: 700;
      color: #fff;
      text-align: center;
      padding: 6px;
      line-height: 1.3;
  }

  .date-field{
    display: flex;
    width: 300px;
    padding: 14px 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 6px;
    border: 1px solid #CECECE;
    background: #FCFCFC;
    max-width: 300px;
}

.date-field label {
  font-size: 11px;
  font-weight: 600;
  color: #000;
  display: block;
  margin-bottom: 5px;
}

.date-field select {
  font-size: 12px;
  padding: 7px 26px 7px 10px;
  width: 100%;
  border: 1px solid #CECECE;
  border-radius: 6px;
}

.pkg-price-col {
  text-align: left;
  white-space: nowrap;
  width: 200px;
}

.pkg-price-col .lbl {
  font-size: 12px;
  color: #000;
  margin-bottom: 3px;
}

.pkg-price-col .orig {
  font-size: 12px;
  color: #555;
  text-decoration: line-through;
  margin-bottom:5px;
}

.pkg-price-col .now {
  font-size: 18px;
  font-weight: 800;
  color: #000;
  line-height: 1.1;
  margin-bottom: 5px;
}

.pkg-price-col .disc {
  font-size: 11px;
  color: #EC2227;
  font-weight: 600;
}

.pkg-info{
width: calc(100% - 290px);
}

.pkg-info a{
    color: #000;
}

.pkg-info .attrDesc{
    font-size: 14px;
}

@media (max-width: 767px){
   .pkg-info {
        width: calc(100% - 170px);
    }
    .pkg-price-col .now{
        font-size: 14px;
    }
}

/* ============================================================
   Patient Form (in accordion)
   ============================================================ */

   .patient-form {
      padding: 20px 0px 20px;
  }
  
  @media (max-width:479px){
      .patient-form{
          padding-bottom:0px;
      }
  }

  .same-check {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
      font-size: 12px;
      color: #000;
      cursor: pointer;
      user-select: none;
  }

  .same-check input[type=checkbox] {
      accent-color: #e2e2e2;
      width: 14px;
      height: 14px;
      cursor: pointer;
  }

  .patient-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px 20px;
      margin-bottom: 16px;
  }

  .patient-grid3{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px 20px;
    margin-bottom: 16px;
}

  .btn-continue {
      background: #ec2227;
      color: #fff;
      border: none;
      border-radius: 6px;
      padding: 9px 22px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s;
      float: right;
  }

  .btn-continue:hover {
      background: #AF1A1D;
  }

  .clearfix::after {
      content: '';
      display: table;
      clear: both;
  }


/* ============================================================
   Order Summary
   ============================================================ */

   .summary-card {
      background: #fff;
      border: 1px solid #e2e2e2;
      border-radius: 12px;
      overflow: hidden;
  }

  .summary-header {
      padding: 18px 24px;
      font-size: 20px;
      color: #000;
      font-weight: 700;
      border-bottom: 1px solid #e2e2e2;
  }

  .summary-body {
      padding: 20px;
  }

  .promo-row {
      display: flex;
      gap: 10px;
      margin-bottom: 22px;
  }

  .promo-row span{
    color: #000;
}

.promo-input {
  flex: 1;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  padding: 9px 14px;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}

.promo-input:focus {
  border-color: #e2e2e2;
}

.promo-label {
  font-size: 12px;
  font-weight: 500;
  color: #555;
  margin-bottom: 8px;
  display: block;
}

.btn-apply {
  background: #EC2227;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-apply:hover {
  background: #AF1A1D;
}

.summary-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 16px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.summary-line .lbl {
  color: #000;
  font-weight: 500;
}

.summary-line .val {
  color: #555;
  font-weight: 500;
}

.summary-line .val.disc {
  color: #e2e2e2;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  color: #000;
}

.summary-total .lbl {
  font-size: 30px;
  font-weight: 700;
}

.summary-total .val {
  font-size: 30px;
  font-weight: 800;
  color: #000;
}

@media (max-width:768px){
    .summary-total .val, .summary-total .lbl{
        font-size:24px;
    }
    .form-group{
        margin-bottom:0.5rem;
    }
    .form-group label{
        font-size:12px;
    }
}

.btn-pay {
  background: #EC2227;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-pay:hover {
  background: #AF1A1D;
  text-decoration: none! important;
  color: #fff;
  box-shadow: 0 4px 18px rgba(236, 34, 39, 0.25);
}

.payment-method-block label{
display: block;
color: #000;
}

.flex-end{
text-align: right;
display: flex;
justify-content: end;
}

/* Custom select dropdown with chevron icon (matches accordion style) */
.select-wrapper, .sort-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

.select-wrapper select, .sort-wrapper select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 35px;       /* leaves room for the icon */
    width: 100%;
    background-image: none;    /* kill any default browser arrow image */
}

@media (max-width:479px){
    .select-wrapper select, .sort-wrapper select{
        padding: 7px 12px;
    }
}

/* Hide the IE/Edge arrow */
.select-wrapper select::-ms-expand, .sort-wrapper select::-ms-expand {
    display: none;
}

/* The chevron icon */
.select-wrapper .select-chevron, .sort-wrapper .select-chevron {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;      /* clicks pass through to the select */
    color: #555;
    font-size: 12px;
}

/* Hide error spans by default */
.form-group .err {
    display: none;
    color: #ec2227;
    font-size: 12px;
    margin-top: 4px;
}
 
/* Show error span when .show-error class is added */
.form-group.show-error .err {
    display: block;
}
 
/* Highlight invalid input border in red */
.form-group.show-error input,
.form-group.show-error select,
.form-group.show-error textarea {
    border-color: #ec2227 !important;
}
 
/* Highlight phone-wrap children too */
.form-group.show-error .phone-wrap input,
.form-group.show-error .phone-wrap select {
    border-color: #ec2227 !important;
}

.content-wrap-60-30{
    position: relative;
    padding: 60px 0 30px;
}

.product_detail{
    padding-left: 15px;
    padding-right: 15px;
}
.flexslider img{
    width: 100%;
}

.tabs.tabs-bb ul.tab-nav li{
    height: 50px;
}

#filter-sidebar hr{
    margin-bottom:10px;
}

#readTnC + label, #above21 + label, #additionalsst + label {
    width: calc(100% - 20px);
    padding-left: 15px;
    text-transform: none;
    letter-spacing: 0px;
    font-weight: 400;
    color: #000;
}

.flex-wrapper {
    display: flex;
    align-items: stretch; /* default — children get equal height */
}

.flex-wrapper-center{
    display: flex;
    align-items:center;
}

.w-175-l{
    width:calc(100% - 175px);
    margin-right:10px;
}

.w-175-r{
    width:175px;
}

@media (min-width:1200px){
    .w-175-r button{
        width:100%;
    }
}


.w-175-l .err{
    display:none;
    color: #ec2227;
    font-size: 12px;
    margin-top: 4px;
}

.w-175-l.show-error .err{
    display: block;
    
}


@media (max-width:991px){
   .flex-wrapper-center{
        display: block;
    } 
    .w-175-l{
        width:100%;
        margin-bottom:20px;
    }
    .w-175-r {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

/* ============================================================
   Responsive
   ============================================================ */
   @media (max-width: 991px){
    .content-wrap-60-30{
        padding: 30px 0;
    }
    .lg-pt-20{
        padding-top:20px! important;
    }
    .lg-pt-0{
        padding-top:0px! important;
    }
    .tabs.tabs-bb ul.tab-nav li{
        min-width: 0px;
        border-bottom: 1px solid grey;
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        margin-bottom: 15px;
    }
    .tabs.tabs-bb ul.tab-nav li a{
        border-bottom: 0px;
    }
   }
   @media (max-width: 767px){
    #content .single-post .tab-container ul li,  .tab-container p, .tab-container a{
        font-size: 12px;
    }
    #content .single-post .tab-container ul{
        padding-left: 15px;
    }
   }

   @media (max-width: 640px) {
      nav {
        padding: 12px 16px;
    }

    .page {
        padding: 24px 12px 60px;
    }

    .cust-grid {
        grid-template-columns: 1fr;
    }

    .pkg-row {
        grid-template-columns: 1fr 1fr;
    }

    .pkg-thumb-ph {
        display: none;
    }

    .pkg-price-col {
        grid-column: 1 / -1;
        text-align: left;
    }

    .patient-grid, .patient-grid3 {
        grid-template-columns: 1fr;
    }
    
}

@media (max-width:479px){
    .price-title, .price-value{
        font-size:13px;
    }
    .price-value{
       font-size:14px; 
    }
    .package-title{
        margin-bottom:10px! important;
    }
    .note.mt-20{
        margin-top:0px! important;
    }
    hr.mb-hr{
        margin-top:10px! important;
        margin-bottom:10px! important;
    }
    .pricebox, #thisProdPrice{
        font-size:14px! important;
    }
    .pricebox-title{
        max-width:130px;
    }
    .pricebox-desc del{
        margin-left:0px;
    }
    .float-needed #myprice, .price-title, .price-value{
        padding-left:0px;
    }
    
    .pricebox-desc {
        width: calc(100% - 120px)! important;
        display: flex;
        align-items: center;
    }
    .pricebox-new{
        width:100%;
    }
    .product_detail{
        padding-left:0px;
        padding-right:0px;
    }
    .mbw-100{
        max-width:100%;
    }
    #qty1{
   	    width:25px;
   	}
   	.product_detail input, .product_detail select, .product_detail textarea {
        font-size: 12px ! important;
    }
    .minus, .plus{
        width:23px;
    }
    ul.tab-nav:not(.tab-nav-lg) li a{
        font-size: 14px !important;
        font-weight: 600 !important;
    }
    .form-group label{
        margin-bottom:5px;
    }
    .pkg-row {
         flex-wrap: wrap;   /* allows wrapping to a new row */
    }
    .pkg-info {
      flex: 1;           /* fills remaining space next to thumb */
      min-width: 0;
    }
    .pkg-price-col {
      width: 100%;       /* forces it onto its own row */
      display: block;
      /*justify-content: flex-end;   /* aligns to bottom-right 
      /*align-items: baseline;*/
   
      text-align: right;
    }
    .accordion-name{
        font-size:18px;
    }
    .accordion-item{
        padding:20px;
    }
    .padding_adjust {
        padding: 0px 5px;
    }
}

@media (max-width:450px){
    #oc-you-promo.owl-carousel .owl-item .card-img-wrap img{
        height: 110px;
    }
}

@media (max-width:430px){
    #oc-you-promo.owl-carousel .owl-item .card-img-wrap img{
        height: 110px;
    }
}

@media (max-width:400px){
    #oc-you-promo.owl-carousel .owl-item .card-img-wrap img{
        height: 100px;
    }
}