.products {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: #F37022;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-heading p {
    font-size: 1.1rem;
    color: #333333;
    max-width: 600px;
    margin: 0 auto;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.product-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease forwards;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
    position: relative;
    overflow: hidden;
}

.product-card.featured {
    border: 2px solid #F37022;
    box-shadow: 0 4px 15px rgba(243, 112, 34, 0.15);
}

.product-card.featured::before {
    content: 'FEATURED';
    position: absolute;
    top: 15px;
    right: -30px;
    background: #F37022;
    color: white;
    padding: 5px 0;
    width: 120px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(243, 112, 34, 0.15);
    border-color: #F37022;
}

.product-header {
    margin-bottom: 20px;
}

.product-header h3 {
    font-size: 1.3rem;
    color: #F37022;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-features {
    list-style: disc inside;
    margin: 10px 0 0 0;
    padding: 0 0 0 18px;
    text-align: left;
    color: #333;
    font-size: 1rem;
}
.product-features li {
    margin-bottom: 4px;
    padding-left: 0;
}

.product-features li::marker {
    color: #F37022;
}


.product-image {
    width: 100%;
    height: 150px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-image.subscription-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image.subscription-icon i {
    font-size: 3.5rem;
    color: #F37022;
}

.product-image.subscription-icon i.fa-refresh {
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 2rem;
    background: white;
    border-radius: 50%;
    padding: 5px;
}

.price {
    font-size: 1.5rem;
    color: #333333;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1rem;
    vertical-align: super;
}

.period {
    font-size: 0.8rem;
    color: #666666;
}

jdm-button {
    width: 100%;
    margin-top: auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1200px) {
    .products-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 2rem;
    }
    
    .products-container {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .products {
        padding: 40px 0;
    }
    
    .product-card {
        min-height: 320px;
    }
}

.accessories-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    width: 100%;
    text-align: center;
}

@media (max-width: 600px) {
    .accessories-filter {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.accessory-filter-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: #f0f0f0;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.accessory-filter-btn.active,
.accessory-filter-btn:hover {
    background: #F37022;
    color: #fff;
    box-shadow: 0 4px 16px rgba(243,112,34,0.15);
}

/* --- Products Tabs Styling --- */
.products-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.tab-btn {
    background: #F37022;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 36px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(243, 112, 34, 0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
    outline: none;
}

.tab-btn.active,
.tab-btn:hover {
    background: #fff;
    color: #F37022;
    border: 2px solid #F37022;
    box-shadow: 0 4px 15px rgba(243, 112, 34, 0.13);
}

