
@media screen and (max-width: 992px) {}

/* single product page css start */

/* ── Single Product Layout ────────────────────────── */
.cm-single-product {
    margin: 40px auto;
}

/* ── Gallery ──────────────────────────────────────── */
.cm-gallery {
    display: flex;
    gap: 12px;
    width: 50%;
    float: left;
}

.cm-thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 70px;
    flex-shrink: 0;
}

.cm-thumb {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    border: 2px solid #eee;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: border-color 0.2s;
}

.cm-thumb.cm-thumb-active,
.cm-thumb:hover {
    border-color: #333;
}

.cm-main-image-wrap {
    flex: 1;
    overflow: hidden;
    background: #f9f9f9;
}

.cm-main-image-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ── Info Panel ───────────────────────────────────── */
.cm-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 48%;
    float: right;
}

.cm-product-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.cm-price .price {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

/* ── Swatches ─────────────────────────────────────── */
.cm-attr-group {
    margin-bottom: 14px;
}

.cm-attr-label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.cm-swatches-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cm-swatch-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s;
}

.cm-swatch-circle.cm-active {
    border-color: #333 !important;
    transform: scale(1.15);
    /* box-shadow: 0 0 0 2px #fff, 0 0 0 4px #333; */
}

.cm-swatch-circle:hover {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px #333;
}

/* ── Hide WC default selects/table ───────────────── */
.cm-cart-form table.variations,
.cm-cart-form .variations_button .reset_variations {
    display: none !important;
}

.cm-cart-form .single_add_to_cart_button {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    border-radius: 8px;
    background: #e91e8c;
    color: #fff;
    border: none;
    cursor: pointer;
}

@media (max-width: 922px) {
    .cm-info {
        width: 46%;
    }
}

/* ── Mobile ───────────────────────────────────────── */
@media (max-width: 768px) {

    .cm-thumbs {
        flex-direction: row;
        width: 100%;
    }
}

/* single product page css end */

.cm-swatch-preview {}