:root {
    --font-body: "Trebuchet MS", "Segoe UI", "Helvetica Neue", sans-serif;
    --font-head: "Gill Sans", "Trebuchet MS", sans-serif;

    --color-primary: #0f4c81;
    --color-primary-strong: #0a3558;
    --color-secondary: #ff7a18;
    --color-secondary-strong: #dc6408;

    --color-bg: #f4f7fb;
    --color-surface: #ffffff;
    --color-surface-alt: #eef3fb;

    --color-text: #122033;
    --color-text-soft: #5a6b80;
    --color-border: #d8e2ef;
    --color-focus: #f59e0b;
    --color-link: #0f4c81;
    --color-link-hover: #0a3558;
    --color-input-bg: #ffffff;
    --color-input-text: #122033;
    --color-input-border: #d8e2ef;
    --color-input-placeholder: #7a8ba0;
    --color-table-bg: #ffffff;
    --color-table-border: #d8e2ef;
    --color-table-head-bg: #edf4fb;
    --color-table-head-text: #0a3558;
    --color-table-row-alt: #fbfdff;
    --color-table-row-hover: #f2f7fd;

    --color-success: #dcfce7;
    --color-warning: #fef3c7;
    --color-error: #fee2e2;

    --shadow-sm: 0 4px 12px rgba(10, 30, 50, 0.08);
    --shadow-md: 0 14px 32px rgba(10, 30, 50, 0.12);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;

    --sp-1: 4px;
    --sp-2: 8px;
    --sp-3: 12px;
    --sp-4: 16px;
    --sp-5: 20px;
    --sp-6: 24px;
    --sp-8: 32px;
    --sp-10: 40px;
    --sp-12: 48px;

    --container-max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background:
        radial-gradient(1100px 300px at top left, #dbeafe 0%, rgba(219, 234, 254, 0) 65%),
        radial-gradient(900px 280px at top right, #dcfce7 0%, rgba(220, 252, 231, 0) 60%),
        var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

a,
a:visited {
    color: var(--color-link);
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--color-link-hover);
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--color-focus);
    outline-offset: 2px;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--color-text);
    font-family: var(--font-head);
    line-height: 1.2;
}

h1 {
    font-size: clamp(1.8rem, 4.2vw, 2.4rem);
    margin-bottom: var(--sp-5);
}

h2 {
    font-size: clamp(1.3rem, 2.8vw, 1.8rem);
    margin-bottom: var(--sp-4);
}

p {
    margin-top: 0;
    margin-bottom: var(--sp-4);
}

ul,
ol {
    margin-top: 0;
}

hr {
    border: 0;
    border-top: 1px solid var(--color-border);
    margin: var(--sp-6) 0;
}

.container {
    max-width: var(--container-max);
}

.hide {
    display: none !important;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    z-index: 10000;
    background: var(--color-text);
    color: #fff;
    padding: var(--sp-3) var(--sp-4);
    border-radius: var(--radius-sm);
}

.skip-link:focus {
    left: var(--sp-4);
    top: var(--sp-4);
}

.site-main {
    min-height: 46vh;
}

.section {
    padding: var(--sp-10) 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(238, 243, 251, 0.45) 100%);
}

.section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-3);
    margin-bottom: var(--sp-6);
}

.section-head h2 {
    margin-bottom: 0;
}

.muted {
    color: var(--color-text-soft);
}

.content-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--sp-8);
}

.preload-images {
    position: absolute;
    overflow: hidden;
    display: none;
    left: -9999px;
    top: -9999px;
    height: 1px;
    width: 1px;
}

/* Alerts and messages */
#messages {
    max-width: var(--container-max);
    margin: var(--sp-4) auto 0;
    padding: 0 var(--sp-4);
}

.messages-ok,
.messages-error,
.messages-warning {
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    padding: var(--sp-4) var(--sp-5);
    margin-bottom: var(--sp-3);
    box-shadow: var(--shadow-sm);
}

.messages-ok {
    background: var(--color-success);
    border-color: #9bddb0;
}

.messages-error {
    background: var(--color-error);
    border-color: #f6b3b3;
}

.messages-warning {
    background: var(--color-warning);
    border-color: #efd991;
}

/* Buttons */
.btn,
.btn:visited {
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: all .2s ease;
}

.btn:hover,
.btn:focus,
.btn:active {
    transform: translateY(-1px);
}

