/* SHOP */

.section__shop{
    width: 90%;
    padding: 100px 5%;
}

.shop__title{
    font-weight: bold;
    font-size: 44px;
    color: var(--colorMain);
}

.shop__description{
    color: var(--colorText);
    width: 40%;
    font-weight: normal;
    font-size: 15px;
    padding-top: 10px;
}

.shop__categories{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 50px;
}


.shop__category{
    margin: 0 15px 15px 0;
    background-color: var(--backgroundSecond);
    color: var(--colorText);
    font-weight: 500;
    padding: 20px 70px;
    cursor: pointer;
}

.shop__categories .active, .shop__category:hover{
    color: var(--colorMain);
}

.shop__category:nth-child(1){
    margin-left: 0px;
}
.shop__tier:nth-child(1) {
    margin-left: 0px;
}

.shop__cards{
    margin-top: 40px;
}

.shop__card{
    background-color: var(--backgroundSecond);
    padding: 13% 10%;
    margin-bottom: 22px;
}

.shop__icon{
    width: 57px;
    max-width: 100%;
}

.shop__card__title{
    color: var(--colorMain);
    margin-top: 50px;
}

.shop__card__description{
    color: var(--colorText);
    font-weight: 400;
    font-size: 14px;
    margin-top: 10px;
}


.shop__card__pricing-table {
    font-weight: 400;
    font-size: 14px;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 50px;
}

.shop__tier {
    position: relative;
    background-color: var(--colorMain);
    border: 1px transparent #ddd;
    border-radius: 12px;
    padding: 20px 70px;
    text-align: center;
    margin: 0 20px;
    transition: box-shadow 0.3s ease;
    width: 250px;
    margin: 0 15px 15px 0;
            /* Add margin to separate tiers on mobile */
}

.shop__tier h2 {
    font-size: 24px;
    color: var(--colorDefault);
}

.shop__tier p {
    color: var(--colorSecondary);
}

ul {
    list-style: none;
    padding: 1em;
}

ul li {
    margin: 10px 0;
    color: var(--colorText);
}




ul li::before {
    content: '';
    display: inline-block;
    width: 16px;
    /* Adjust the size of the checkmark */
    height: 16px;
    margin-right: 8px;
    /* Adjust the spacing between checkmark and text */
    background-size: cover;
    background-repeat: no-repeat;
}


.shop__tier:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.featured {
    position: relative;
    border: 2px solid var(--colorMain);
    overflow: visible;
    /* Ensures the outline is clipped during animation */
    transition: border 0.3s ease;
    /* Add transition for the featured outline */
}

.featured:after {
    content: "Picked Most!";
    display: block;
    background-color: var(--colorMain);
    color: #fff;
    padding: 5px;
    border-radius: 0 0 10px 10px;
    position: absolute;
    bottom: -18px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    transition: bottom 0.3s ease;
    /* Add transition for the "Picked Most!" box */
}

.get-started {
    position: relative;
    border: 2px solid var(--colorMain);
    overflow: visible;
    /* Ensures the outline is clipped during animation */
    transition: border 0.3s ease;
        cursor: pointer;
            /* Add a pointer cursor to indicate it's clickable */
    /* Add transition for the featured outline */
}


.get-started:link,

/* .get-started:hover{
    color: #4daafc;
        
} */


.get-started:active,
.get-started:hover:after {
    color: var(--colorMain);
    text-decoration: underline;
}

.get-started:after {
    content: 'Click here to get started!';
    display: block;
    background-color: var(--buttonColorDefault);
    color: #fff;
    padding: 5px;
    border-radius: 0 0 10px 10px;
    position: absolute;
    bottom: -18px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    transition: bottom 0.3s ease;
    /* Add transition for the "Picked Most!" box */
}

.featured:hover {
    border: 2px solid var(--colorMain);;
    overflow: hidden;
    /* Make the outline transparent on hover */
}

.featured:hover:after {
    overflow: hidden;
    bottom: -40px;
    /* Move the "Picked Most!" box down on hover */
}
.featured:hover .outline {
    transform: scale(0);
        border-color: var(--buttonColorDefault);
            /* Change the color to transparent during the zoom */
    /* Zoom effect to make the outline disappear */
}
.outline {
    position: absolute;
    top: -4px;
    right: -4px;
    bottom: -4px;
    left: -4px;
    border: 2px solid var(--buttonColorGlow);
    border-radius: 12px;
    pointer-events: none;
    /* Ensures the outline doesn't interfere with hover effect */
    transition: transform 0.3s ease;
    /* Add transition for the zoom effect */
}

.shop__card__price{
    margin-top: 50px;
    font-weight: 400;
    font-size: 14px;
    color: var(--colorText);
}

.shop__card__price span{
    margin-left: 2px;
    color: var(--colorDefault);
    font-weight: 600;
    font-size: 18px;
}

.shop__card__purchase{
    margin-top: 40px;
    background-color: var(--backgroundMain);
    color: var(--colorMain);
    font-weight: 600;
    font-size: 14px;
    padding: 20px 25px;
    width: 200px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: .3s;
}

.shop__card__purchase:hover{
    opacity: 0.7;
    transition: .3s;
}

.shop__card__icon{
    margin-right: 17px;
    width: 20px;
}

@media only screen and (max-width: 1100px) {
    .section__shop{
        padding: 50px 5% 80px;
    }

    .shop__title{
        font-size: 38px;
    }

    .shop__description{
        width: 100%;
        font-size: 14px;
        padding-top: 5px;
    }

    .shop__card__purchase{
        width: 150px;
    }
}

@media only screen and (max-width: 900px) {
    .shop__category{
        width: 100%;
        text-align: center;
        margin: 0 0 12px;
    }
}