/*
Theme Name:   	Storefront Child Theme
Theme URI:    	https://extrawoo.com/storefront-child-theme
Author:       	Extra Woo
Author URI:     https://extrawoo.com
Template:     	storefront
Description:  	Child theme for the Storefront WooCommerce theme. You can replace all this information with your own.
Version:      	1.0.0
License:      	GNU General Public License v2 or later
License URI:  	http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  	storefront

/*
 * Add your own custom css below this text.
 */
/* Exempel: Anpassa Dokan vendor header */
.dokan-store-header {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: #fff;
    padding: 2rem;
    border-radius: 0 0 1rem 1rem;
    margin-bottom: 2rem;
}

/* Exempel: Produktgrid */
.products .product {
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.products .product:hover {
    transform: translateY(-5px);
}

/* Byline för butikssida */
.dokan-store-description p:first-child::before {
    content: "För dig som nöjer dig med det bästa: ";
    font-weight: 600;
    color: #2563eb;
}

.fullwidth-image-container {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.fullwidth-image-container img.fullwidth-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsiv justering */
@media (max-width: 768px) {
    .dokan-store-header {
        padding: 1rem;
    }
}