.btn-primary,
.btn-primary:visited {
    background: linear-gradient(120deg, var(--color-primary), #1d73b0);
    color: #fff;
    border-color: var(--color-primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: linear-gradient(120deg, var(--color-primary-strong), var(--color-primary));
    color: #fff;
    border-color: var(--color-primary-strong);
}

.btn-success,
.btn-success:visited {
    background: linear-gradient(120deg, #39d98a, #20b86a);
    color: #fff;
    border-color: #20b86a;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
    background: linear-gradient(120deg, #2bc479, #189d59);
    color: #fff;
    border-color: #189d59;
}

.btn-info,
.btn-info:visited {
    background: #fff;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active {
    background: #f0f7ff;
    color: var(--color-primary-strong);
    border-color: var(--color-primary-strong);
}

.btn-secondary,
.btn-secondary:visited {
    background: #fff;
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background: var(--color-surface-alt);
    color: var(--color-text);
}

/* Forms */
label {
    font-weight: 700;
    color: var(--color-text);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="file"],
select,
textarea,
.form-control,
.form input,
.form select,
.form textarea,
#user input,
#user select,
#user textarea,
#cart input,
#cart select,
#cart textarea {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--color-input-border);
    border-radius: var(--radius-sm);
    background: var(--color-input-bg);
    padding: 10px 12px;
    color: var(--color-input-text);
    box-shadow: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

input::placeholder,
textarea::placeholder,
.form-control::placeholder {
    color: var(--color-input-placeholder);
    opacity: 1;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(29, 115, 176, 0.18);
}

/* Radio/checkbox musia mat naturalnu velkost */
#cart input[type="radio"],
#cart input[type="checkbox"],
#user input[type="radio"],
#user input[type="checkbox"],
.form input[type="radio"],
.form input[type="checkbox"] {
    width: auto;
    min-height: 0;
    height: auto;
    padding: 0;
    margin: 0;
	margin-left: -20px;
	margin-top: 3px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.form .radio,
#cart .radio {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    padding: var(--sp-4);
    margin-bottom: var(--sp-3);
	cursor: pointer;
}

.form .radio p,
#cart .radio p {
    margin: var(--sp-2) 0 0;
    color: var(--color-text-soft);
    font-size: .95rem;
}

/* Tables */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--color-table-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-table-bg);
    margin: var(--sp-4) 0 var(--sp-6);
}

table th,
table td {
    padding: 12px;
    border-bottom: 1px solid var(--color-table-border);
    vertical-align: middle;
    color: var(--color-text);
}

table tr:last-child td {
    border-bottom: 0;
}

table th {
    background: var(--color-table-head-bg);
    color: var(--color-table-head-text);
    font-weight: 700;
}

table tbody tr:nth-child(even),
table tr:nth-child(even) {
    background: var(--color-table-row-alt);
}

table tbody tr:hover {
    background: var(--color-table-row-hover);
}

.table {
    border-color: var(--color-table-border);
    background: var(--color-table-bg);
}

.table > thead > tr > th {
    background: var(--color-table-head-bg);
    color: var(--color-table-head-text);
    border-color: var(--color-table-border);
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th {
    color: var(--color-text);
    border-color: var(--color-table-border);
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: var(--color-table-row-alt);
}

.table-hover > tbody > tr:hover {
    background-color: var(--color-table-row-hover);
}

.table-bordered,
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
    border-color: var(--color-table-border);
}

.record-actions {
    white-space: nowrap;
}

.record-actions .fa {
    font-size: 20px;
}

/* Header and nav */
.site-header {
    position: relative;
    z-index: 30;
}

.brand {
    padding-top: var(--sp-4);
}

.brand__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: var(--sp-4) var(--sp-5);
}

.logo {
    margin: 0;
}

.logo img {
    max-height: 58px;
}

.brand__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--sp-4);
    color: var(--color-text-soft);
    font-size: .92rem;
}

.brand__meta-info {
    display: inline-flex;
    align-items: center;
}

.brand__meta i {
    color: var(--color-primary);
    margin-right: 4px;
}

.brand__lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.brand__lang {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 22px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background: var(--color-surface);
    text-decoration: none;
    line-height: 1;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.brand__lang:hover,
.brand__lang:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(15, 76, 129, 0.16);
    transform: translateY(-1px);
    text-decoration: none;
}

.brand__lang.is-active {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px rgba(15, 76, 129, 0.35);
}

.brand__lang-flag {
    display: block;
    font-size: 14px;
}
.theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 0;
    background: transparent;
    color: var(--color-text-soft);
    border-radius: 0;
    padding: 0;
    font-size: .92rem;
    font-weight: 400;
    line-height: 1.2;
    cursor: pointer;
    transition: color .2s ease;
}

.theme-toggle__icon {
    color: var(--color-primary);
    margin-right: 4px;
}

.theme-toggle:hover,
.theme-toggle:focus {
    color: var(--color-primary-strong);
    text-decoration: underline;
}

.navbar {
    background: transparent;
    border: 0;
    border-radius: 0;
    margin-bottom: 0;
    margin-top: var(--sp-4);
}

.site-nav-spacer {
    height: 0;
}

