/* RESET / BASE */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #222;
    background-color: #ffffff;
}

/* LAYOUT */
.cz-container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.cz-main {
    padding-top: 72px;
}

/* HEADER */
.cz-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.cz-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.cz-logo a {
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    color: #1E8F3B;
}

.cz-nav {
    display: flex;
    align-items: center;
}

.cz-nav-toggle {
    border: none;
    background: none;
    font-size: 1.5rem;
    display: inline-flex;
    cursor: pointer;
}

/* mobilné menu – default skryté, otvorené klasou .cz-nav-open */
.cz-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.cz-nav-links.cz-nav-open {
    display: block;
}

.cz-nav-links li {
    border-top: 1px solid #f2f2f2;
}

.cz-nav-links a {
    display: block;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: #222;
    font-size: 0.95rem;
}

.cz-nav-links a.active,
.cz-nav-links a:hover {
    color: #1E8F3B;
}

.cz-header-cart {
    margin-left: 0.75rem;
}

.cz-cart-link {
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #222;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    border: 1px solid #e5e5e5;
}

.cz-cart-count {
    background-color: #1E8F3B;
    color: #fff;
    border-radius: 999px;
    padding: 0.05rem 0.5rem;
    font-size: 0.8rem;
}

/* HERO */
.cz-hero {
    padding: 2.5rem 0 2rem;
    background: linear-gradient(135deg, #1E8F3B 0%, #0e6125 50%, #F6C600 100%);
    color: #ffffff;
}

.cz-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
}

.cz-hero-content h1 {
    font-size: 1.9rem;
    margin: 0 0 0.75rem;
}

.cz-hero-subtitle {
    margin: 0 0 1rem;
    font-size: 1rem;
}

