.logo-configurator {
    background-color: #f1f3f5;
    padding: 2rem;
}

.logo-section-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.logo-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    background-color: #ff0000;
}

.logo-section {
    margin-bottom: 2.5rem;
}

.layout-selection-list {
    padding: 0;
}

.layout-item {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.layout-item input[type="radio"] {
    margin-right: 15px;
    width: 18px;
    height: 18px;
    accent-color: #ff0000;
}

.layout-item label {
    margin-bottom: 0;
    cursor: pointer;
    font-size: 1.1rem;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

#layout-preview-container {
    display: none;
    /* Hidden by default per requirement */
    transition: opacity 0.3s ease;
}

.logo-layout-wrapper {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .logo-layout-wrapper {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    #layout-preview-container {
        order: -1; /* move preview on top */
    }
}

.preview-box {
    background: transparent;
    border: none !important;
    box-shadow: none !important;
}

.setup-service-selection {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 4px;
}

.upload-btn-wrapper {
    margin-top: 1.5rem;
}

.upload-btn-wrapper .btn-upload {
    background-color: #ff0000;
    color: #ffffff;
    border: none;
    padding: 10px 25px;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.upload-btn-wrapper .btn-upload:hover {
    background-color: #cc0000;
}

.pricing-tier-group .tier-label {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.pricing-tier-group ul li {
    font-size: 1.05rem;
    color: #333;
    padding-left: 5px;
}

.setup-service-selection label {
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.pricing-footer p {
    font-style: italic;
    font-size: 0.95rem;
}

/* Ensure matrix price column is visible so JS can update it with logo pricing */
.vari-matrix-price-cell,
.vari-matrix-th.col-price {
    display: table-cell !important;
}

/* --- NEW: Sticky Product Image for Desktop --- */
@media (min-width: 992px) {
    #product-offer.product-detail {
        display: flex;
        align-items: flex-start;
    }

    #product-offer.product-detail>.product-gallery {
        position: sticky;
        top: 8rem;
        z-index: 10;
    }
}