.site-nav .navbar-collapse {
    border: 0;
    background: rgba(14, 31, 54, 0.92);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.navbar-nav > li > a,
.navbar-nav > li > a:visited {
    color: #eaf2fb !important;
    font-weight: 600;
    letter-spacing: .01em;
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.navbar-nav .cart-link {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
}

.navbar-nav .cart-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: linear-gradient(120deg, #ff6b5f, #ec3e2f);
    border: 1px solid #cf2f22;
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    line-height: 1;
}

.navbar-nav .only-fixed {
    display: none;
}

.navbar-nav > li img {
    height: 20px;
}

.dropdown-menu {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.dropdown-menu li a:hover {
    background-color: #f0f7ff !important;
    color: var(--color-primary);
}

.navbar-toggle {
    border-color: var(--color-border);
    background: #fff;
}

.navbar-toggle .icon-bar {
    background: var(--color-primary);
}

.navbar-fixed-top {
    margin-top: 0;
}

.navbar-fixed-top .navbar-collapse {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    background: rgba(11, 38, 64, 0.96);
}

.navbar-fixed-top .navbar-right {
    margin-right: 0 !important;
}

.navbar-fixed-top .only-fixed {
    display: block;
}

/* Home hero */
.home-hero {
    padding: 0;
}

#main-slide {
    border-radius: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    box-shadow: none;
}

#main-slide .item {
    height: clamp(220px, 42vw, 460px);
}

#main-slide .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45) contrast(1.1);
}

#main-slide .slider-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    color: #fff;
}

#main-slide .slider-content h1 {
    color: #fff;
    margin-bottom: var(--sp-4);
    font-size: clamp(1.6rem, 3.7vw, 3.2rem);
}

#main-slide .slider-content h1 strong {
    color: #ffd166;
}

#main-slide .slider-content p {
    color: #dbeafe;
    font-size: clamp(1rem, 2vw, 1.35rem);
    margin-bottom: var(--sp-6);
}

#main-slide .carousel-indicators {
    bottom: var(--sp-4);
}

#main-slide .carousel-indicators li {
    width: 11px !important;
    height: 11px !important;
    border-radius: 999px;
    border: 2px solid #fff !important;
}

#main-slide .carousel-control.left,
#main-slide .carousel-control.right {
    background-image: none;
    opacity: 1;
}

#main-slide .carousel-control i {
    font-size: 30px;
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    padding: 10px 14px;
    border-radius: 999px;
}

/* Cards */
.product-card,
.category-card {
    margin-bottom: var(--sp-6);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover,
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

#eshop .product-card {
    display: flex;
    flex-direction: column;
}

#eshop .product-card > .annotation {
    flex: 1 1 auto;
}

.image-zoom-efect img {
    transition: transform .7s ease;
}

.image-zoom-efect:hover img {
    transform: scale(1.03);
}

#popular .image-zoom-efect > a,
#categories .image-zoom-efect > a {
    display: block;
    overflow: hidden;
}

#popular .title,
#categories .title,
#eshop .title {
    background: linear-gradient(120deg, var(--color-primary), #2477b5);
    color: #fff;
    text-align: left;
    padding: var(--sp-4) var(--sp-4);
    font-size: 1.05rem;
}

#popular .title a,
#categories .title a,
#eshop .title a,
#popular .title a:visited,
#categories .title a:visited,
#eshop .title a:visited {
    color: #fff;
}

.product-card__media {
    display: block;
    background: #0b1f36;
}

.product-card__media img {
    width: 100%;
}

#popular .price,
#eshop .price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-3);
    background: #fff;
    color: var(--color-text);
    padding: var(--sp-4);
    font-size: 1.1rem;
    border-top: 1px solid var(--color-border);
}

#popular .price big,
#eshop .price big {
    font-size: 1.35em;
}

#popular .price .btn,
#eshop .price .btn {
    margin: 0;
    white-space: nowrap;
}

#eshop .annotation {
    background: var(--color-surface-alt);
    color: var(--color-text-soft);
    text-align: left;
    font-size: .95rem;
}

#eshop .annotation .annotation-content {
    margin: 0;
    padding: var(--sp-4);
    border: 0;
}

#popular .price,
#eshop .price {
    display: block;
    background: linear-gradient(135deg, #edf5ff 0%, #ffffff 100%);
    border-top-color: #c5daf1;
}

#popular .product-card__buy-row,
#eshop .product-card__buy-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-3);
}

#popular .product-card__price-tag,
#eshop .product-card__price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
    padding: 8px 10px;
    border: 1px solid #b7d5f3;
    border-left: 4px solid var(--color-secondary);
    border-radius: var(--radius-sm);
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(15, 76, 129, 0.14);
    color: var(--color-primary-strong);
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
}

#popular .product-card__price-tag big,
#eshop .product-card__price-tag big {
    font-size: 1.25em;
    color: var(--color-primary-strong);
}

#popular .price {
    text-align: right;
}

#eshop .product-card__link {
    display: inline-block;
    margin-top: var(--sp-3);
}

#eshop .products-nofound {
    width: 100%;
    font-size: 1.2rem;
    text-align: center;
    padding: var(--sp-10) var(--sp-4);
    background: var(--color-surface);
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-md);
}

