/*
Theme Name: WoodMart Child
Theme URI: https://geekbar.ink
Description: Child theme for WoodMart with custom product features styling
Author: GEEK BAR
Template: woodmart
Version: 1.0.0
*/

/* Import parent theme styles */
@import url("../woodmart/style.css");

/* ================================
   GEEK BAR Product Features Styles
   ================================ */

.geekbar-features {
    padding: 40px 0;
    max-width: 100%;
}

.geekbar-features h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    background: #fff;
    border-color: #007bff;
    box-shadow: 0 5px 15px rgba(0,123,255,0.1);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 36px;
    margin-right: 20px;
    min-width: 50px;
    text-align: center;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text strong {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.feature-text span {
    font-size: 14px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .geekbar-features h2 {
        font-size: 24px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-icon {
        font-size: 30px;
        margin-right: 15px;
    }
}
