/* Container holding the circles horizontally */
.stamp-card-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

/* Base style for every stamp slot circle */
.stamp-slot {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Empty style matching your design */
.stamp-slot.empty {
    border: 3px dashed #f39200;
    background-color: transparent;
}

/* Filled style layout wrapper background */
.stamp-slot.filled {
    border: 3px dashed #f39200;
    background-color: transparent;
}

/* Stamp Logo Image Constraints */
.stamp-slot img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Core Gift Card Layout Styles */
.reward-perk-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.bg-orange {
    background-color: #f39200 !important;
}

.bg-black {
    background-color: #000000 !important;
}

.perk-icon {
    font-size: 2rem;
}