/* ================================
   Yleiset tyylit
================================ */
p { font-size: 1.15em; }
.product { background: #fff; padding: 12px; border: 1px solid #ffffff; border-radius: 7px; }
.woocommerce .woocommerce-pagination { padding-bottom: 60px; }

/* ================================
   Mobile-shop top widgets (haku + kategoriat)
================================ */
.mobile-shop-top-widgets {
    display: none; /* oletuksena piilossa desktopilla */
    margin-bottom: 20px;
}

/* Hakukenttä */
.mobile-shop-top-widgets .woocommerce-product-search {
    display: block;
    width: 100%;
    margin-bottom: 1em;
}
.mobile-shop-top-widgets .woocommerce-product-search input[type="search"] {
    width: 100%;
    padding: 0.75em 1em;
    font-size: 1.05em;
    font-family: Montserrat, sans-serif;
    border-radius: 6px;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Kategoriadroppari */
.mobile-shop-top-widgets .custom-shop-categories label {
    display: block;
    margin-bottom: 0.25em;
		margin-top: 2em;
    font-weight: bold;
    font-size: 0.95em;
		font-family: Montserrat;
		text-transform: uppercase;
}
.mobile-shop-top-widgets select#mobile-product-cat-dropdown {
    width: 100%;
    padding: 0.75em 1em;
    font-size: 1.05em;
    font-family: Montserrat, sans-serif;
    border-radius: 6px;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
/* Poistaa IE/Edge oletusnuolen */
.mobile-shop-top-widgets select#mobile-product-cat-dropdown::-ms-expand {
    display: none;
}

/* ================================
   Layout fix (sisältö + sidebar)
================================ */
.site-content-container { display: flex !important; flex-wrap: nowrap; align-items: flex-start; }
.site-content { flex: 1; }
.site-sidebar { flex: 0 0 300px; }

/* ================================
   My Account lomakkeet alekkain
================================ */
.woocommerce-account .u-columns { display: block !important; }
.woocommerce-account .u-column1,
.woocommerce-account .u-column2 {
    width: 100% !important;
    float: none !important;
    margin-bottom: 1.5em;
}

/* ================================
   Mobile: alle 768px
================================ */
@media (max-width: 768px) {

    /* Näytetään mobiilissa kaupan yläpuolella haku + kategoriat */
    .mobile-shop-top-widgets { display: block; }

    /* Sidebarin haku + kategoriat piiloon mobiilissa */
    .sidebar .widget_product_categories,
    .sidebar .widget_product_search {
        display: none !important;
    }

    /* Sidebarin leveys mobiilissa (automaattinen) */
    .site-sidebar { flex: 0 0 auto; }
}