/* ============================================
   PRODUCTS PAGE SPECIFIC STYLES
   ============================================ */

/* Products Hero Section */
.products-hero {
    padding: 150px 0 80px;
    margin-top: var(--header-height);
}

.products-hero-container {
    width: 450px;
    height: 450px;
    position: relative;
}

.products-hero-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.floating-product {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(110, 193, 228, 0.4);
    animation: float 4s ease-in-out infinite;
}

.floating-product.product-1 {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.floating-product.product-2 {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

.floating-product.product-3 {
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

/* Products Filter Navigation */
.products-filter {
    background-color: var(--bg-card);
    padding: 20px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: var(--header-height);
    z-index: 100;
}

.category-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.category-btn {
    background: none;
    border: 2px solid transparent;
    border-radius: 30px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.category-btn i {
    font-size: 1.2rem;
}

.category-btn.active {
    background: linear-gradient(90deg, var(--green), var(--blue));
    color: white;
    border-color: var(--green);
}

.category-btn:hover:not(.active) {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-3px);
}

/* Product Categories */
.product-category {
    padding: 80px 0;
}

.product-category:nth-child(odd) {
    background-color: var(--bg-main);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background-color: rgba(120, 176, 75, 0.1);
    color: var(--green);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Products Features */
.products-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.products-features .feature-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.products-features .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.products-features .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.products-features .feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.products-features .feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Catalog Section */
.catalog-section {
    background: linear-gradient(135deg, rgba(120, 176, 75, 0.9), rgba(110, 193, 228, 0.9));
    padding: 80px 0;
    color: white;
}

.catalog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.catalog-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.catalog-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-catalog {
    background: white;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-catalog:hover {
    background: var(--bg-card);
    color: var(--green);
}

.catalog-image {
    display: flex;
    justify-content: center;
}

.catalog-image img {
    max-width: 300px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Responsive Design for Products Page */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .catalog-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .catalog-image {
        order: -1;
    }
    
    .products-features .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .category-nav {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }
    
    .category-btn {
        white-space: nowrap;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-features .features-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-product {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 180px;
    }
    
    .category-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}