.product-card__link {
    font-size: .9rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* Category menu */
.category-menu {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: var(--sp-4);
}

.category-menu__title {
    margin: 0;
    font-size: 1rem;
    padding: var(--sp-4);
    background: #edf4fb;
    color: var(--color-primary-strong);
}

.category-menu-toggle {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-3);
    padding: 12px var(--sp-4);
    border: 0;
    border-bottom: 1px solid var(--color-border);
    background: #edf4fb;
    color: var(--color-primary-strong);
    font-weight: 700;
    text-align: left;
}

.category-menu-toggle__label {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
}

.category-menu-toggle__caret {
    transition: transform .2s ease;
}

.category-menu-toggle[aria-expanded="true"] .category-menu-toggle__caret {
    transform: rotate(180deg);
}

.category-menu__list {
    list-style: none;
    margin: 0;
    padding: var(--sp-2);
}

.category-menu__divider {
    margin: var(--sp-2) var(--sp-2);
}

.category-menu__divider hr {
    margin: 0;
}

.cat,
.cat:visited {
    display: block;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-weight: 600;
}

.cat:hover,
.cat-selected,
.cat-selected:visited {
    background: #e8f2ff;
    color: var(--color-primary-strong);
}

#eshop .cats,
#product .cats {
    position: relative;
    z-index: 5;
}

#eshop .container,
#product .container {
    max-width: var(--container-max);
}

#eshop .catalog-layout,
#product .catalog-layout {
    display: grid;
    grid-template-columns: clamp(220px, 24vw, 300px) minmax(0, 1fr);
    column-gap: var(--sp-6);
    align-items: flex-start;
}

#eshop .catalog-layout > .cats,
#product .catalog-layout > .cats,
#eshop .catalog-layout > .catalog-content,
#product .catalog-layout > .product-detail {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

#eshop .catalog-content {
    min-width: 0;
}

#eshop .products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--sp-5);
}

#eshop .products-grid > .product-card {
    margin-bottom: 0;
}

#eshop .products-grid > .products-nofound {
    grid-column: 1 / -1;
}

#product .product-detail-grid {
    display: block;
}

#product .product-detail-grid::after {
    content: "";
    display: block;
    clear: both;
}

#product .product-images {
    float: right;
    width: min(100%, 260px);
    margin: 0 0 var(--sp-4) var(--sp-6);
    padding-top: 0;
}

#product #gallery_product .gallery-image {
    display: block;
    margin-right: 0;
    margin-bottom: var(--sp-2);
}

#product #gallery_product .gallery-image img {
    width: 100%;
    height: auto;
}

#product .product-video iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

/* Product detail */
.product-detail {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: var(--sp-6);
}

.product-detail__head h1 {
    margin-bottom: var(--sp-5);
}

.product-detail__content {
    color: var(--color-text);
}

#product .product-description {
    padding-top: 0;
    min-width: 0;
}

#product .price {
    display: inline-block;
    max-width: 100%;
    margin-top: var(--sp-5);
    margin-bottom: var(--sp-4);
    padding: 12px 16px;
    border: 1px solid #b7d5f3;
    border-left: 4px solid var(--color-secondary);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #edf5ff 0%, #ffffff 100%);
    box-shadow: 0 10px 22px rgba(15, 76, 129, 0.14);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary-strong);
    line-height: 1.35;
}

#product .price big {
    font-size: 1.25em;
    color: var(--color-primary-strong);
}

#product .price-before {
    font-size: 1.05rem;
    color: #7c8ea4;
    margin-left: var(--sp-2);
    text-decoration: line-through;
}

#product .product-detail__buy-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--sp-3);
    margin-top: var(--sp-5);
    margin-bottom: var(--sp-4);
}

#product .product-detail__buy-row .price {
    margin-top: 0;
    margin-bottom: 0;
}

#product .product-detail__buy-row .product-detail__actions {
    margin-left: auto;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.product-detail__actions {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

.product-video {
    margin-bottom: var(--sp-4);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery-image {
    display: inline-block;
    margin-right: var(--sp-2);
    margin-bottom: var(--sp-2);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.gallery-image img {
    display: block;
}

/* Cart and checkout */
#cart {
    padding-top: var(--sp-8);
}

#cart .head {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: #edf4fb;
    color: var(--color-primary-strong);
    font-weight: 700;
    font-size: .95rem;
    padding-top: var(--sp-3);
    padding-bottom: var(--sp-3);
}

#cart .cart-item {
    align-items: center;
}

#cart .cart-item__product b {
    color: var(--color-text);
}

#cart .cart-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary-strong);
}

#cart a.fa,
#cart a.fa:visited {
    font-size: 22px;
    color: var(--color-primary);
}

#cart a.fa:hover {
    color: var(--color-secondary-strong);
}