.cz-hero-cta {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.cz-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.cz-hero-badges span {
    background-color: rgba(255,255,255,0.08);
    border-radius: 999px;
    padding: 0.25rem 0.7rem;
    border: 1px solid rgba(255,255,255,0.18);
}

.cz-hero-image {
    width: 100%;
}

.cz-hero-image-placeholder {
    width: 100%;
    min-height: 180px;
    border-radius: 1rem;
    border: 2px dashed rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* BUTTONS */
.cz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.3rem;
    border-radius: 999px;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.cz-btn-primary {
    background-color: #F6C600;
    color: #222;
    font-weight: 600;
}

.cz-btn-primary:hover {
    filter: brightness(0.95);
}

.cz-btn-secondary {
    background-color: #ffffff;
    color: #1E8F3B;
    border: 1px solid rgba(255,255,255,0.7);
    font-weight: 500;
}

.cz-btn-secondary:hover {
    background-color: #f5f5f5;
}

.cz-btn-outline {
    background-color: transparent;
    color: #1E8F3B;
    border: 1px solid #1E8F3B;
}

.cz-btn-outline:hover {
    background-color: rgba(30, 143, 59, 0.07);
}

.cz-btn-full {
    width: 100%;
}

/* SECTIONS */
.cz-section {
    padding: 2.5rem 0;
}

.cz-section-light {
    background-color: #fafafa;
}

.cz-section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.cz-section-subtitle {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 0.95rem;
}

.cz-center {
    text-align: center;
}

/* BENEFITS */
.cz-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.cz-benefit-item {
    padding: 0.7rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid #e5f2e9;
    background-color: #f7fbf8;
    font-size: 0.95rem;
}

/* CATEGORIES */
.cz-categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.cz-category-card {
    display: block;
    text-decoration: none;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.cz-category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* pôvodný rámček pre fotku – 150px */
.cz-category-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 0.75rem 0.75rem 0 0;
}

.cz-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* pôvodná verzia placeholdera */
.cz-category-image-placeholder {
    min-height: 150px;
    background: linear-gradient(135deg, #1E8F3B 0%, #F6C600 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

.cz-category-info {
    padding: 0.75rem 0.85rem 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.cz-category-info h3 {
    margin: 0;
    font-size: 1rem;
}

.cz-category-info span {
    font-size: 0.8rem;
    color: #1E8F3B;
}

/* desktop – 4 stĺpce + 180px výška ako pôvodne */
@media (min-width: 768px) {
    .cz-categories-grid {
        grid-template-columns: repeat(4, minmax(0,1fr));
    }

    .cz-category-image,
    .cz-category-image-placeholder {
        height: 180px;
    }
}

/* PRODUCTS GRID */
.cz-products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.cz-product-card {
    text-decoration: none;
    border-radius: 0.75rem;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.12s ease, transform 0.12s ease;
}

.cz-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* rámček + jednotná výška pre obrázky v kartách */
.cz-product-card-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.cz-product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* upsell / iné menšie produktové obrázky */
.cz-product-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 0.75rem 0.75rem 0 0;
}

.cz-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cz-product-image-placeholder {
    min-height: 90px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.86rem;
    color: #777;
    padding: 0.5rem;
    text-align: center;
}

.cz-product-image-placeholder-lg {
    min-height: 220px;
}

.cz-product-body {
    padding: 0.8rem 0.9rem 0.9rem;
}

.cz-product-body h3 {
    margin: 0 0 0.3rem;
    font-size: 0.98rem;
}

.cz-product-desc {
    margin: 0 0 0.4rem;
    font-size: 0.83rem;
    color: #666;
}

.cz-product-price {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.cz-product-cta {
    font-size: 0.8rem;
    color: #1E8F3B;
}

.cz-link {
    text-decoration: underline;
}

/* REVIEWS */
.cz-reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.cz-review-card {
    border-radius: 0.75rem;
    padding: 1rem;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
}

.cz-review-text {
    margin: 0 0 0.4rem;
    font-size: 0.9rem;
}

.cz-review-author {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
}

/* PARTNERS */
.cz-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.cz-partner-logo {
    background-color: #ffffff;
    border: 1px dashed #cbd6c8;
    border-radius: 0.75rem;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    overflow: hidden;
}

.cz-partner-logo img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(10%);
    opacity: 0.9;
    transition: opacity 0.15s ease, filter 0.15s ease, transform 0.15s ease;
}

.cz-partner-logo img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.03);
}

/* HOW IT WORKS */
.cz-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
}

.cz-step-card {
    border-radius: 0.75rem;
    border: 1px solid #e5f2e9;
    background-color: #f7fbf8;
    padding: 0.9rem;
}

.cz-step-card h3 {
    margin: 0 0 0.25rem;
    font-size: 0.98rem;
}

.cz-step-card p {
    margin: 0;
    font-size: 0.85rem;
    color: #555;
}

.cz-step-number {
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
}

/* CONTACT */
.cz-contact-inner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cz-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
}

.cz-contact-list a {
    color: #1E8F3B;
    text-decoration: none;
}

.cz-contact-box {
    border-radius: 0.75rem;
    border: 1px solid #e5e5e5;
    padding: 1rem;
    background-color: #fafafa;
}

/* MENU PAGE */
.cz-menu-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cz-menu-sidebar {
    border-radius: 0.75rem;
    border: 1px solid #e5e5e5;
    padding: 1rem;
    background-color: #fafafa;
}

