
.gift-item {
    position: relative;
    overflow: hidden;
}

.sold-out-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.9em;
    font-weight: bold;
    z-index: 10;
}

.nft-availability {
    margin: 8px 0;
}

.gift-action-button {
    width: 100%;
    padding: 7px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gift-action-button:disabled {
    background: var(--surface-light);
    color: var(--text-tertiary);
    cursor: not-allowed;
}

.gift-action-button:not(:disabled):active {
    transform: scale(0.98);
}

.home-banner-container {
    width: 100%;
    padding: 0 10px;
    margin-top: 45px;
}

.home-banner {
    width: 100%;
    max-width: 450px;
    border-radius: 16px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.home-banner:hover {
    transform: scale(1.01);
}

.banner-fallback {
    width: 100%;
    height: 150px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5em;
    font-weight: 700;
    border: 1px solid var(--border);
}