#cart .description {
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    padding: var(--sp-8);
    text-align: center;
    font-size: 1.1rem;
}

#cart .double {
    border-top: 2px solid var(--color-border);
}

.checkout-note {
    margin-top: var(--sp-5);
    color: var(--color-text-soft);
}

.checkout-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-3);
    margin-top: var(--sp-5);
    margin-bottom: var(--sp-2);
    padding: var(--sp-4);
    border: 1px solid #b7d5f3;
    border-left: 6px solid var(--color-secondary);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #edf5ff 0%, #ffffff 100%);
    box-shadow: 0 10px 22px rgba(15, 76, 129, 0.14);
}

.checkout-total__label {
    flex: 1 1 auto;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-primary-strong);
    letter-spacing: .01em;
    text-align: right;
}

.checkout-total__value {
    flex: 0 0 auto;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    font-weight: 900;
    color: var(--color-primary-strong);
    line-height: 1.1;
    white-space: nowrap;
    text-align: right;
}

.confirmo-coins {
    margin-top: var(--sp-3);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--sp-2);
}

.confirmo-coins__item {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-2);
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-surface-alt);
}

.confirmo-coins__item img {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.confirmo-coins__text strong {
    display: block;
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.2;
}

.confirmo-coins__text span {
    display: block;
    margin-top: 2px;
    color: var(--color-text-soft);
    font-size: 0.8rem;
    line-height: 1.3;
}

.checkout-actions {
    margin-top: var(--sp-8);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: var(--sp-3);
}

/* Auth */
#login {
    padding-top: var(--sp-10);
}

.auth-card {
    max-width: 460px;
    margin: 0 auto;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--sp-8);
}

.auth-card--wide {
    max-width: 560px;
}

.auth-card .form-signin-heading {
    margin-bottom: var(--sp-3);
}

.auth-card label {
    margin-bottom: var(--sp-2);
}

.auth-card input {
    margin-bottom: var(--sp-4);
}

.auth-actions {
    display: flex;
    gap: var(--sp-3);
    justify-content: flex-end;
    margin-top: var(--sp-4);
}

/* User area */
#user {
    padding-top: var(--sp-8);
}

#user .container {
    max-width: var(--container-max);
}

#user .user-menu-toggle {
    display: none;
}

#user .user-menu-toggle__label {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
}

#user .user-menu-toggle__caret {
    transition: transform .2s ease;
}

#user .user-menu-toggle[aria-expanded="true"] .user-menu-toggle__caret {
    transform: rotate(180deg);
}

#user .user-layout {
    display: grid;
    grid-template-columns: clamp(220px, 24vw, 300px) minmax(0, 1fr);
    column-gap: var(--sp-6);
    align-items: flex-start;
}

#user .user-layout > .menu,
#user .user-layout > .user-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

#user .user-layout > .menu {
    margin-bottom: 0;
}

#user .user-layout > .user-content {
    min-width: 0;
}

#user .menu {
    margin-bottom: 0;
}

#user .menu {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: var(--sp-2);
}

#user .menu a,
#user .menu a:visited {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    color: var(--color-text);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    margin-bottom: var(--sp-1);
    font-weight: 600;
}

#user .menu a:hover,
#user .menu a:focus {
    background: #e8f2ff;
    color: var(--color-primary-strong);
}

#user .user-content {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: var(--sp-6);
}

#user label,
.form label {
    display: block;
    width: 100%;
    margin-bottom: var(--sp-2);
}

#user input,
.form input,
#user select,
.form select,
#user textarea,
.form textarea,
#user .inputs,
.form .inputs,
#user strong {
    display: block;
    width: 100%;
    margin-bottom: var(--sp-4);
}

#user strong {
    min-height: 44px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: #fbfdff;
    padding: 10px 12px;
    font-weight: 600;
    color: var(--color-text);
}

#user .inputs,
.form .inputs {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: var(--sp-3);
}

#user .inputs input,
.form .inputs input {
    width: auto;
    min-height: auto;
    margin-right: 6px;
}

#user .inputs .checkbox-option,
.form .inputs .checkbox-option {
    display: inline-block;
    margin-right: var(--sp-4);
    margin-bottom: var(--sp-2);
}

#user .inputs .product-category-option,
.form .inputs .product-category-option {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: auto;
    margin-bottom: var(--sp-2);
    white-space: nowrap;
    cursor: pointer;
}

#user .inputs .product-category-option input[type="checkbox"],
.form .inputs .product-category-option input[type="checkbox"] {
    display: inline-block;
    width: auto;
    min-height: 0;
    margin: 0;
    vertical-align: middle;
}

#user .actions {
    margin-bottom: var(--sp-4);
}

/* Product images in admin */
.product-images {
    margin-bottom: var(--sp-6);
}

.product-images .product-image {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
    padding: var(--sp-4);
    height: auto;
    overflow: hidden;
    margin-bottom: var(--sp-4);
}