.cz-menu-sidebar h2 {
    margin-top: 0;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.cz-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.cz-category-list li a {
    display: block;
    padding: 0.3rem 0.2rem;
    text-decoration: none;
    color: #333;
}

.cz-category-list li a.active {
    color: #1E8F3B;
    font-weight: 600;
}

/* PRODUCT DETAIL */
.cz-product-detail-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* rámček pre veľkú fotku produktu */
.cz-product-detail-image {
    width: 100%;
    max-width: 480px;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    background-color: #fafafa;
}

.cz-product-detail-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.cz-product-detail-info h1 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.cz-product-detail-desc {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #555;
}

.cz-product-detail-form label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.cz-product-detail-form select,
.cz-product-detail-form input[type="number"] {
    width: 100%;
    max-width: 260px;
}

.cz-product-detail-qty-row {
    margin-top: 0.75rem;
    margin-bottom: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cz-min-qty {
    font-size: 0.8rem;
    color: #555;
}

.cz-allergens {
    font-size: 0.85rem;
    color: #555;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.cz-small-note {
    font-size: 0.8rem;
    color: #777;
    margin-top: 0.5rem;
}

/* CART */
.cz-cart-table-wrapper {
    overflow-x: auto;
}

.cz-cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cz-cart-table th,
.cz-cart-table td {
    border: 1px solid #e5e5e5;
    padding: 0.4rem 0.5rem;
    text-align: left;
}

.cz-cart-summary {
    max-width: 420px;
    margin-left: auto;
    border-radius: 0.75rem;
    border: 1px solid #e5e5e5;
    padding: 0.75rem 0.9rem;
    background-color: #fafafa;
}

.cz-cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.4rem;
}

.cz-cart-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

/* INQUIRY PAGE */
.cz-inquiry-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cz-inquiry-summary {
    border-radius: 0.75rem;
    border: 1px solid #e5e5e5;
    padding: 0.85rem;
    background-color: #fafafa;
}

.cz-cart-summary-box {
    font-size: 0.9rem;
}

.cz-cart-summary-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.35rem;
}

.cz-cart-summary-price {
    font-weight: 600;
}

.cz-cart-summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
    padding-top: 0.4rem;
    border-top: 1px solid #ddd;
}

/* FORMS */
.cz-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cz-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cz-form-group label {
    font-size: 0.85rem;
}

.cz-form-group input[type="text"],
.cz-form-group input[type="email"],
.cz-form-group input[type="number"],
.cz-form-group input[type="date"],
.cz-form-group input[type="password"],
.cz-form-group textarea,
.cz-form-group select {
    padding: 0.5rem 0.6rem;
    border-radius: 0.45rem;
    border: 1px solid #d8d8d8;
    font-size: 0.9rem;
}

.cz-form-group textarea {
    resize: vertical;
}

.cz-form-error {
    color: #b91c1c;
    font-size: 0.8rem;
}

.cz-form-inline {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

/* FOOTER */
.cz-footer {
    border-top: 1px solid #e5e5e5;
    padding: 1.3rem 0;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #666;
}

.cz-footer-inner {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
}

/* ADMIN */
.cz-admin-body {
    background-color: #f5f7f5;
}

.cz-admin-layout {
    display: flex;
    min-height: 100vh;
}

.cz-admin-sidebar {
    width: 210px;
    background-color: #0f3820;
    color: #ffffff;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cz-admin-logo {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
}

.cz-admin-sidebar nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.cz-admin-sidebar nav li {
    margin-bottom: 0.25rem;
}

.cz-admin-sidebar nav a {
    color: #e5f2e9;
    text-decoration: none;
    display: block;
    padding: 0.4rem 0.3rem;
    border-radius: 0.4rem;
}

.cz-admin-sidebar nav a:hover,
.cz-admin-sidebar nav a.active {
    background-color: rgba(246, 198, 0, 0.18);
    color: #fff;
}

.cz-admin-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cz-admin-topbar {
    padding: 0.75rem 1.25rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cz-admin-content {
    padding: 1.25rem;
}

.cz-admin-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.cz-admin-card {
    border-radius: 0.75rem;
    padding: 0.9rem;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
}

.cz-admin-card h3 {
    margin: 0 0 0.25rem;
    font-size: 0.9rem;
}

.cz-admin-card-number {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1E8F3B;
}

.cz-admin-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.cz-admin-panel {
    border-radius: 0.75rem;
    padding: 0.9rem;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
}

.cz-admin-panel h2 {
    margin-top: 0;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.cz-admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.cz-admin-table th,
.cz-admin-table td {
    border: 1px solid #e5e5e5;
    padding: 0.4rem 0.5rem;
}

.cz-admin-table th {
    background-color: #fafafa;
    text-align: left;
}

.cz-admin-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.86rem;
}

.cz-admin-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    border-bottom: 1px solid #f1f1f1;
}

.cz-admin-alert {
    padding: 0.6rem 0.8rem;
    border-radius: 0.5rem;
    background-color: #ecfdf3;
    border: 1px solid #bbf7d0;
    color: #166534;
    font-size: 0.85rem;
    margin-bottom: 0.9rem;
}

/* ADMIN LOGIN */
.cz-admin-login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top left, #1E8F3B 0%, #0f3820 50%, #F6C600 100%);
}

