/* Scroll Pills */
.cat-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
}
.cat-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #0e0e0e;
    color: #fff;
    border-radius: 50px;
    border: 1px solid #6a00ff;
    transition: .3s;
    white-space: nowrap;
}
.cat-pill:hover {
    background: #6a00ff;
    color: #fff;
    transform: translateY(-3px);
}
.cat-pill img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

/* Section Title */
.cat-title-head {
    margin: 15px 0;
    font-size: 22px;
    font-weight: 700;
    color: #000;
    border-left: 4px solid #6a00ff;
    padding-left: 10px;
}

/* Grid */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
    gap: 20px;
}

/* Category Card */
.cat-card a {
    display: block;
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid #eee;
    transition: .3s;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}
.cat-card a:hover {
    transform: translateY(-6px);
    border-color: #6a00ff;
    box-shadow: 0 8px 20px rgba(106,0,255,0.25);
}

/* Image Wrap */
.cat-img-wrap img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 12px;
    border: 2px solid #6a00ff;
    padding: 4px;
}

/* Name */
.cat-name {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

/* Mobile */
@media(max-width:768px){
    .cat-img-wrap img{ width:75px;height:75px; }
}

/* ==============================
   COMPARE MODAL BASE
============================== */
.compare-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    z-index: 99999;
    box-shadow: 0 -4px 25px rgba(0,0,0,0.4);
}

.compare-modal.show {
    display: flex;
}

/* LEFT SCROLL WRAPPER */
.compare-left {
    flex: 1;
    overflow-x: auto;
    max-width: calc(250px * 5 + 60px); /* EXACT 5 ITEM WIDTH */
}

.compare-scroll {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Scrollbar */
.compare-scroll::-webkit-scrollbar {
    height: 6px;
}
.compare-scroll::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 10px;
}

/* ==============================
   PRODUCT ITEM CARD
============================== */
.compare-item {
    background: #000;
    color: #fff;
    width: 250px;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    flex: 0 0 auto;
    box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.compare-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin: 0 auto 10px auto;
    display: block;
}

.compare-item a {
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    display: block;
    line-height: 1.3;
}

/* Remove Button */
.remove-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #ff3b3b;
    width: 22px;
    height: 22px;
    font-size: 15px;
    border-radius: 50%;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* ==============================
   RIGHT SIDE ACTIONS
============================== */
.compare-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Count Badge */
.compare-count {
    background: #0054a6;
    color: #fff;
    padding: 6px 12px;
    border-radius: 50%;
    font-weight: bold;
}

/* Compare Button */
.compare-btn {
    background: #0054a6;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

/* Close Button */
.compare-close {
    background: transparent;
    color: #fff;
    border: 1px solid #666;
    font-size: 22px;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
}

/* ==============================
   MOBILE RESPONSIVE
============================== */
@media (max-width: 768px) {

    .compare-modal {
        padding: 12px;
        flex-direction: column;
        align-items: flex-start;
    }

    .compare-left {
        width: 100%;
        margin-bottom: 12px;
        max-width: 100%;
    }

    .compare-right {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
}



/* Container layout */
.kew-section {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.kew-container {
    width: 850px;
    background: #fff;
    border: 1px solid #dcdcdc;
    padding: 40px 50px;
    border-radius: 4px;
}

.kew-privacy {
    font-size: 14px;
    color: #555;
}

.kew-privacy a {
    color: #0077cc;
    text-decoration: underline;
}

.kew-check-row {
    margin-top: 16px;
    font-size: 14px;
}

.kew-divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 25px 0;
}

.kew-note {
    font-size: 14px;
    margin-bottom: 25px;
}

/* LABEL */
.kew-label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
    color: #333;
}

.required {
    color: red;
}

/* TEXT INPUTS */
.kew-input {
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px 12px;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

/* INPUT SPACING */
.kew-block {
    margin-bottom: 20px;
}

/* RADIO GROUP */
.kew-radio-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

/* NUMBER COUNTER */
.kew-counter {
    display: flex;
    gap: 5px;
    align-items: center;
}

.kew-counter button {
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    background: #f5f5f5;
    cursor: pointer;
}

.kew-counter input {
    width: 50px;
    text-align: center;
    border: 1px solid #ccc;
    padding: 6px 0;
}

/* BUTTON */
.kew-btn {
    background: #00c080;
    color: #fff;
    padding: 10px 26px;
    border-radius: 4px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    margin-top: 20px;
}

.kew-btn:hover {
    background: #00a66c;
}


.mainVisual_content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 670px;
    z-index: 2;
}

.mainVisual_title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.mainVisual_desc {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.4;
}

.mainVisual_btn {
    display: inline-block;
    padding: 12px 28px;
    background: #fff;
    color: #000;
    border-radius: 4px;
    font-weight: 600;
    transition: 0.3s;
}

.mainVisual_btn:hover {
    background: #ddd;
}

/* Mobile Responsive Slider Text */
@media (max-width: 767px) {
    .mainVisual_content {
        left: 5%;
        right: 5%;
        top: 55%;
        transform: translateY(-50%);
        text-align: left;
        max-width: 100%;
    }

    .mainVisual_title {
        font-size: 26px !important;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .mainVisual_desc {
        font-size: 15px !important;
        line-height: 1.4;
        margin-bottom: 18px;
    }

    .mainVisual_btn {
        padding: 10px 22px;
        font-size: 14px;
        border-radius: 4px;
    }
}

/* Small Device (Phones under 480px) */
@media (max-width: 480px) {
    .mainVisual_title {
        font-size: 22px !important;
    }

    .mainVisual_desc {
        font-size: 14px !important;
    }

    .mainVisual_btn {
        font-size: 13px;
        padding: 8px 20px;
    }
}