.product-images .product-image .product-image-title {
    display: block;
    margin: var(--sp-2) 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Product/category translations in admin form */
.product-translations,
.category-translations {
    margin: 12px 0 18px 0;
}

.product-translations__head,
.category-translations__head {
    margin-bottom: 10px;
}

.product-translations__switches,
.category-translations__switches {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.product-translations .lang-switch.is-active,
.category-translations .category-lang-switch.is-active {
    background: #337ab7;
    color: #fff;
    border-color: #2e6da4;
}

.product-translations .lang-field,
.category-translations .category-lang-field {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    background: #fafafa;
}

/* Newsletter and footer */
#newsletter {
    padding: var(--sp-10) 0;
    background: linear-gradient(145deg, #0f4c81 0%, #123153 100%);
    color: #fff;
    margin-top: var(--sp-8);
}

.newsletter__panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-6);
}

.newsletter__title {
    color: #fff;
    margin-bottom: var(--sp-2);
}

.newsletter__text {
    color: #cde0f4;
    margin-bottom: 0;
}

.newsletter__form {
    display: flex;
    gap: var(--sp-3);
    width: min(100%, 480px);
    align-items: center;
}

.newsletter__form .form-control {
    margin: 0;
}

#footer {
    background: #0c1e33;
    color: #d0d9e4;
    padding: var(--sp-10) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--sp-8);
}

.footer-title {
    color: #fff;
    margin-bottom: var(--sp-4);
    font-size: 1.15rem;
}

#footer p {
    margin-bottom: var(--sp-2);
}

#footer .glyphicon {
    margin-right: var(--sp-2);
}

#footer a,
#footer a:visited {
    color: #dff0ff;
}

#footer a:hover,
#footer a:focus {
    color: #fff;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--sp-2);
}

/* Generic article pages */
#article {
    padding-top: var(--sp-8);
}

#article .container > .row,
#article .content-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: var(--sp-8);
}

/* Legacy responsive helpers */
@media (max-width: 767px) {
    .text-center-xs {
        text-align: center;
    }

    .text-center-xs img.img-responsive {
        display: inline-block;
    }
}

@media (max-width: 399px) {
    .hidden-s400 {
        display: none;
    }
}

@media (max-width: 499px) {
    .hidden-s500 {
        display: none;
    }
}

@media (max-width: 599px) {
    .hidden-s600 {
        display: none;
    }
}

/* Breakpoints */
@media (max-width: 991px) {
    .brand__meta {
        margin-left: auto;
        gap: var(--sp-2);
    }

    .brand__meta-info {
        display: none;
    }

    #eshop .category-menu__title,
    #product .category-menu__title {
        display: none;
    }

    #eshop .category-menu-toggle,
    #product .category-menu-toggle {
        display: flex;
    }

    #eshop .category-menu__list[hidden],
    #product .category-menu__list[hidden] {
        display: none !important;
    }

    #eshop .catalog-layout,
    #product .catalog-layout {
        grid-template-columns: 1fr;
        row-gap: var(--sp-4);
        column-gap: 0;
    }

    #eshop .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--sp-4);
    }

    #product .product-detail-grid {
        display: flex;
        flex-direction: column;
        gap: var(--sp-4);
    }

    #newsletter {
        text-align: center;
    }

    .newsletter__panel {
        justify-content: center;
        text-align: center;
    }

    .newsletter__copy,
    .newsletter__form {
        margin-left: auto;
        margin-right: auto;
    }

    #product .product-description {
        order: 1;
    }

    #product .product-detail__buy-row {
        flex-direction: column;
        align-items: stretch;
    }

    #product .product-detail__buy-row .product-detail__actions {
        margin-left: 0;
        justify-content: flex-start;
    }

    #product .product-images {
        order: 2;
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    #product #gallery_product {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: var(--sp-2);
    }

    #product #gallery_product .gallery-image {
        margin: 0;
    }

    #user .user-layout {
        grid-template-columns: 1fr;
        row-gap: var(--sp-4);
        column-gap: 0;
    }

    #user .user-menu-toggle {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        margin-bottom: var(--sp-4);
        padding: 12px 14px;
        border: 1px solid var(--color-border);
        border-radius: var(--radius-md);
        background: var(--color-surface);
        color: var(--color-text);
        box-shadow: var(--shadow-sm);
        font-weight: 700;
    }

    #user .menu[hidden] {
        display: none !important;
    }

    #user .user-layout > .menu,
    #user .user-layout > .user-content {
        width: 100%;
    }

    #user .menu {
        margin-bottom: 0;
    }

    #user .menu a,
    #user .menu a:visited {
        display: flex;
        margin-right: 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #main-slide .slider-content h1 {
        font-size: clamp(1.5rem, 4vw, 2.2rem);
    }
}

