#soteq-flipbook {
    width: 100%;
    height: 90vh;
    overflow: hidden;
    background: white;
}

/* IMPORTANT FIX: FLIP PAGE MUST FILL */
#soteq-flipbook .page {
    width: 100%;
    height: 100%;
    background: white;
}

/* COVER FULL */
#soteq-flipbook .cover img,
#soteq-flipbook .ending img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PRODUCT GRID INSIDE PAGE */
#soteq-flipbook .catalog-page {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 15px;
    padding: 20px;
    box-sizing: border-box;
}

/* PRODUCT CARD FIX */
#soteq-flipbook .product-card {
    width: calc(50% - 15px); /* 2 columns */
    background: white;
    border: 1px solid #ddd;
    padding: 10px;
    box-sizing: border-box;
    overflow: hidden;
}

/* IMAGE FIX */
#soteq-flipbook .product-card img {
    width: 100%;
    height: 140px;
    object-fit: contain;
}

/* TEXT */
#soteq-flipbook .product-card h3 {
    font-size: 14px;
    margin: 5px 0;
}

#soteq-flipbook .price {
    font-weight: bold;
}

/* BADGE */
#soteq-flipbook .badge {
    background: red;
    color: white;
    padding: 3px 8px;
    font-size: 12px;
    position: absolute;
}