.offer-card {
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FE3F40, #ff6b6c, #FE3F40);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FE3F40 0%, #ff6b6c 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(254, 63, 64, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 18px;
    margin-right: 10px;
}

.offer-timer {
    background: rgba(254, 63, 64, 0.1);
    color: #FE3F40;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
}

.offer-button {
    background: linear-gradient(135deg, #FE3F40 0%, #ff6b6c 100%);
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(254, 63, 64, 0.3); }
    to { box-shadow: 0 0 30px rgba(254, 63, 64, 0.6); }
}

.limited-offers {
    margin-top: 60px;
    text-align: center;
}

.limited-offers h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.mini-offer {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mini-offer:hover {
    transform: translateY(-5px);
}

.mini-offer h4 {
    color: #FE3F40;
    margin-bottom: 10px;
    font-size: 18px;
}

.mini-offer p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.offer-value {
    display: block;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 15px;
}

.mini-offer-btn {
    background: #FE3F40;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.mini-offer-btn:hover {
    background: #e63946;
    transform: scale(1.05);
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb a {
    color: #FE3F40;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #e63946;
}

@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .limited-offers h2 {
        font-size: 24px;
    }
}