body.theme-corporate {
    background: #deefe2;
    color: #1f2a3d;
    font-family: "Segoe UI", Arial, sans-serif;
}

body.theme-corporate .site-header,
body.theme-corporate .site-footer {
    background: #ffffff;
    border-color: #cfd8e6;
}

body.theme-corporate .catalog-list-head h2 {
    color: #0f2241;
    font-size: 38px;
    margin: 0 0 6px 0;
}

body.theme-corporate .catalog-list-subtitle {
    color: #4b5d7a;
}

body.theme-corporate .catalog-count {
    background: #ffffff;
    border: 1px solid #cfd8e6;
    color: #1f2a3d;
    box-shadow: none;
}

body.theme-corporate .catalog-list .grid {
    gap: 14px;
}

body.theme-corporate .catalog-list .catalog-card {
    background: #ffffff;
    color: #1f2a3d;
    border: 1px solid #cfd8e6;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(20, 36, 64, 0.08);
    min-height: 150px;
}

body.theme-corporate .catalog-list .catalog-card .card-body {
    padding: 12px;
}

body.theme-corporate .catalog-list .catalog-card .card-body h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

body.theme-corporate .catalog-list .catalog-card .card-body p {
    color: #5a6c88;
    opacity: 1;
}

body.theme-corporate .catalog-list .catalog-badge {
    background: #e9eff8;
    border: 1px solid #d4deec;
    border-radius: 4px;
    color: #3b4a64;
}

body.theme-corporate .catalog-list .catalog-card:nth-child(6n + 1),
body.theme-corporate .catalog-list .catalog-card:nth-child(6n + 2),
body.theme-corporate .catalog-list .catalog-card:nth-child(6n + 3),
body.theme-corporate .catalog-list .catalog-card:nth-child(6n + 4),
body.theme-corporate .catalog-list .catalog-card:nth-child(6n + 5),
body.theme-corporate .catalog-list .catalog-card:nth-child(6n + 6) {
    background: #ffffff;
}

body.theme-corporate .product-list {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 16px;
}

body.theme-corporate .product-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #cfd8e6;
    box-shadow: 0 8px 18px rgba(20, 36, 64, 0.08);
    border-radius: 10px;
    overflow: hidden;
    min-height: 650px;
}

body.theme-corporate .product-image {
    width: 100%;
    height: 460px;
    min-height: 460px;
    background: #dfe7f2;
}

body.theme-corporate .product-image img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center top;
}

body.theme-corporate .product-info {
    background: #ffffff;
    color: #1f2a3d;
    padding: 12px;
    gap: 7px;
    flex: 1;
}

body.theme-corporate .product-info h3 {
    margin: 0;
    font-size: 20px;
    border-left: 3px solid #0f4aa1;
    padding-left: 8px;
    color: #0f2241;
}

body.theme-corporate .product-langs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

body.theme-corporate .product-langs span {
    font-size: 10px;
    padding: 2px 6px;
    color: #3b4a64;
    background: #e9eff8;
    border: 1px solid #d4deec;
    border-radius: 4px;
}

body.theme-corporate .product-desc {
    font-size: 12px;
    color: #5a6c88;
}

body.theme-corporate .product-prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

body.theme-corporate .product-prices::before {
    content: none;
}

body.theme-corporate .product-prices span {
    min-width: 0;
    border-radius: 6px;
    background: #0f4aa1;
    color: #fff;
    box-shadow: none;
    border: 1px solid #0f4aa1;
    font-size: 12px;
    padding: 5px 6px;
}

body.theme-corporate .product-variations {
    border-top: 1px solid #d5deeb;
}

body.theme-corporate .variation-item {
    color: #41536f;
    font-size: 11px;
}

body.theme-corporate .catalog-cover {
    background: #0f2241;
    border: 0;
    color: #e8f0ff;
    box-shadow: 0 10px 24px rgba(13, 27, 55, 0.3);
}

body.theme-corporate .catalog-cover .cover-frame {
    background: linear-gradient(180deg, #142e58 0%, #0f2241 100%);
    border: 1px solid #4b6693;
}

body.theme-corporate .catalog-cover .cover-company {
    color: #ffffff;
    letter-spacing: 1px;
}

body.theme-corporate .catalog-cover .cover-subtitle,
body.theme-corporate .catalog-cover .cover-about-title {
    color: #8fb5ff;
}

body.theme-corporate .catalog-cover .cover-tagline {
    border-top-color: rgba(143, 181, 255, 0.4);
    border-bottom-color: rgba(143, 181, 255, 0.4);
    color: #d8e5ff;
}

body.theme-corporate .catalog-cover .cover-info span,
body.theme-corporate .catalog-cover .cover-about {
    color: #d9e6ff;
}

@media (max-width: 980px) {
    body.theme-corporate .product-list {
        grid-template-columns: repeat(2, minmax(240px, 1fr));
    }
}

@media (max-width: 700px) {
    body.theme-corporate .product-list {
        grid-template-columns: 1fr;
    }
}

.print-body.theme-corporate.pdf-mode .pdf-grid td {
    padding: 0 4mm 3mm 0;
}

.print-body.theme-corporate.pdf-mode .product-card {
    display: table;
    table-layout: fixed;
    border: 1px solid #c3cfdf;
    box-shadow: none;
    height: 44mm;
    border-radius: 0;
    background: #fff;
}

.print-body.theme-corporate.pdf-mode .product-image {
    display: table-cell;
    width: 34mm;
    height: 44mm;
    min-height: 44mm;
}

.print-body.theme-corporate.pdf-mode .product-image img {
    width: 34mm;
    height: 44mm;
}

.print-body.theme-corporate.pdf-mode .product-info {
    display: table-cell;
    background: #fff;
    color: #1f2a3d;
    padding: 1mm 1.2mm;
    height: 44mm;
}

.print-body.theme-corporate.pdf-mode .product-info h3 {
    font-size: 8.2px;
    line-height: 1.1;
    margin: 0 0 1mm 0;
    color: #0f2241;
    border-left: 0.8mm solid #0f4aa1;
    padding-left: 1mm;
}

.print-body.theme-corporate.pdf-mode .product-langs {
    font-size: 5.9px;
    line-height: 1.1;
    display: block;
    max-height: 9mm;
    overflow: hidden;
}

.print-body.theme-corporate.pdf-mode .product-langs span {
    border: none;
    background: transparent;
    padding: 0;
}

.print-body.theme-corporate.pdf-mode .product-desc {
    font-size: 6px;
    margin: 0.8mm 0;
    line-height: 1.15;
    color: #5a6c88;
    max-height: 5.5mm;
    overflow: hidden;
}

.print-body.theme-corporate.pdf-mode .product-prices {
    margin-top: 0.8mm;
}

.print-body.theme-corporate.pdf-mode .product-prices::before {
    content: none;
}

.print-body.theme-corporate.pdf-mode .product-prices span {
    font-size: 6.4px;
    min-width: 0;
    background: #0f4aa1;
    color: #fff;
    border: 1px solid #0f4aa1;
    padding: 1px 2px;
}

.print-body.theme-corporate.pdf-mode .product-variations {
    margin-top: 0.8mm;
    border-top: 0.2mm solid #d5deeb;
    max-height: 7mm;
    overflow: hidden;
}

.print-body.theme-corporate.pdf-mode .variation-item {
    font-size: 5.8px;
    color: #41536f;
    margin-bottom: 0.3mm;
}
