/* RaxGifts Flowers Card Styles */

.fbc-card {
    width: 100%;
    max-width: 380px;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 24px 22px 20px 22px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    margin: 0 auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.fbc-card::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 140px; height: 140px;
    background: radial-gradient(circle, rgba(255,107,129,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.fbc-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
}

.fbc-header-left { flex: 1; min-width: 0; }

.fbc-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.fbc-subtitle-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.fbc-subtitle-glow {
    position: absolute;
    inset: -5px -8px;
    background: #25d366;
    border-radius: 10px;
    filter: blur(14px);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}

.fbc-subtitle-glow::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: #25d366;
    border-radius: 8px;
    filter: blur(8px);
    opacity: 0.7;
}

.fbc-subtitle {
    position: relative;
    display: block;
    width: 100%;
    color: #ffffff;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 8px;
    background: #25d366;
    border: 1.5px solid rgba(255,255,255,0.2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 2px 12px rgba(37,211,102,0.3);
    z-index: 1;
}

.fbc-flower-icon {
    width: 48px; height: 48px;
    background: #ff6b81;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 12px;
    box-shadow: 0 4px 16px rgba(255,107,129,0.3);
}

.fbc-flower-icon svg { width: 26px; height: 26px; }

.fbc-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 16px;
}

.fbc-tag {
    background: #2a2a2a;
    color: #c0c0c0;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid #333;
    transition: all 0.2s ease;
}

.fbc-tag:hover { background: #333; color: #fff; }

.fbc-countdown-section {
    background: #222;
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 12px;
    border: 1px solid #2a2a2a;
}

.fbc-countdown-label {
    color: #888;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fbc-dot {
    width: 6px; height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: fbc-pulse 1.5s infinite;
    display: inline-block;
}

@keyframes fbc-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.fbc-countdown-timer {
    display: flex;
    align-items: center;
    gap: 6px;
}

.fbc-time-unit { text-align: center; }

.fbc-time-value {
    background: #1a1a1a;
    color: #ff6b81;
    font-size: 18px;
    font-weight: 700;
    width: 42px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #333;
    font-variant-numeric: tabular-nums;
}

.fbc-time-label {
    color: #666;
    font-size: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
}

.fbc-time-separator {
    color: #444;
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 14px;
}

.fbc-cutoff-info {
    color: #666;
    font-size: 9.5px;
    margin-top: 8px;
    text-align: center;
    letter-spacing: 0.3px;
}

.fbc-cutoff-time { color: #ff6b81; font-weight: 600; }

/* ===== DELIVERY TIME DISPLAY ===== */
.fbc-delivery-section {
    background: #222;
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 14px;
    border: 1px solid #2a2a2a;
}

.fbc-delivery-label {
    color: #888;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fbc-delivery-label svg {
    width: 12px; height: 12px;
    color: #ff6b81;
}

.fbc-next-slot-display {
    background: #1a1a1a;
    border-radius: 10px;
    border: 1px solid #333;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 14px;
}

.fbc-slot-main {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.fbc-slot-icon {
    width: 36px; height: 36px;
    background: rgba(255,107,129,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fbc-slot-icon svg {
    width: 18px; height: 18px;
    color: #ff6b81;
}

.fbc-slot-info { min-width: 0; }

.fbc-slot-time {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.fbc-slot-status {
    color: #4ade80;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.fbc-slot-status .fbc-live-dot {
    width: 5px; height: 5px;
    background: #4ade80;
    border-radius: 50%;
    animation: fbc-pulse 1.5s infinite;
    display: inline-block;
    flex-shrink: 0;
}

.fbc-slot-badge {
    background: rgba(255,107,129,0.12);
    color: #ff6b81;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255,107,129,0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.fbc-delivery-note {
    color: #666;
    font-size: 9px;
    margin-top: 8px;
    text-align: center;
    letter-spacing: 0.3px;
}

.fbc-delivery-note span { color: #ff6b81; font-weight: 600; }

.fbc-bottom-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fbc-cta-button {
    width: 100%;
    background: #ff6b81;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(255,107,129,0.25);
    text-decoration: none;
    font-family: inherit;
}

.fbc-cta-button:hover {
    background: #ff5269;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255,107,129,0.35);
}

.fbc-cta-button svg { width: 16px; height: 16px; }

.fbc-progress-bar {
    position: absolute;
    bottom: 0; left: 0;
    height: 3px;
    background: #ff6b81;
    border-radius: 0 0 0 20px;
    transition: width 1s linear;
}

/* Desktop */
@media (min-width: 768px) {
    .fbc-card { max-width: 420px; padding: 28px 26px 24px 26px; }
    .fbc-title { font-size: 22px; }
    .fbc-subtitle { font-size: 11px; padding: 8px 16px; }
    .fbc-tag { font-size: 11px; padding: 7px 14px; }
    .fbc-time-value { font-size: 20px; width: 48px; height: 42px; }
    .fbc-slot-time { font-size: 14px; }
    .fbc-cta-button { font-size: 14px; padding: 16px 24px; }
}

/* Mobile compact */
@media (max-width: 360px) {
    .fbc-card { padding: 20px 16px 18px 16px; }
    .fbc-title { font-size: 17px; }
    .fbc-subtitle { font-size: 8.5px; padding: 6px 10px; letter-spacing: 1px; }
    .fbc-time-value { width: 36px; height: 34px; font-size: 16px; }
    .fbc-slot-time { font-size: 11px; }
    .fbc-slot-badge { padding: 4px 8px; font-size: 8px; }
    .fbc-next-slot-display { padding: 12px 12px; gap: 10px; }
}
