/* ===============================
   Viewport – fixed visible area
   =============================== */
.fillyfab-offer-message-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    padding: 0;
}

/* ===============================
   Track – sliding container
   =============================== */
.fillyfab-offer-message-row {
    display: flex;
    transition: transform 0.35s ease;
    will-change: transform;
    align-items: stretch;
}

/* ===============================
   Outer item – controls slider math
   =============================== */
.fillyfab-offer-message-item {
    flex: 0 0 80%;
    max-width: 80%;
    box-sizing: border-box;
    cursor: grab;
}

.fillyfab-offer-message-item:active {
    cursor: grabbing;
}

/* ===============================
   Inner card – visuals & spacing
   =============================== */
.fillyfab-offer-message-card {
    height: 100%;
    margin-right: 12px;
    padding: 14px;

    border: 1px solid #DCFCE7;
    border-radius: 8px;
    background: linear-gradient(#f6fff8, #ffffff);

    display: flex;
    flex-direction: column;

    transition: box-shadow 0.3s ease, transform 0.3s ease;
    user-select: none;
}

.fillyfab-offer-message-item:active .fillyfab-offer-message-card {
    transform: scale(0.98);
}

/* ===============================
   Desktop hover interactions
   =============================== */
@media (hover: hover) {
    .fillyfab-offer-message-card:hover {
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    }

    .fillyfab-offer-message-coupon-code.fillyfab-offer-message-copy-coupon:hover {
        color: #166534;
        border-bottom-color: #166534;
    }
}

/* ===============================
   Mobile adjustments
   =============================== */
@media (max-width: 768px) {
    .fillyfab-offer-message-item {
        flex: 0 0 88%;
        max-width: 88%;
    }

    .fillyfab-offer-message-card {
        margin-right: 8px;
        padding: 12px;
    }

    .fillyfab-offer-message-coupon-title {
        font-size: 14px;
    }

    .fillyfab-offer-message-coupon-text {
        font-size: 12px;
    }
}

/* ===============================
   Title
   =============================== */
.fillyfab-offer-message-coupon-title {
    font-size: 15px;
    font-weight: 700;
    color: #14532d;
    margin-bottom: 4px;
}

/* ===============================
   Main message
   =============================== */
.fillyfab-offer-message-coupon-text {
    font-size: 13px;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 4px;
}

/* ===============================
   Info / helper text
   =============================== */
.fillyfab-offer-message-coupon-info {
    font-size: 11px;
    color: #6b7280;
    margin-bottom: 8px;
}

/* ===============================
   Coupon code / copy action
   =============================== */
.fillyfab-offer-message-coupon-code {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #4AB12F;
    margin-bottom: 6px;
}

.fillyfab-offer-message-coupon-code.fillyfab-offer-message-copy-coupon {
    font-size: 12px;
    font-weight: 600;
    color: #15803d;
    cursor: pointer;
    display: inline-block;
    border-bottom: 1px dashed #15803d;
    padding-bottom: 2px;
}

.fillyfab-offer-message-coupon-code.fillyfab-offer-message-copy-coupon.is-copied {
    color: #4b5563;
    border-bottom-color: #4b5563;
}

/* ===============================
   Swipe hint
   =============================== */
.fillyfab-offer-message-viewport::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 32px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0),
        #ffffff
    );
}
