
        .otp-container {
            max-width: 600px;
            margin: 50px auto;
            padding: 30px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
            text-align: center;
        }
        .otp-inputs {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        .otp-inputs input {
            width: 50px;
            height: 50px;
            text-align: center;
            font-size: 20px;
            border: 2px solid #ddd;
            border-radius: 8px;
        }
        .otp-inputs input:focus {
            outline: none;
            border-color: #ff6b6b;
        }
/* Fix for mobile scroll on product images */
.product_img_box img, 
.zoomContainer {
    touch-action: pan-y !important;
}

/* ── Category filter checkbox styles ── */
#category-list li a.category-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 4px;
    color: #444;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.15s;
}
#category-list li a.category-filter:hover {
    background: #f5f5f5;
    color: #222;
}

/* The checkbox square */
.cat-checkbox {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    min-width: 17px;
    border: 2px solid #aaa;
    border-radius: 3px;
    background: #fff;
    transition: background 0.15s, border-color 0.15s;
}

/* The tick — hidden by default */
.cat-tick {
    display: none;
    font-size: 11px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

/* When category is active: fill checkbox & show tick */
#category-list li a.category-filter.active .cat-checkbox {
    background: var(--primary-color, #ff4c00);
    border-color: var(--primary-color, #ff4c00);
}
#category-list li a.category-filter.active .cat-tick {
    display: inline;
}
#category-list li a.category-filter.active .categories_name {
    font-weight: 600;
    color: var(--primary-color, #ff4c00);
}

/* ── Color filter tick styles ── */
.color-filter {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* White tick on selected colour circle */
.color-filter.active::after {
    content: "✓";
    position: absolute;
    font-size: 12px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 2px rgba(0,0,0,0.6);
    pointer-events: none;
}

/* Ring around selected colour to make it obvious */
.color-filter.active {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #333;
    border-radius: 50%;
}


