/* =========================================
   SHOP STYLES — Hela Malmö Butik
   =========================================

   This file contains all styles specific to the shop/butik feature.
   It is loaded separately from main.css via a <link> tag in index.html.

   Available CSS variables from main.css :root:
     --helamalmo_purple          #543177
     --helamalmo_purple_second   #705197
     --helamalmo_purple_third    #9e86be
     --helamalmo_purple_fourth   #dbcbe5
     --helamalmo_black           #000000
     --helamalmo_white           #ffffff
     --font-main                 'Avenir Next', sans-serif
     --font-condensed            'Avenir Next Condensed', sans-serif
     --max_width_center           1200px

   Naming convention: all shop classes are prefixed with
   "shop-" or "product-" to avoid collisions with main.css.
   ========================================= */


/* -----------------------------------------
   PRODUCT GRID
   ----------------------------------------- */

.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
}

.shop-placeholder-text {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--helamalmo_white, #ffffff);
    font-family: var(--font-main);
    font-size: 1.1rem;
    padding: 60px 20px;
    opacity: 0.8;
}



/* -----------------------------------------
   PRODUCT CARD
   ----------------------------------------- */

.product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.13);
}

.product-card-image-wrapper {
    width: 100%;
    height: 260px;
    position: relative;
    background: #dce9f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    box-sizing: border-box;
}

.product-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ffffff;
    border-radius: 50px;
    padding: 4px 14px;
    font-family: var(--font-main);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--helamalmo_black);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    letter-spacing: 0.01em;
}

.product-card-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.product-card-body {
    padding: 20px 20px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 4px;
    background: #ffffff;
}

.product-card-title {
    font-family: var(--font-condensed);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
    color: var(--helamalmo_black, #000000);
    line-height: 1.25;
}

.product-card-price {
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 400;
    color: var(--helamalmo_black, #000000);
    margin-bottom: 12px;
}

.product-card-description {
    font-family: var(--font-main);
    font-size: 0.9rem;
    color: #555555;
    margin: 0 0 12px 0;
    line-height: 1.5;
    flex: 1;
}
