body {
    font-family: Market Sans, Arial, sans-serif;
}

/* ---------- SEARCH BAR ---------- */
.rounded-bottom-end {
    border-radius: 0 40px 40px 0 !important;
    border-left: 1px solid #000 !important;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* ---------- TOP DROPDOWNS (My sconixs / Watchlist) ---------- */
.dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
}

/* ---------- NAV BAR ---------- */
.sconixs-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #fff;
}

.mega-header {
    position: relative;
}

.sconixs-nav .nav-link {
    color: #000;
    padding: 10px 14px;
    white-space: nowrap;
}

.sconixs-nav .nav-link:hover {
    color: #0654ba;
    text-decoration: underline;
}



/* Hover borders */
.sconixs-nav .has-mega:hover {
    background: #fff;
    border-left: 1px solid #dcdcdc;
    border-right: 1px solid #dcdcdc;
}

/* ---------- MEGA MENU ---------- */
/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    /* now 100% of container */
    max-width: 100%;
    /* prevent overflow */
    background: #fff;
    padding: 30px;
    border-top: 1px solid #ddd;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .2);
    display: none;
    z-index: 1000;
}

/* Titles */
.mega-title {
    font-size: 14px;
    font-weight: 700;
    padding-bottom: 6px;
    margin-bottom: 12px;
    border-bottom: 2px solid #000;
}

/* Lists */
.mega-list {
    list-style: none;
    padding: 0;
}

li a {
    display: list-item;
    /* font-size: 0.75rem; */
    color: #333;
    padding: 4px 0;
    text-decoration: none;
}

li a:hover {
    text-decoration: underline 1px solid #333;
}

.mega-list li a {
    display: block;
    font-size: 13px;
    color: #333;
    padding: 4px 0;
    text-decoration: none;
}

.mega-list li a:hover {
    text-decoration: underline;
    color: #0654ba;
}

/* Banner */
.mega-banner img {
    width: 100%;
    border-radius: 6px;
}


@media (max-width: 991px) {
    .mega-menu {
        display: none !important;
    }

    .mega-title {
        font-size: 13px;
    }

    .mega-list li a {
        font-size: 14px;
        padding: 6px 0;
    }
}


/* Base image styling */
#heroCarousel img {
    max-height: 200px;
    object-fit: contain;
}


/* Rounded carousel indicators */
#heroCarousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    margin: 0 6px;
}

#heroCarousel .carousel-indicators .active {
    background-color: #fff;
}



/* Tablet */
@media (max-width: 991px) {
    #heroCarousel img {
        max-height: 160px;
    }
}


/* DESKTOP carousel height */
@media (min-width: 992px) {
    #heroCarousel .carousel-item {
        height: 400px;
    }

    #heroCarousel .carousel-item>div {
        height: 100%;
        display: flex;
        align-items: center;
    }
}


/* Mobile */
@media (max-width: 576px) {
    #heroCarousel img {
        max-height: 110px;
    }

    #heroCarousel .carousel-item {
        padding: 20px 0;
    }

    #heroCarousel h1 {
        font-size: 1.5rem;
    }

    #heroCarousel p {
        font-size: 0.9rem;
    }
}

.category-img-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    /* 👇 makes white images visible */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f1f1;

    transition: all 0.3s ease;
}

/* Tablet */
@media (min-width: 768px) {
    .category-img-wrapper {
        width: 150px;
        height: 150px;
    }
}

/* Laptop / Desktop */
@media (min-width: 1200px) {
    .category-img-wrapper {
        width: 200px;
        height: 200px;
    }
}

.category-img-wrapper img {
    width: auto;
    height: 100%;
    object-fit: cover;
}

.category-card:hover .category-img-wrapper {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


.category a p {
    display: inline-block;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.category a:hover p {
    border-bottom-color: #000;
}

.round-1 {
    border-radius: 15px;
}

@media (max-width:768px) {
    .round-1 {
        border-radius: 0px;
    }
}


/* Product Card Fix */
.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Perfect square */
    overflow: hidden;
    border-radius: 12px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image inside card */
.product-image img {
    width: 100%;
    height: 190px !important;
    object-fit: cover;

}



.products img {
    height: 230px;
    object-fit: cover;
    border-radius: 12px;
    width: 100%;
}

/* SLIDER WRAPPER */
.product-slider {
    padding: 12px;
}

/* CONTROL BUTTON STYLE */
.slider-btn {
    background-color: rgba(0, 0, 0, .5);
    border-radius: 50%;
    padding: 14px;
}

/* SHOW ARROWS ONLY ON HOVER */
.product-slider .carousel-control-prev,
.product-slider .carousel-control-next {
    opacity: 0;
    transition: .25s;
}

.product-card:hover .carousel-control-prev,
.product-card:hover .carousel-control-next {
    opacity: 1;
}

@media(max-width:768px) {
    .products img {
        height: 240px;
    }
}



/* ===== MAIN IMAGE ===== */
.main-product-image{
    width:100%;
    height:520px;
    object-fit:cover;
    background:#f6f7f8;
    border-radius:18px;
}

/* ===== THUMBNAILS DESKTOP ===== */
.thumb-list{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.thumb-img{
    width:100%;
    border-radius:10px;
    cursor:pointer;
    border:2px solid transparent;
    transition:.2s;
    height: 90px;
}

.thumb-img.active,
.thumb-img:hover{
    border-color:#0d6efd;
}

/* ===== SLIDER ===== */
.product-main-slider{
    background:#f6f7f8;
    border-radius:18px;
    overflow:hidden;
}

/* arrows */
.slider-btn{
   
    border-radius:50%;
    padding:14px;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media(max-width:991px){

    .main-product-image{
        height:340px;
    }

    /* thumbnails become horizontal slider */
    .thumb-list{
        flex-direction:row;
        overflow-x:auto;
        padding-top:10px;
    }

    .thumb-img{
        width:80px;
        flex:0 0 auto;
    }

    /* hide arrows on mobile */
    .carousel-control-prev,
    .carousel-control-next{
        display:none;
    }
}

/* SMALL MOBILE */
@media(max-width:576px){
    .main-product-image{
        height:280px;
    }
}
/* ─── CHECKOUT PAGE ─────────────────────────────────────── */
.checkout-page {
    background-color: #f3f3f3;
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.checkout-page .card {
    border: 1px solid #e0e0e0 !important;
    background-color: #ffffff;
}

/* ─── PAYMENT OPTION HOVER ──────────────────────────────── */
.payment-option:hover {
    background-color: #f8f9fa;
    border-color: #0d6efd !important;
    transition: all 0.2s ease;
}

/* ─── PRODUCT DESCRIPTION ───────────────────────────────── */
.product-description .description-body p  { margin-bottom: 0.5rem; font-size: 0.92rem; }
.product-description .description-body ul { padding-left: 1.2rem; font-size: 0.92rem; }
.product-description .description-body h1,
.product-description .description-body h2,
.product-description .description-body h3 { font-size: 1rem; font-weight: 600; }