/* WRAPPER */
.spc-compare-wrapper {
    margin-top: 30px;
}

/* =========================
   TOP SECTION
========================= */
.spc-compare-top {
    display: grid;
    grid-template-columns: 300px 1fr 1fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 30px;
}

.spc-top-card {
    text-align: center;
}

.spc-image-wrap {
    position: relative;
}

.spc-image-wrap img {
    width: 100%;
    border-radius: 16px;
}

.spc-title {
    margin-top: 15px;
    font-size: 20px;
}

/* REMOVE BUTTON */
.spc-remove-item {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

/* =========================
   GRID SECTION
========================= */
.spc-compare-table-grid {
    display: grid;
    grid-template-columns: 300px 1fr 1fr;
    gap: 20px;
}

/* COLUMNS */
.spc-col {
    display: flex;
    flex-direction: column;
}

/* LABEL COLUMN */
.spc-labels {
    background: #f7f7f7;
}

.spc-row:contains("—") {
    color: #aaa;
}

/* ROWS */
.spc-row {
    padding: 14px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.spc-label {
    text-align: left;
    font-weight: 500;
    color: #555;
}

/* VALUES */
.spc-values .spc-row {
    background: #fff;
}

/* PRICE HIGHLIGHT */
.spc-values .spc-row:first-child {
    color: #e60023;
    font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .spc-compare-top {
        grid-template-columns: 1fr;
    }

    .spc-compare-table-grid {
        grid-template-columns: 1fr;
    }
}

/* SINGLE CARD */
.spc-single-card {
    text-align: center;
}

.spc-single-card img {
    width: 100%;
    border-radius: 12px;
}

/* ADD SECOND CARD */
.spc-add-second-card {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    background: #fafafa;
    height: 267px;
}

.spc-add-second-card h4 {
    margin-bottom: 15px;
}

/* DROPDOWN FULL WIDTH */
#spc-dropdown-wrap-2 select {
    width: 100%;
    padding: 10px;
}

.spc-single-card img,
.spc-image-wrap img {
    max-height: 267px;
    object-fit: cover;
    border-radius: 12px !important;
}

.spc-single-wrap {
    max-width: 600px;
    margin: 0 auto;
}

.spc-top-actions {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.spc-clear-btn {
    background: #e60023;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 18px;
    cursor: pointer;
    font-weight: 600;
}

.spc-clear-btn:hover {
    background: #c4001d;
}

.spc-clear-col {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.spc-clear-btn {
    background: #e60023;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

.spc-clear-btn:hover {
    background: #c4001d;
}

@media (max-width: 768px) {
    .spc-compare-top {
        grid-template-columns: 1fr;
    }

    .spc-clear-col {
        justify-content: flex-start;
    }

.spc-initial-container {
	padding: 40px !important;
}
}
.spc-empty {
    color: #ccc;
}

.spc-initial-container {
 border:1px solid #E8E7E7;
background: #F8F8F8;
border-radius: 12px;
padding: 80px 200px;
}