/* =================== USP bloky =================== */ #produkt-regal .ShelfDesc__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px; } @media (max-width: 768px) { #produkt-regal .ShelfDesc__grid { grid-template-columns: 1fr; } } #produkt-regal .ShelfDesc__usp-item { display: flex; align-items: flex-start; gap: 10px; } #produkt-regal .ShelfDesc__icon { flex-shrink: 0; } #produkt-regal .ShelfDesc__title-item { font-size: 2.5rem; font-weight: 700; margin: 0 0 8px; } #produkt-regal .ShelfDesc__usp-item p { margin: 0; font-size: 1.5rem; line-height: 1.4; } /* =================== USP + obrázek (nový styl) =================== */ #produkt-regal .usp-wrapper { display: grid; grid-template-columns: 1fr 1fr; /* levý sloupec USP, pravý obrázek */ gap: 20px; align-items: stretch; /* obrázek vyplní výšku levého sloupce */ margin-top: 20px; } #produkt-regal .usp-wrapper img { width: 100%; height: 100%; object-fit: contain; border-radius: 15px; } #produkt-regal .usp-wrapper .usp-block { display: flex; align-items: flex-start; gap: 10px; } #produkt-regal .usp-wrapper .usp-block h3 { margin: 0 0 5px; font-size: 1.1rem; font-weight: 600; } #produkt-regal .usp-wrapper .usp-block p { margin: 0; font-size: 1.5rem; line-height: 1.4; } /* =================== Tabulka parametrů + obrázek =================== */ #produkt-regal .param-image-wrapper { display: flex; gap: 20px; margin-top: 20px; align-items: center; justify-content: center; max-width: 1200px; margin-left: auto; margin-right: auto; } #produkt-regal .param-table-wrapper { flex: 1 1 50%; } #produkt-regal .param-table { border-collapse: separate; border-spacing: 0; border-radius: 20px; overflow: hidden; border: 1px solid #ddd; width: 100%; } #produkt-regal .param-table td { padding: 10px; border-bottom: 1px solid #ddd; } #produkt-regal .param-table td:first-child { font-weight: bold; } #produkt-regal .param-table tr:last-child td { border-bottom: none; } #produkt-regal .param-image-wrapper-img { flex: 1 1 50%; display: flex; align-items: center; justify-content: center; border-radius: 20px; overflow: hidden; } #produkt-regal .param-image-wrapper-img img { width: 100%; height: 100%; object-fit: contain; } /* =================== Seznam produktových bodů =================== */ #produkt-regal h2 { color: #5e10a6; } #produkt-regal .product-list { list-style-type: disc; margin-left: 20px; font-size: inherit; font-family: inherit; color: #000000; } #produkt-regal .product-list .highlight { color: #f50046; } .red-text { color: #f50046; } .benefit-title { color: #5e10a6; } .shp-tabs__holder { color: #5e10a6; } /* =================== Responzivita =================== */ @media (max-width: 768px) { #produkt-regal .usp-wrapper { grid-template-columns: 1fr; } #produkt-regal .param-image-wrapper { flex-direction: column; } #produkt-regal .param-image-wrapper-img { width: 100%; height: auto; } #produkt-regal .param-image-wrapper-img img { height: auto; } #produkt-regal .usp-wrapper img { height: auto; } }