﻿.cc-products-container {
    display: flex;
    gap: clamp(50px, 5vw, 80px);
    margin: clamp(8px, 1.5vw, 24px);
    margin-bottom: 0;
    padding-bottom: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.cc-product {
    background: #EDEDED;
    display: flex;
    flex-direction: column;
    width: 360px;
    padding: 33px 50px;
    border-radius: 16px;
    font-weight: 500;
    color: #2D2D2D;
    gap: 24px;
    height: fit-content;
    transition: all .3s ease;
    border: 3.33px solid transparent;
}

    .cc-product.hoverable {
        cursor: pointer;
    }

    .cc-product.disabled {
        pointer-events: none;
        opacity: .4;
    }

    .cc-product.hoverable:hover,
    .cc-product.selected {
        border-color: var(--sf-soft-red);
    }

        .cc-product.hoverable:hover .cc-product-title,
        .cc-product.selected .cc-product-title {
            color: var(--sf-soft-red);
        }

.cc-product-listing-home .cc-product {
    background: var(--white);
}

.cc-product-title {
    margin: 0;
    font-size: 20px;
}

.cc-product-pricing {
    display: flex;
    gap: 2px;
    align-items: end;
}

    .cc-product-pricing > p {
        margin: 0;
        font-size: 46px;
    }

    .cc-product-pricing > span {
        font-size: 13px;
        color: #747A7B;
    }

.cc-product-features-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cc-product-feature {
    display: flex;
    gap: 22px;
    align-items: center;
}

    .cc-product-feature > span {
        font-weight: 400;
        font-size: 16px;
        flex: 1;
    }

.cc-product-listing {
    margin-top: clamp(75px, 15vw, 120px);
    padding: 0 !important;
    padding-top: 28px !important;
}

    .cc-product-listing .cc-products-container {
        margin-bottom: 0;
    }

.cc-unsubscribe-btn,
.cc-delete-my-account-btn {
    border: none;
    text-align: start;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    color: #ff0000;
}

.cc-delete-my-account-btn {
    margin-bottom: 32px;
}

.cc-common-page-container {
    background-color: var(--ly-white);
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: clamp(95px, 15vw, 140px);
    padding-bottom: 22px;
    padding-inline: 0 !important;
    min-height: calc(100% - 60px);
}

.cc-empty-page-title {
    font-weight: bold;
    text-align: center;
    padding: 12px;
    margin: 32px;
}

.cc-custom-checkbox label {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    display: inline-block;
    margin-inline-end: 10px;
    position: relative;
    border-radius: 0;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

[for="terms-checkbox"] {
    cursor: pointer;
}

.cc-custom-checkbox input:checked + label::after {
    content: "";
    position: absolute;
    left: 4.5px;
    width: 6px;
    height: 12px;
    border: solid var(--sf-soft-red);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: all 0.2s ease;
}

.cc-custom-checkbox input:checked + label {
    border-color: var(--sf-soft-red);
}

@media screen and (max-width: 600px) {
    .cc-products-container {
        gap: 35px;
    }

    .cc-product {
        padding: 24px 36px;
        width: 100%;
    }
}

@media screen and (max-width: 380px) {
    .cc-product {
        padding-inline: 30px;
    }
}