.crypto-gift-card-zero-fee {
    width: 100%;
    padding: 60px 20px;
    overflow: hidden;
    background: #000;
    color: #fff;
    box-sizing: border-box;
}

.crypto-gift-card-zero-fee__inner {
    position: relative;
    overflow: visible;
    padding: 50px 64px 55px;
    border-radius: 0 0 28px 28px;
    background: linear-gradient(105deg, #363c45 0%, #171b20 52%, #030303 100%);
    box-sizing: border-box;
}

.crypto-gift-card-zero-fee__top {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.25fr);
    gap: 62px;
    align-items: center;
}

.crypto-gift-card-zero-fee__visual {
    position: relative;
    display: flex;
    min-height: 310px;
    align-items: center;
    justify-content: center;
}

.crypto-gift-card-zero-fee__image {
    display: block;
    width: min(420px, 100%);
    max-height: 330px;
    object-fit: contain;
}

.crypto-gift-card-zero-fee__badge-image {
    position: absolute;
    top: -55px;
    right: -25px;
    width: 150px;
    max-height: 185px;
    object-fit: contain;
}

.crypto-gift-card-zero-fee__badge-text {
    position: absolute;
    top: -15px;
    right: 5px;
    color: #f2eee5;
    font-size: 98px;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 8px 12px rgba(0, 0, 0, .35);
}

.crypto-gift-card-zero-fee__heading {
    margin: 0 0 13px;
    color: #fff;
    font-size: 31px;
    font-weight: 700;
    line-height: 1.15;
}

.crypto-gift-card-zero-fee__description {
    max-width: 560px;
    margin: 0 0 24px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.38;
}

.crypto-gift-card-zero-fee__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 22px;
    border: 1px solid #ffb900;
    border-radius: 7px;
    background: #ffb900;
    color: #080808;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: transform .2s ease, filter .2s ease;
}

.crypto-gift-card-zero-fee__button:hover {
    color: #080808;
    filter: brightness(1.06);
    transform: translateY(-2px);
}

.crypto-gift-card-zero-fee__coins {
    display: grid;
    grid-template-columns: repeat(var(--gcz-coins, 7), minmax(0, 1fr));
    gap: 28px;
    align-items: center;
    margin-top: 42px;
}

.crypto-gift-card-zero-fee__coin {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
}

.crypto-gift-card-zero-fee__coin-image {
    display: block;
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.crypto-gift-card-zero-fee__coin-fallback {
    display: flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffb900;
    color: #111;
    font-size: 27px;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .crypto-gift-card-zero-fee__inner {
        padding: 44px 40px 48px;
    }

    .crypto-gift-card-zero-fee__top {
        gap: 38px;
    }

    .crypto-gift-card-zero-fee__coins {
        grid-template-columns: repeat(var(--gcz-coins-tablet, 4), minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .crypto-gift-card-zero-fee {
        padding: 38px 16px;
    }

    .crypto-gift-card-zero-fee__inner {
        padding: 36px 22px 40px;
        border-radius: 20px;
    }

    .crypto-gift-card-zero-fee__top {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .crypto-gift-card-zero-fee__visual {
        min-height: 245px;
    }

    .crypto-gift-card-zero-fee__image {
        max-height: 245px;
    }

    .crypto-gift-card-zero-fee__badge-text {
        top: -5px;
        right: 0;
        font-size: 68px;
    }

    .crypto-gift-card-zero-fee__badge-image {
        top: -30px;
        right: -8px;
        width: 105px;
    }

    .crypto-gift-card-zero-fee__content {
        text-align: center;
    }

    .crypto-gift-card-zero-fee__heading {
        font-size: 27px;
    }

    .crypto-gift-card-zero-fee__description {
        font-size: 18px;
    }

    .crypto-gift-card-zero-fee__coins {
        grid-template-columns: repeat(var(--gcz-coins-mobile, 3), minmax(0, 1fr));
        gap: 22px 16px;
        margin-top: 36px;
    }

    .crypto-gift-card-zero-fee__coin-image,
    .crypto-gift-card-zero-fee__coin-fallback {
        width: 64px;
        height: 64px;
    }
}