.cz-admin-login-box {
    background-color: #ffffff;
    border-radius: 0.9rem;
    padding: 1.5rem 1.6rem;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.cz-admin-login-box h1 {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

/* FORMS (ADMIN WIDE) */
.cz-form-wide {
    max-width: 780px;
}

.cz-form-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.cz-variant-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
}

/* PRINT LINKS */
.cz-print-links {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* THANKYOU */
.cz-thankyou-page h1 {
    margin-bottom: 0.5rem;
}

/* DESKTOP */
@media (min-width: 768px) {
    .cz-nav-toggle {
        display: none;
    }
    .cz-nav-links {
        display: flex !important;
        position: static;
        flex-direction: row;
        gap: 0.9rem;
        border: none;
        background: transparent;
    }
    .cz-nav-links li {
        border: none;
    }
    .cz-nav-links a {
        padding: 0;
        font-size: 0.9rem;
    }

    .cz-hero-inner {
        flex-direction: row;
        align-items: center;
    }
    .cz-hero-content {
        flex: 1.2;
    }
    .cz-hero-image {
        flex: 1;
    }

    .cz-benefits-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .cz-categories-grid {
        grid-template-columns: repeat(4, minmax(0,1fr));
    }
    .cz-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .cz-reviews-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .cz-partners-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .cz-steps-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .cz-contact-inner {
        flex-direction: row;
        align-items: flex-start;
    }
    .cz-contact-info {
        flex: 2;
    }
    .cz-contact-box {
        flex: 1;
    }
    .cz-menu-layout {
        flex-direction: row;
    }
    .cz-menu-sidebar {
        width: 220px;
        flex-shrink: 0;
    }
    .cz-menu-content {
        flex: 1;
    }
    .cz-product-detail-layout {
        flex-direction: row;
    }
    .cz-product-detail-image {
        flex: 1;
    }
    .cz-product-detail-info {
        flex: 1;
    }
    .cz-inquiry-layout {
        flex-direction: row;
    }
    .cz-inquiry-form-wrap {
        flex: 2;
    }
    .cz-inquiry-summary {
        flex: 1;
    }
    .cz-footer-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    .cz-admin-cards {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .cz-admin-grid {
        grid-template-columns: 2fr 1.2fr;
    }
    .cz-form-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

/* MOBILE TUNING – aby fotky neboli cez celú obrazovku */
@media (max-width: 767px) {

    .cz-header-inner {
        height: 64px;
    }

    .cz-main {
        padding-top: 64px;
    }

    .cz-nav-links a {
        padding: 0.9rem 1.25rem;
    }

    /* produkty v 1 stĺpci */
    .cz-products-grid {
        grid-template-columns: 1fr;
    }

    /* detail produktu – menší rámček na mobile */
    .cz-product-detail-layout {
        flex-direction: column;
    }

    .cz-product-detail-image {
        max-width: 100%;
        margin: 0 auto;
        border-radius: 0.9rem;
    }

    .cz-product-detail-image img {
        height: 220px; /* tu sa zmenšuje výška na mobile */
    }

    /* pre istotu aj kartičky */
    .cz-product-card-image {
        height: 150px;
    }

    .cz-product-image {
        height: 140px;
    }
}
