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

/* Products Section */
.products-section {
    margin-top: 20px;
    padding: calc(90px + var(--space-16)) 0 var(--space-16);
}

.product-divider {
    border: none;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin: var(--space-12) 0;
}

/* Product Tile */
.product-tile {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: var(--space-10);
    align-items: start;
    scroll-margin-top: 100px;
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-tile-image {
    background: linear-gradient(135deg, #1e8449 0%, #27ae60 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

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

.product-tile-content {
    padding: var(--space-4) 0;
}

.product-tile-content h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-3);
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.product-tile-content p {
    font-size: var(--text-base);
    color: #e8f5e9;
    margin-bottom: var(--space-6);
    line-height: 1.7;
}

/* Product Specs List */
.product-specs {
    list-style: none;
    margin-bottom: var(--space-6);
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
}

.product-specs li {
    position: relative;
    padding-left: var(--space-6);
    margin-bottom: var(--space-2);
    font-size: var(--text-sm);
    color: #ffffff;
}

.product-specs li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bg-dark-lighter);
    font-weight: var(--font-bold);
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .product-tile {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .product-tile-image {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .product-tile-content h2 {
        font-size: var(--text-xl);
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        width: 100%;
        text-align: center;
    }
}