@media (max-width: 767px) {
    .section {
        padding: var(--sp-8) 0;
    }

    .brand {
        padding-top: var(--sp-3);
    }

    .brand__inner {
        padding: var(--sp-3) var(--sp-4);
    }

    .logo img {
        max-height: 44px;
    }

    .navbar {
        margin-top: var(--sp-3);
    }

    .site-nav .navbar-collapse {
        border-radius: var(--radius-md);
    }

    #main-slide .carousel-indicators {
        display: none;
    }

    #main-slide .slider-content p {
        margin-bottom: var(--sp-4);
    }

    #popular .price,
    #eshop .price {
        flex-wrap: wrap;
        text-align: left;
    }

    .checkout-total__label,
    .checkout-total__value {
        text-align: left !important;
    }

    .checkout-total {
        flex-direction: column;
        align-items: flex-start;
    }

    .confirmo-coins {
        grid-template-columns: 1fr;
    }

    .newsletter__form {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter__form .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-6);
    }

    #user .user-content {
        padding: var(--sp-4);
    }

    .auth-card {
        padding: var(--sp-5);
    }

    #article .container > .row,
    #article .content-card {
        padding: var(--sp-5);
    }
}

@media (max-width: 479px) {
    #main-slide .item {
        height: 200px;
    }

    #main-slide .slider-content {
        align-items: flex-end;
        padding-bottom: var(--sp-4);
    }

    #main-slide .slider-content p {
        display: none;
    }

    .slider.btn {
        font-size: .85rem;
        padding: 8px 14px;
    }

    .checkout-actions {
        justify-content: stretch;
    }

    .checkout-actions .btn {
        width: 100%;
    }
}

@media (max-width: 575px) {
    #eshop .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Optional dark mode */
:root[data-theme="dark"] {
    --color-bg: #0e1622;
    --color-surface: #111d2b;
    --color-surface-alt: #1a2a3d;
    --color-text: #e2ebf7;
    --color-text-soft: #a0b2c7;
    --color-border: #23364b;
    --color-link: #86c0ff;
    --color-link-hover: #b8dbff;
    --color-input-bg: #0f2132;
    --color-input-text: #e2ebf7;
    --color-input-border: #35506b;
    --color-input-placeholder: #9ab0c6;
    --color-table-bg: #102235;
    --color-table-border: #35506b;
    --color-table-head-bg: #183149;
    --color-table-head-text: #dceaf8;
    --color-table-row-alt: #13283c;
    --color-table-row-hover: #1a334b;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 14px 32px rgba(0, 0, 0, 0.45);
}

:root[data-theme="dark"] body {
    background: var(--color-bg);
}

:root[data-theme="dark"] #main-slide .item img {
    filter: brightness(0.5) contrast(1.1);
}

:root[data-theme="dark"] #footer {
    background: #091321;
}

:root[data-theme="dark"] .site-nav .navbar-collapse {
    background: rgba(8, 20, 35, 0.96);
}

:root[data-theme="dark"] .brand__inner {
    background: rgba(17, 29, 43, 0.92);
    border-color: #23364b;
}

:root[data-theme="dark"] .theme-toggle {
    background: transparent;
    border-color: transparent;
    color: var(--color-text-soft);
}

:root[data-theme="dark"] #cart .head {
    border-color: #35506b;
    background: linear-gradient(135deg, #17314a 0%, #12283d 100%);
    color: #dceaf8;
}

:root[data-theme="dark"] #cart .cart-price {
    color: #ffd78f;
}

:root[data-theme="dark"] #cart a.fa,
:root[data-theme="dark"] #cart a.fa:visited {
    color: #9fd0ff;
}

:root[data-theme="dark"] #cart a.fa:hover {
    color: #ffd78f;
}

:root[data-theme="dark"] #cart .description {
    border-color: #35506b;
    background: #102235;
    color: #dceaf8;
}

:root[data-theme="dark"] #cart .double {
    border-top-color: #35506b;
}

:root[data-theme="dark"] #cart .radio {
    border-color: #35506b;
    background: #102235;
}

:root[data-theme="dark"] #cart .radio p {
    color: #a9bfd5;
}

:root[data-theme="dark"] #eshop .title {
    background: linear-gradient(135deg, #17314a 0%, #1e4669 100%);
}

:root[data-theme="dark"] #eshop .annotation {
    background: #102235;
    color: #a9bfd5;
}

:root[data-theme="dark"] #popular .price,
:root[data-theme="dark"] #eshop .price {
    background: linear-gradient(135deg, #11263a 0%, #0f2132 100%);
    border-top-color: #35506b;
    color: #dceaf8;
}

:root[data-theme="dark"] #popular .product-card__price-tag,
:root[data-theme="dark"] #eshop .product-card__price-tag {
    border-color: #35506b;
    border-left-color: #ff9a3d;
    background: linear-gradient(135deg, #15314a 0%, #11263a 100%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    color: #dceaf8;
}

