﻿body {
    height: 100vh;
    background: white;
    font-family: system-ui, -apple-system, sans-serif;
}

a {
    text-decoration: none!important;
    color: inherit!important;
}
/* ================= BANNER ================= */
.promo-banner {
    background: linear-gradient(90deg, #5f2eea, #6c2bd9);
    padding: 30px;
    border-radius: 16px;
}

.banner-img img {
    height: 200px;
    object-fit: contain;
}

/* ================= PRODUCTS ================= */
.section-title {
    font-weight: 700;
    font-size: 20px;
    padding: 15px;
}

/* ================= OFFCANVAS ================= */
.custom-offcanvas {
    width: 100% !important;
    max-width: 100%;
}

.category-box {
    background: #f3f3f3;
    border-radius: 15px;
    padding: 20px 0;
    font-size: 26px;
}

.category-item {
    border: none;
    border-radius: 15px;
    margin-bottom: 10px;
    background: #f7f7f7;
    padding: 15px;
}
/* ================= DESKTOP ONLY ================= */
@media (min-width: 992px) {
    #customCanvaMenu {
        width: 250px;
        border-right: unset;
    }

    #customSubCanvaMenu.side-panel {
        width: 250px;
        top: 0;
        bottom: 0;
        left: 400px !important;
        position: fixed;
        z-index: 1055;
        background-color: #fff;
        border-left: 1px solid #ddd;
    }
}
/* ================= DESKTOP ONLY ================= */
@media(min-width:992px) {

    .custom-offcanvas {
        width: 400px !important;
    }
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1520px;
    }
}

.image-card {
    position: relative;
    overflow: hidden;
}

.image-text {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    max-width: 250px;
}

    .image-text h3 {
        font-size: 28px;
        font-weight: bold;
    }

    .image-text p {
        font-size: 14px;
        margin-bottom: 10px;
    }

.section-header {
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
}

.brand-logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    padding: 5px;
}

.section-header h5 {
    font-size: 18px;
}

.section-header small {
    font-size: 13px;
}

.see-all {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .see-all::after {
        content: "➔";
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        background: #333;
        color: #fff;
        border-radius: 50%;
        font-size: 14px;
    }

    .see-all:hover {
        color: #000;
    }

.slick-prev,
.slick-next {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 10;
    transition: all 0.3s ease;
}

    /* Arrow icon */
    .slick-prev:before,
    .slick-next:before {
        color: #333;
        font-size: 18px;
        opacity: 1;
    }

    /* Hover effect */
    .slick-prev:hover,
    .slick-next:hover {
        background: #fff;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    /* Active (click) */
    .slick-prev:active,
    .slick-next:active {
        transform: scale(0.95);
    }

/* Position */
.slick-prev {
    left: -20px;
}

.slick-next {
    right: -20px;
}
