/* ========================================
   Decorra - About & Products
   ======================================== */

/* About Section */
.about {
    background: var(--background-white);
    position: relative;
}

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

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

.about-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--background-light);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.feature-item i {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Products Section */
.products {
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
}

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

.products .section-title {
    color: var(--text-white);
}

.products .section-tag {
    color: var(--secondary-color);
}

.product-category {
    margin-bottom: 60px;
}

.product-category:last-child {
    margin-bottom: 0;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.product-header i {
    font-size: 32px;
    color: var(--secondary-color);
}

.product-header h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--text-white);
}

.product-description {
    font-size: 16px;
    color: var(--text-white);
    max-width: 800px;
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.9;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.product-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
}

.product-card i {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.product-card h4 {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-white);
}

.product-card.highlight {
    background: var(--secondary-color);
}

.product-card.highlight i,
.product-card.highlight h4 {
    color: var(--primary-dark);
}

.product-styles {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px 30px;
    border-radius: var(--radius-md);
    display: block; 
    width: fit-content;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-styles h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.product-styles ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    list-style: none;
}

.product-styles li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-white);
    white-space: nowrap;
}

.product-styles li i {
    color: var(--secondary-color);
    font-size: 14px;
}

/* ========================================
   Mobile Responsive Styles
   ======================================== */

@media (max-width: 768px) {
    /* About Section - Stack columns */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text p {
        font-size: 16px;
    }
    
    /* About Features - Single column */
    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-item {
        padding: 20px 15px;
    }
    
    /* Products Section */
    .product-category {
        margin-bottom: 40px;
    }
    
    .product-header {
        flex-direction: column;
        text-align: center;
    }
    
    .product-header h3 {
        font-size: 24px;
    }
    
    .product-description {
        font-size: 15px;
        text-align: center;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-card {
        padding: 20px 15px;
    }
    
    .product-card i {
        font-size: 24px;
    }
    
    .product-styles {
        padding: 20px;
    }
    
    .product-styles ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .product-styles li {
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