:root[data-theme="dark"] #popular .product-card__price-tag big,
:root[data-theme="dark"] #eshop .product-card__price-tag big {
    color: #ffd78f;
}

:root[data-theme="dark"] #eshop .product-card__link {
    color: #9fd0ff;
}

:root[data-theme="dark"] #eshop .product-card__link:hover,
:root[data-theme="dark"] #eshop .product-card__link:focus {
    color: #d8ebff;
}

:root[data-theme="dark"] #product .price {
    border-color: #35506b;
    border-left-color: #ff9a3d;
    background: linear-gradient(135deg, #15314a 0%, #11263a 100%);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
    color: #dceaf8;
}

:root[data-theme="dark"] #product .price big {
    color: #ffd78f;
}

:root[data-theme="dark"] #product .price-before {
    color: #9ab0c6;
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme]) {
        --color-bg: #0e1622;
        --color-surface: #111d2b;
        --color-surface-alt: #1a2a3d;
        --color-text: #e2ebf7;
        --color-text-soft: #a0b2c7;
        --color-border: #23364b;
        --color-link: #86c0ff;
        --color-link-hover: #b8dbff;
        --color-input-bg: #0f2132;
        --color-input-text: #e2ebf7;
        --color-input-border: #35506b;
        --color-input-placeholder: #9ab0c6;
        --color-table-bg: #102235;
        --color-table-border: #35506b;
        --color-table-head-bg: #183149;
        --color-table-head-text: #dceaf8;
        --color-table-row-alt: #13283c;
        --color-table-row-hover: #1a334b;
        --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.35);
        --shadow-md: 0 14px 32px rgba(0, 0, 0, 0.45);
    }

    :root:not([data-theme]) body {
        background: var(--color-bg);
    }

    :root:not([data-theme]) #main-slide .item img {
        filter: brightness(0.5) contrast(1.1);
    }

    :root:not([data-theme]) #footer {
        background: #091321;
    }

    :root:not([data-theme]) .site-nav .navbar-collapse {
        background: rgba(8, 20, 35, 0.96);
    }

    :root:not([data-theme]) .brand__inner {
        background: rgba(17, 29, 43, 0.92);
        border-color: #23364b;
    }

    :root:not([data-theme]) .theme-toggle {
        background: transparent;
        border-color: transparent;
        color: var(--color-text-soft);
    }

    :root:not([data-theme]) #cart .head {
        border-color: #35506b;
        background: linear-gradient(135deg, #17314a 0%, #12283d 100%);
        color: #dceaf8;
    }

    :root:not([data-theme]) #cart .cart-price {
        color: #ffd78f;
    }

    :root:not([data-theme]) #cart a.fa,
    :root:not([data-theme]) #cart a.fa:visited {
        color: #9fd0ff;
    }

    :root:not([data-theme]) #cart a.fa:hover {
        color: #ffd78f;
    }

    :root:not([data-theme]) #cart .description {
        border-color: #35506b;
        background: #102235;
        color: #dceaf8;
    }

    :root:not([data-theme]) #cart .double {
        border-top-color: #35506b;
    }

    :root:not([data-theme]) #cart .radio {
        border-color: #35506b;
        background: #102235;
    }

    :root:not([data-theme]) #cart .radio p {
        color: #a9bfd5;
    }

    :root:not([data-theme]) #eshop .title {
        background: linear-gradient(135deg, #17314a 0%, #1e4669 100%);
    }

    :root:not([data-theme]) #eshop .annotation {
        background: #102235;
        color: #a9bfd5;
    }

    :root:not([data-theme]) #popular .price,
    :root:not([data-theme]) #eshop .price {
        background: linear-gradient(135deg, #11263a 0%, #0f2132 100%);
        border-top-color: #35506b;
        color: #dceaf8;
    }

    :root:not([data-theme]) #popular .product-card__price-tag,
    :root:not([data-theme]) #eshop .product-card__price-tag {
        border-color: #35506b;
        border-left-color: #ff9a3d;
        background: linear-gradient(135deg, #15314a 0%, #11263a 100%);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        color: #dceaf8;
    }

    :root:not([data-theme]) #popular .product-card__price-tag big,
    :root:not([data-theme]) #eshop .product-card__price-tag big {
        color: #ffd78f;
    }

    :root:not([data-theme]) #eshop .product-card__link {
        color: #9fd0ff;
    }

    :root:not([data-theme]) #eshop .product-card__link:hover,
    :root:not([data-theme]) #eshop .product-card__link:focus {
        color: #d8ebff;
    }

    :root:not([data-theme]) #product .price {
        border-color: #35506b;
        border-left-color: #ff9a3d;
        background: linear-gradient(135deg, #15314a 0%, #11263a 100%);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
        color: #dceaf8;
    }

    :root:not([data-theme]) #product .price big {
        color: #ffd78f;
    }

    :root:not([data-theme]) #product .price-before {
        color: #9ab0c6;
    }
}
