.offers-wrapper {
    /* padding: 16px; */
    padding-bottom: 90px; /* 👈 IMPORTANT */
    /* background: #f5f7fb; */
}


/* Category */
.category-section {
    margin-bottom: 20px;
}

.category-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}

/* Offer Card */
.offer-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Left */
.offer-name {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    top: 2px!important;
}

.offer-old {
    /* font-size: 13px; */
    color: #9ca3af;
}

.offer-old{
    text-decoration: line-through;
}

/* Right */
.offer-new {
    /* font-size: 16px; */
    font-weight: 700;
    color: #16a34a;
    background: #dcfce7;
    padding: 6px 12px;
    border-radius: 20px;
}


.offer-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

/* Buy Button */
.buy-btn {
    border: none;
    outline: none;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.buy-btn:active {
    transform: scale(0.96);
    box-shadow: 0 2px 6px rgba(34, 197, 94, 0.4);
}
.btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #ccc !important;
  color: #666 !important;
}

.content-1,.content-2{
    /* max-height: 70vh;
    overflow-y: auto;
    padding-bottom: 20px; */
}
