/* Coupons CSS - Extracted from home.css */
/* This file contains ONLY coupon-related styles */

/* --- COUPONS --- */
body.home-page .coupon-section { margin: 60px auto; position: relative; padding: 0 20px; }
body.home-page .carousel-wrapper { 
    position: relative; 
    overflow: hidden; 
    padding: 20px 0; 
}
body.home-page .coupons-container { 
    display: flex; 
    gap: 25px; 
    transition: transform 0.5s ease; 
    width: 100%;
}
body.home-page .coupons-container { display: flex; gap: 25px; transition: transform 0.5s ease; }
body.home-page .coupon-card { 
    flex: 0 0 calc(20% - 20px); 
    background: linear-gradient(135deg, #ffd4d4 0%, #fce4ec 100%); 
    border-radius: 15px; padding: 30px 20px; 
    text-align: center; position: relative; 
    cursor: pointer; transition: 0.4s; 
    border: 2px dashed rgba(255,255,255,0.7); 
}
body.home-page .coupon-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(61,37,20,0.18); }
body.home-page .coupon-icon { width: 50px; height: 50px; background: rgba(255,255,255,0.8); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-size: 24px; }
body.home-page .coupon-code { font-size: 1.5rem; font-weight: 800; color: #3d2514; margin-bottom: 10px; }
body.home-page .copy-btn { background: #8b4513; color: white; border: none; padding: 10px 25px; border-radius: 25px; font-weight: 600; }
body.home-page .carousel-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(139,69,19,0.8); color: white; border: none; width: 40px; height: 40px; border-radius: 50%; z-index: 10; }
body.home-page .carousel-nav.prev { left: -10px; }
body.home-page .carousel-nav.next { right: -10px; }
body.home-page .copied-notification { position: fixed; top: 30px; right: 30px; background: #8b4513; color: white; padding: 15px 25px; border-radius: 8px; transform: translateX(400px); transition: 0.4s; z-index: 2000; display: flex; align-items: center; gap: 10px; }
body.home-page .copied-notification.show { transform: translateX(0); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    body.home-page .coupon-card { flex: 0 0 calc(33.33% - 20px); }
}

@media (max-width: 768px) {
    body.home-page .coupon-card { flex: 0 0 100%; }
}

