.offers-section {
    background-color: #1a1a1a;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.offers-section .container {
    position: relative;
    z-index: 1;
}

.offers-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
}

.premium {
    color: #4CAF50;
}

.offers-section .green-line {
    width: 150px;
    height: 4px;
    background-color: #4CAF50;
    margin: 0 auto 30px;
}

.product-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 40px 0;
}

.product-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    flex-shrink: 0;
    padding: 20px 0;
}

.product-item {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.approval-rate {
    position: absolute;
    top: 10px;
    left: 0;
    background-color: #ff5722;
    color: white;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 0.9rem;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.country-flags {
    position: absolute;
    bottom: 10px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 3px;
}

.available-label {
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    margin-right: 5px;
}

.country-flag {
    display: inline-block;
    width: 12px;
    height: 8px;
    object-fit: cover;
    border-radius: 1px;
    border: none;
    opacity: 0.9;
}

.country-flag:hover {
    transform: scale(1.2);
    opacity: 1;
}

.product-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 15px;
    position: relative;
}

.product-content img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.product-item:hover img {
    transform: scale(1.05);
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background-color: #555;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: #ff5722;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background-color: rgba(76, 175, 80, 0.5);
    border-radius: 50%;
}

.tagline-container {
    margin: 40px 0;
    text-align: center;
}

.product-tagline {
    display: inline-block;
    font-size: 1.8rem;
    color: #ffffff;
    padding: 15px 30px;
    border: 2px solid #4CAF50;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(38, 38, 38, 0.9) 100%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: glow 2s infinite alternate;
    position: relative;
    overflow: hidden;
}

.product-tagline::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
        text-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(76, 175, 80, 0.8);
        text-shadow: 0 0 10px rgba(76, 175, 80, 0.8);
    }
}

@keyframes shine {
    0% {
        left: -100%;
        opacity: 0;
    }
    20% {
        left: 100%;
        opacity: 0.6;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .offers-section h2 {
        font-size: 2rem;
    }
    
    .product-tagline {
        font-size: 1.4rem;
        padding: 12px 20px;
    }
}
