:root {
    --body: #201934;
    --secondBG: #231D34;
    --thirdBG: #232936;
    --accent: #E599F4;
    --accentHover: #E599F4;
    --accentTwo: #78D7E7;
    --accentThree: #D3A86B;
    --mainText: #fff;
    --text: #979797;
    --grey: #999ea9;
    --btnShadow: 3px 3px 20px var(--accent);
    --boxShadow: 0 4px 6px -1px rgba(0, 0, 0, 10%), 0 2px 4px -1px rgba(0, 0, 0, 6%);
    --boxShadow2: 0px 10px 50px hsla(0, 0%, 93%, .2);
}

.store-container {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 40px;
}

.store-intro {
    display: flex;
    justify-content: space-between;
    gap: 20px 40px;
}

.featured-deals {
    width: 860px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    position: relative;
    align-items: center;
    background: var(--secondBG);
    border-radius: 0 0 20px 20px;
    padding: 3rem 2rem 2rem 2rem;
    box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.25);
}

.featured-deals::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accentTwo);
}

.store-login {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--secondBG);
    border-radius: 0 0 20px 20px;
    padding: 3rem 2rem 2rem 2rem;
    width: 410px;
    min-height: 300px;
    box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.25);
}

.store-login::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent);
}

.store-products {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(3, 1fr);
}

.product-card {
    background: var(--secondBG);
    border-radius: 0 0 20px 20px;
    padding: 3rem 2rem 2rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.25);
}

.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accentThree);
}

.product-loading {
    width: 128px;
    height: 128px;
    border-top: 3px solid var(--accentThree);
    border-right: 3px solid transparent;
    border-radius: 50%;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.product-image {
    padding: 0;
}

.product-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.product-name {
    font-size: 2rem;
    color: var(--accent);
}

.product-desc {
    font-size: 1.4rem;
    color: #9A9A9A;
}

.product-price {
    color: #C2C2C2;
    font-weight: 600;
}

.buy-btn {
    padding: 0;
}