* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', Helvetica, sans-serif;
    color: #333;
    line-height: 1.5;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecf0 100%);
}

.header {
    padding: 12px 16px;
    background: white;
    border-bottom: 2px solid #ff8102;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(255, 129, 2, 0.2);
}

.logo-image {
    width: 130px;
    height: 50px;
    display: flex;
    align-items: center;
}

.logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


.hero {
    display: flex;
    flex-direction: column;
    background: white;
}

.hero-image {
    width: 100%;
    height: 380px; 
    overflow: hidden;
    border-bottom: 3px solid #ff8102;
}

.image-container {
    width: 100%;
    height: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    padding: 35px 20px 30px;
    text-align: center;
    background: white;
}

.hero-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #222;
}


.btn-stations {
    background: #ff9500;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 16px 35px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-stations:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(255, 129, 2, 0.4);
}

.btn-stations:active {
    transform: scale(0.95);
}


.points-promo {
    background: #ff8102;
    padding: 30px 16px;
    margin: 0;
    border-top: 3px solid white;
    border-bottom: 3px solid white;
    position: relative;
    overflow: hidden;
}

.points-container {
    background: white;
    border-radius: 30px;
    padding: 30px 15px;
    box-shadow: 0 10px 20px rgba(255, 129, 2, 0.3);
    text-align: center;
    border: 2px solid #ff8102;
    position: relative;
    z-index: 2;
}


.points-badge {
    background: #ff8102;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(255, 129, 2, 0.4);
    border: 2px solid white;
}

.points-icon {
    font-size: 28px;
}

.points-number {
    font-size: 42px;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 0 #b35b00;
    position: relative;
    letter-spacing: 1px;
}

.points-number::before {
    content: '🎉';
    position: absolute;
    top: -25px;
    left: -25px;
    font-size: 30px;
    animation: confettiLeft 2s infinite;
}

.points-number::after {
    content: '🎉';
    position: absolute;
    bottom: -25px;
    right: -25px;
    font-size: 30px;
    animation: confettiRight 2s infinite;
}

@keyframes confettiLeft {
    0%, 100% { transform: rotate(-10deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.1); }
}

@keyframes confettiRight {
    0%, 100% { transform: rotate(10deg) scale(1); }
    50% { transform: rotate(-10deg) scale(1.1); }
}

.points-label {
    font-size: 18px;
    font-weight: 600;
    background: rgba(255,255,255,0.25);
    padding: 4px 12px;
    border-radius: 30px;
}

.points-title {
    font-size: 30px;
    font-weight: 800;
    color: #ff8102;
    margin-bottom: 15px;
}

.points-title::before {
    content: '✨';
    margin-right: 8px;
    font-size: 26px;
    color: #ff8102;
    animation: starTwinkle 1.5s infinite;
}

.points-title::after {
    content: '✨';
    margin-left: 8px;
    font-size: 26px;
    color: #ff8102;
    animation: starTwinkle 1.5s infinite 0.5s;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.points-message {
    font-size: 18px;
    color: #444;
    line-height: 1.4;
    margin-bottom: 20px;
    background: #fff9f2;
    padding: 15px;
    border-radius: 20px;
    border: 2px dashed #ff8102;
}

.highlight {
    background: #ff8102;
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 10px;
    box-shadow: 0 3px 6px rgba(255,129,2,0.3);
    font-size: 18px;
    border: 1px solid white;
}


.btn-redeem {
    background: #ff8102;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 30px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    max-width: 280px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(255, 129, 2, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid white;
    margin: 0 auto;
}

.btn-redeem:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(255, 129, 2, 0.5);
}

.btn-redeem:active {
    transform: scale(0.95);
}

.btn-redeem i {
    font-size: 18px;
    animation: arrowMove 1.5s infinite;
}

@keyframes arrowMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.redeem-small {
    margin-top: 12px;
    font-size: 13px;
    color: white;
    opacity: 0.9;
}


.products {
    padding: 40px 16px;
    background: #f8f9fa;
}

.products-header {
    margin-bottom: 30px;
}

.products-intro {
    font-size: 24px;
    color: #222;
    font-weight: 500;
    border-bottom: 3px solid #ff8102;
    padding-bottom: 12px;
    display: inline-block;
}

.products-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.2s;
    border: 1px solid #ff8102;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 129, 2, 0.3);
}


.product-image-container {
    height: 280px; 
    overflow: hidden;
    border-bottom: 2px solid #ff8102;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-content {
    padding: 20px;
}

.product-title {
    color: #ff8102;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #444444;
    margin-bottom: 10px;
}

.product-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 15px;
}

.product-link {
    color: #ff8102;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: transform 0.2s;
}

.product-link:hover {
    transform: translateX(5px);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #ff8400;
    padding: 25px 16px;
    border-top: 3px solid #ff8102;
}

.social-icons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    color: white;
    font-size: 28px;
    transition: transform 0.2s, color 0.2s;
}

.social-icon:hover {
    color: #ff8102;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 380px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-image {
        height: 300px;  
    }
    
    .product-image-container {
        height: 220px; 
    }
    
    .points-title {
        font-size: 26px;
    }
    
    .points-number {
        font-size: 36px;
    }
    
    .points-badge {
        padding: 10px 16px;
    }
    
    .points-icon {
        font-size: 24px;
    }
    
    .btn-redeem {
        font-size: 18px;
        padding: 14px 25px;
        max-width: 240px;
    }
}