.store-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.store-modal-content {
    background: white;
    padding: 20px;
    max-width: 500px;
    width: 100%;
    border-radius: 5px;
    text-align: center;
    position: relative;
    transform: translateY(-50px);
    opacity: 0;
    transition:
        transform 0.5s ease,
        opacity 0.5s ease;
}

.store-modal-overlay {
    opacity: 0;
    visibility: hidden;
}

.store-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.store-modal-overlay.show .store-modal-content {
    transform: translateY(0);
    opacity: 1;
}

.store-close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: none;
    background: none;
    font-size: 1.5rem;
    box-shadow: none;
    color: black;
    line-height: 1.2rem;
    padding: 0;
    cursor: pointer;
}

.store-close-modal:hover {
    background: none;
    color: black;
}

.store-modal__store-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid #e7e6e6;
}

.store-modal__store-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    margin: 0;
    object-fit: cover;
    border: 1px solid #e7e6e6;
}

.store-modal__offer-title {
    font-weight: 600;
    font-size: 1.3rem;
}

.store-modal__content {
    padding: 1rem;
}

.store-modal__content-description {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.store-modal__content-copy {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.store-modal__content-copy-code {
    border: 2px dashed var(--ast-global-color-0);
    background-color: #e8ecee;
    color: black;
    border-radius: 0.3rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
    padding: 0.5rem 2rem;
    width: 100%;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.store-modal__content-copy-code:focus {
    border: 2px dashed var(--ast-global-color-0);
    border-right: none;
    padding: 0.5rem 2rem;
}

.store-modal__content-copy > button {
    background-color: var(--ast-global-color-0);
    color: white;
    border: none;
    border-radius: 0.3rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 0.5rem;
    font-size: 1.1rem;
    width: 9rem;
    flex-shrink: 0;
    cursor: pointer;
}

.store-modal__content-deal {
    margin-bottom: 1rem;
}

.store-modal__content-deal-button {
    background-color: var(--ast-global-color-0);
    color: white;
    border: none;
    border-radius: 0.3rem;
    padding: 0.5rem;
    font-size: 1.1rem;
}

.store-modal__content-deal-button:hover {
    color: white;
}

.store-modal__content-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 1rem;
}

.store-modal__content-logo img {
    height: 64px;
    object-fit: contain;
}
