/*
Theme Name: Nanonano Master Theme
Template: astra
Version: 2.0.4
Description: Premium B2C Theme for Nanonano.fi
*/

/* ==========================================================================
   MOBIILIVALIKON (HAMBURGER) PAKOTETTU KORJAUS
   ========================================================================== */
.ast-mobile-menu-trigger-wrapper,
.ast-mobile-menu-trigger-wrapper .menu-toggle {
    display: flex !important;
    visibility: visible !important;
    color: #0071a1 !important; /* Nanonano Sininen */
}

.ast-mobile-menu-trigger-wrapper .ast-icon svg {
    fill: #0071a1 !important;
    width: 28px !important;
    height: 28px !important;
}

/* ==========================================================================
   ETUSIVUN TUOTESUOSITUSTEN KUTISTAMINEN (Jotta osastot näkyvät)
   ========================================================================== */

/* TIETOKONE: 5 tuotetta riviin ja pienemmät kuvat */
@media (min-width: 922px) {
    .home .site-main ul.products {
        display: grid !important;
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 15px !important;
    }
    .home .site-main ul.products li.product img {
        max-height: 140px !important;
        object-fit: contain !important;
    }
    .home .site-main ul.products li.product h2 {
        font-size: 0.85rem !important;
    }
}

/* PUHELIN: 2 tuotetta rinnakkain (nyt on 1) */
@media (max-width: 921px) {
    .home .site-main ul.products {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 10px !important;
    }
    .home .site-main ul.products li.product img {
        max-height: 110px !important;
    }
}

/* ==========================================================================
   OSASTOKORTTIEN TYYLI (Etusivu)
   ========================================================================== */
.woocommerce ul.products li.product-category {
    background: #ffffff !important;
    border: 1px solid #f2f2f2 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
    text-align: center !important;
}

.woocommerce-loop-category__title {
    position: static !important;
    background: #ffffff !important;
    padding: 15px 5px !important;
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    color: #2c3e50 !important;
}

/* ==========================================================================
   TUOTESIVUN MUOTOILU (Hinta ja Nappi)
   ========================================================================== */
.single-product div.product .summary {
    background: #ffffff;
    padding: 25px !important;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.single-product p.price {
    font-size: 2.2rem !important;
    font-weight: 900 !important;
    color: #e74c3c !important; /* Raikas punainen hinta */
}

.single-product .button.alt {
    background-color: #0071a1 !important;
    padding: 15px 40px !important;
    font-weight: 700 !important;
    border-radius: 6px !important;
}