/*
  frontend.css

  Page-structural CSS for the templated frontend. Loaded after
  /stylesheet.css (see partials/meta.tpl), so it overrides where needed.

  Conventions:
   - .page-X for page-scope wrappers ("shopping-cart", "checkout-payment", ...)
   - .X-col-Y for table columns specific to a page
   - .action-bar for the row of submit/link buttons at the bottom of a page
   - we keep legacy class names (.productListing-heading, .infoBox, etc.)
     so the existing stylesheet.css still applies its colors + fonts.
*/

/* -------- generic, used by many pages -------- */

.action-bar {
    background: #ffffff;
    border: 1px solid #c7d4e2;
    padding: 8px 12px;
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.action-bar .action-bar-right {
    margin-left: auto;
}

/* -------- shopping_cart.php -------- */

form.shopping-cart {
    margin: 0;
}

table.cart-listing {
    width: 100%;
    border-collapse: separate;
}
table.cart-listing td {
    padding: 6px 8px;
    vertical-align: top;
}
table.cart-listing th.cart-col-remove,
table.cart-listing td.cart-col-remove {
    width: 60px;
    text-align: center;
}
table.cart-listing th.cart-col-quantity,
table.cart-listing td.cart-col-quantity {
    width: 90px;
    text-align: center;
}
table.cart-listing th.cart-col-total,
table.cart-listing td.cart-col-total {
    width: 140px;
    text-align: right;
}

a.cart-product-image {
    float: left;
    margin-right: 12px;
}

.cart-product-info {
    overflow: hidden;
}

p.cart-subtotal {
    text-align: right;
    margin: 12px 0;
    font-size: 14px;
}

div.cart-empty {
    margin: 16px 0;
    padding: 24px;
    text-align: center;
}

div.cart-hint {
    margin-top: 24px;
}
div.cart-hint .infoBox {
    margin-bottom: 12px;
}

/* -------- index.php -------- */

/* category-heading: page title row. h1 size matches Bootstrap .h4 so
   every page heading reads at the same scale as the index page's
   <h1 class="h4">. */
header.category-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 1rem 0;
}
header.category-heading h1 {
    flex: 1 1 auto;
    margin: 0;
    font-size: 1.35rem;
    font-weight: 500;
}
header.category-heading--top h1 {
    flex: 1 1 100%;
}
header.category-heading .category-heading-image {
    flex: 0 0 auto;
}

div.category-grid {
    display: grid;
    grid-template-columns: repeat(var(--cols, 4), 1fr);
    gap: 12px;
    margin: 12px 0;
}
a.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px;
    text-decoration: none;
    color: inherit;
    font-family: Titillium Web, sans-serif;
    font-size: 11px;
}
a.category-card:hover {
    background: #f2f6f9;
}
a.category-card .category-card-name {
    margin-top: 4px;
}

form.filter-form {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
}

p.customer-greeting {
    margin: 12px 0;
    font-family: Titillium Web, sans-serif;
    font-size: 14px;
}

div.homepage-intro {
    margin: 12px 0;
}
hr.homepage-divider {
    border: 0;
    border-top: 1px solid #34597E;
    margin: 8px 0;
}
div.homepage-intro .shop-info {
    margin: 8px 0;
}
div.homepage-intro .text-main {
    margin: 8px 0;
}

section.new-products,
section.upcoming-products,
section.product-listing {
    margin: 16px 0;
}

/* -------- info / legal pages (conditions, privacy, cookie_usage) -------- */

section.legal-text {
    margin: 12px 0;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
    line-height: 1.4;
}

aside.side-info-box {
    float: right;
    width: 40%;
    margin: 0 0 12px 16px;
}

/*
  Legacy stylesheet.css scopes .infoBoxHeading to <td> only.
  Element-agnostic version, so we can also use it on <div>.
*/
div.infoBoxHeading {
    font-family: Titillium Web, sans-serif;
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    background-color: #dce5ee;
    padding: 3px 7px;
    border-bottom: 1px solid #c7d4e2;
    color: #000;
}
aside.side-info-box .infoBox {
    background: #ffffff;
}
aside.side-info-box .infoBoxContents {
    background: #f2f6f9;
    padding: 6px 8px;
    font-size: 12px;
    line-height: 1.4;
}

/* -------- product_info.php -------- */

form.product-info {
    margin: 0;
}

header.product-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin: 0 0 12px 0;
}
header.product-header h1.product-name {
    flex: 1 1 auto;
    margin: 0;
    font-family: Titillium Web, sans-serif;
    font-size: 18px;
}
header.product-header h2.product-model {
    margin: 4px 0 0 0;
    font-size: 13px;
    font-weight: normal;
    color: #555;
}
header.product-header .product-price {
    flex: 0 0 auto;
    text-align: right;
    font-family: Titillium Web, sans-serif;
    font-size: 18px;
    font-weight: bold;
}
header.product-header .product-availability {
    display: block;
    font-size: 14px;
    font-weight: normal;
    margin-top: 4px;
}

section.product-body {
    margin: 12px 0;
    overflow: hidden;
}
aside.product-gallery {
    float: right;
    margin: 0 0 12px 16px;
    text-align: center;
    font-size: 11px;
}
p.product-description {
    margin: 0 0 12px 0;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
    line-height: 1.4;
}

dl.product-meta {
    margin: 8px 0;
    font-size: 12px;
}
dl.product-meta dt {
    display: inline;
    font-weight: bold;
}
dl.product-meta dd {
    display: inline;
    margin: 0 0 0 4px;
}
dl.product-meta dt:before {
    content: '';
}
dl.product-meta dd:after {
    content: '';
    display: block;
}

p.product-shipping-costs {
    margin: 8px 0;
    font-size: 11px;
}

table.product-attributes {
    margin: 12px 0;
    border-collapse: collapse;
}
table.product-attributes .product-attributes-heading {
    font-weight: bold;
    padding: 2px 0;
}
table.product-attributes th {
    text-align: right;
    padding: 4px 8px 4px 0;
    font-weight: normal;
}
table.product-attributes td {
    padding: 4px 0;
}

p.product-reviews-count,
p.product-external-url,
p.product-date-available {
    margin: 8px 0;
    font-size: 12px;
}
p.product-date-available {
    text-align: center;
    font-size: 11px;
}

section.also-purchased {
    margin: 16px 0;
}

div.product-not-found {
    margin: 16px 0;
    padding: 16px;
}

/* -------- auth gateway: login / password_forgotten / create_account / create_account_success -------- */

.form-errors {
    margin: 12px 0;
    padding: 6px 8px;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
    color: #c00;
    border: 1px solid #f2c2c2;
    background: #fff4f4;
}

p.login-visitors-cart {
    margin: 12px 0;
    font-size: 11px;
    font-family: Titillium Web, sans-serif;
}

div.login-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 12px 0;
}
section.login-column,
section.login-guest {
    flex: 1 1 0;
    min-width: 280px;
    border: 1px solid #c7d4e2;
    background: #ffffff;
}
section.login-guest {
    flex: 1 1 100%;
    margin-top: 12px;
}
.login-column-heading {
    font-family: Titillium Web, sans-serif;
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    background-color: #dce5ee;
    padding: 3px 7px;
    border-bottom: 1px solid #c7d4e2;
    color: #000;
    margin: 0;
}
.login-column-body {
    background: #f2f6f9;
    padding: 8px 10px;
    font-size: 12px;
    line-height: 1.4;
}
.login-column-text {
    margin: 0 0 8px 0;
}
p.login-forgotten {
    margin: 6px 0;
    font-size: 11px;
}

/* shared form layout */

section.form-section {
    margin: 12px 0;
    border: 1px solid #c7d4e2;
    background: #ffffff;
}
.form-section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #dce5ee;
    padding: 3px 7px;
    border-bottom: 1px solid #c7d4e2;
}
h2.form-section-heading {
    font-family: Titillium Web, sans-serif;
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    background-color: #dce5ee;
    padding: 3px 7px;
    border-bottom: 1px solid #c7d4e2;
    color: #000;
    margin: 0;
}
.form-section-head h2.form-section-heading {
    background: none;
    border: none;
    padding: 0;
    flex: 1 1 auto;
}
.form-required {
    flex: 0 0 auto;
    font-size: 11px;
    color: #c00;
}
.form-section-body {
    padding: 8px 10px;
    font-size: 12px;
}
.form-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 3px 0;
}
.form-label {
    flex: 0 0 200px;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
}
.form-field {
    flex: 1 1 auto;
}
.form-tip {
    font-size: 11px;
    color: #c00;
}
.form-row.street_address_2 {
    display: none;
}
.form-row-fullwidth .form-field {
    width: 100%;
}
.form-row-right {
    justify-content: flex-end;
}
.form-row-textarea .form-field textarea {
    width: 100%;
}

p.advanced-search-help {
    margin: 4px 0 12px 0;
    font-size: 11px;
    text-align: right;
}

/* -------- address book -------- */

h2.address-book-section-title {
    font-family: Titillium Web, sans-serif;
    font-size: 13px;
    font-weight: bold;
    margin: 12px 0 4px 0;
}
section.address-primary,
section.address-list {
    background: #f2f6f9;
    border: 1px solid #c7d4e2;
    margin: 0 0 12px 0;
}
.address-primary-body {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 10px;
    font-size: 12px;
}
.address-primary-description {
    flex: 1 1 50%;
}
.address-primary-card {
    flex: 0 0 auto;
    text-align: center;
    font-family: Titillium Web, sans-serif;
}
.address-list .infoBoxContents {
    padding: 4px 8px;
}
.address-row {
    padding: 6px 4px;
    cursor: pointer;
}
.address-row.moduleRowOver {
    background: #dce5ee;
}
.address-row-head {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.address-row-name {
    flex: 1 1 auto;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
}
.address-row-actions {
    flex: 0 0 auto;
}
.address-row-body {
    padding: 4px 0 0 12px;
    font-size: 12px;
}
p.address-book-max-entries {
    margin: 8px 0;
    font-size: 11px;
}

/* -------- account pages -------- */

section.account-overview {
    margin: 12px 0;
}
.account-overview-head {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin: 8px 0;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
}
.account-overview-body {
    background: #f2f6f9;
    border: 1px solid #c7d4e2;
}
.account-overview-grid {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 10px;
}
.account-overview-label {
    flex: 0 0 130px;
    text-align: center;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
}
.account-overview-orders {
    flex: 1 1 auto;
}
.account-overview-row {
    display: grid;
    grid-template-columns: 90px 60px 1fr 1fr auto auto;
    gap: 8px;
    padding: 4px 0;
    align-items: center;
    cursor: pointer;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
}
.account-overview-row.moduleRowOver {
    background: #dce5ee;
}
.account-overview-total {
    text-align: right;
}

section.account-card {
    background: #f2f6f9;
    border: 1px solid #c7d4e2;
    margin: 0 0 12px 0;
}
.account-card-body {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 10px;
}
.account-card-icon {
    flex: 0 0 auto;
}
ul.account-card-links {
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
}
ul.account-card-links li {
    margin: 2px 0;
}

section.account-prefs {
    background: #f2f6f9;
    border: 1px solid #c7d4e2;
    margin: 0 0 12px 0;
}
section.account-prefs .infoBoxContents {
    padding: 6px 10px;
}
.account-prefs-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    cursor: pointer;
}
.account-prefs-row.moduleRowOver {
    background: #dce5ee;
}
.account-prefs-checkbox {
    flex: 0 0 30px;
}
.account-prefs-label {
    flex: 1 1 auto;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
}
p.account-prefs-description {
    margin: 4px 0 4px 30px;
    font-size: 12px;
}

/* -------- order history list -------- */

.order-history-row {
    margin: 0 0 14px 0;
}
.order-history-head {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
    padding: 0 0 2px 0;
}
.order-history-head .order-history-id {
    flex: 1 1 auto;
}
.order-history-head .order-history-status {
    flex: 0 0 auto;
    text-align: right;
}
.order-history-body {
    background: #f2f6f9;
    border: 1px solid #c7d4e2;
}
.order-history-grid {
    display: grid;
    grid-template-columns: 50% 30% 20%;
    padding: 6px 10px;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
    gap: 8px;
}
.order-history-view {
    text-align: center;
    align-self: center;
}

aside.orders-empty {
    margin: 12px 0;
}

/* -------- order detail (account_history_info) -------- */

.order-info-summary {
    margin: 8px 0;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
}
.order-info-meta {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-top: 4px;
    font-size: 11px;
}
.order-info-meta .order-info-date {
    flex: 1 1 auto;
}
.order-info-meta .order-info-total {
    flex: 0 0 auto;
    text-align: right;
}
section.order-info-products,
section.order-info-billing,
section.order-info-status-history {
    background: #f2f6f9;
    border: 1px solid #c7d4e2;
    margin: 0 0 12px 0;
}
.order-info-products-grid {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 10px;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
}
.order-info-delivery {
    flex: 0 0 30%;
}
.order-info-products-list {
    flex: 1 1 auto;
}
.order-info-products-head {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
}
.order-info-products-head b:first-child {
    flex: 1 1 auto;
}
.order-info-tax-head,
.order-info-total-head {
    flex: 0 0 auto;
    text-align: right;
    font-size: 11px;
}
.order-info-product-row {
    display: grid;
    grid-template-columns: 40px 1fr auto auto;
    gap: 8px;
    padding: 2px 0;
    align-items: start;
}
.order-info-qty {
    text-align: right;
}
.order-info-tax,
.order-info-line-total {
    text-align: right;
}
.order-info-billing-grid {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 10px;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
}
.order-info-billing-address {
    flex: 0 0 30%;
}
.order-info-totals {
    flex: 1 1 auto;
}
.order-info-totals-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 2px 0;
}
.order-info-totals-label {
    flex: 1 1 auto;
    text-align: right;
}
.order-info-totals-value {
    flex: 0 0 auto;
    text-align: right;
}
section.order-info-status-history .infoBoxContents {
    padding: 8px 10px;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
}
.order-info-status-row {
    display: grid;
    grid-template-columns: 80px 80px 1fr;
    gap: 8px;
    padding: 2px 0;
}

/* -------- checkout pages -------- */

nav.checkout-progress {
    display: grid;
    gap: 0;
    margin: 12px 0;
    border-top: 1px solid #c0c0c0;
}
nav.checkout-progress-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}
nav.checkout-progress-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}
.checkout-progress-step {
    padding: 4px 8px;
    text-align: center;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
}
.checkout-progress-current {
    background: #34597e;
    color: #fff;
    font-weight: bold;
}
.checkout-progress-from {
    background: #dce5ee;
}
.checkout-progress-to {
    background: #f2f6f9;
    color: #888;
}

/* checkout address radio list (shipping/payment_address) */

section.checkout-address-list {
    background: #f2f6f9;
    border: 1px solid #c7d4e2;
    margin: 0 0 12px 0;
}
.checkout-address-list-head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 8px 10px;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
}
.checkout-address-list-instruction {
    flex: 1 1 auto;
}
.checkout-address-list-select {
    flex: 0 0 auto;
    text-align: right;
}
.checkout-address-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 6px 10px;
    align-items: baseline;
    cursor: pointer;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
}
.checkout-address-row.moduleRowOver {
    background: #dce5ee;
}
.checkout-address-row.moduleRowSelected {
    background: #c7d4e2;
}
.checkout-address-row-name { grid-column: 1; }
.checkout-address-row-radio { grid-column: 2; }
.checkout-address-row-body {
    grid-column: 1 / -1;
    padding-left: 12px;
}

/* checkout continue block */
section.checkout-continue {
    background: #f2f6f9;
    border: 1px solid #c7d4e2;
    margin: 12px 0;
}
.checkout-continue-body {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
}
.checkout-continue-text { flex: 1 1 auto; }
.checkout-continue-button { flex: 0 0 auto; }

/* checkout comments textarea */
section.checkout-comments {
    background: #f2f6f9;
    border: 1px solid #c7d4e2;
    margin: 12px 0;
}
.checkout-comments-body {
    padding: 8px 10px;
}
.checkout-comments-body textarea {
    width: 100%;
}

/* checkout_success */
section.checkout-success-body {
    margin: 12px 0;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
    line-height: 1.4;
}
h3.checkout-success-thanks {
    margin: 12px 0 0 0;
    font-size: 14px;
}

/* checkout_confirmation */
.checkout-addresses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 12px 0;
}
.checkout-addresses-shipment,
.checkout-addresses-billing {
    border: 1px solid #000;
    padding: 8px;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
}
h2.checkout-block-heading {
    margin: 0 0 6px 0;
    font-family: Titillium Web, sans-serif;
    font-size: 13px;
    font-weight: bold;
}
.checkout-order-totals {
    margin: 12px 0 12px auto;
    width: 280px;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
}
.order-totals-row {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 2px 0;
}
.order-totals-label {
    flex: 1 1 auto;
    text-align: right;
}
.order-totals-value {
    flex: 0 0 auto;
    text-align: right;
    min-width: 80px;
}

/* MATC consent (Terms + Data Protection checkboxes on checkout_payment + create_account) */
section.matc-conditions {
    margin: 12px 0;
}
h2.matc-conditions-heading {
    margin: 0 0 6px 0;
    font-family: Titillium Web, sans-serif;
    font-size: 13px;
    font-weight: bold;
}
.matc-conditions-textarea {
    width: 100%;
    font-family: monospace;
    font-size: 11px;
}
section.matc-agree {
    margin: 12px 0;
    padding: 8px 10px;
    text-align: center;
    background: #fff;
    border: 1px solid #c7d4e2;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
    transition: background-color 0.2s;
}

/* Checkout error / payment-error / matc-error notice blocks */
div.checkout-error {
    margin: 12px 0;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
}
.checkout-error-title {
    margin: 0 0 6px 0;
}
.checkout-error .infoBoxNotice {
    background: #fff4f4;
    border: 1px solid #f2c2c2;
}
.checkout-error .infoBoxNoticeContents {
    padding: 6px 10px;
}

/* Payment confirmation block (checkout_confirmation page) */
section.checkout-payment-confirmation,
section.checkout-comments-confirmation,
aside.checkout-hinweis {
    margin: 12px 0;
}
.checkout-payment-confirmation-title {
    margin: 0 0 6px 0;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
}
dl.checkout-payment-confirmation-fields {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 12px;
    row-gap: 4px;
    margin: 0;
    padding: 0 0 0 12px;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
}
dl.checkout-payment-confirmation-fields dt {
    font-weight: normal;
}
dl.checkout-payment-confirmation-fields dd {
    margin: 0;
}
aside.checkout-shop-info {
    margin: 12px 0;
    padding: 8px 15px;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
}
p.checkout-matc-link {
    margin: 4px 0 12px 0;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
}

p.form-origin-login {
    margin: 4px 0 12px 0;
    font-size: 11px;
}
p.form-matc-paragraph {
    text-align: center;
    margin: 8px 0;
}
section.form-captcha img.captcha-image {
    border: 1px solid #000;
}

/* -------- listing pages (specials, products_new, reviews) -------- */

.split-bar {
    display: flex;
    align-items: baseline;
    margin: 8px 0;
    font-size: 11px;
    font-family: Titillium Web, sans-serif;
}
.split-bar-count {
    flex: 1 1 auto;
}
.split-bar-links {
    flex: 0 0 auto;
    text-align: right;
}

/* specials: 3-col grid */
ul.specials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    list-style: none;
    margin: 12px 0;
    padding: 0;
}
li.specials-card {
    text-align: center;
    font-size: 11px;
    font-family: Titillium Web, sans-serif;
}
li.specials-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}
li.specials-card .specials-image-link {
    margin-bottom: 4px;
}
li.specials-card .specials-price-old {
    display: block;
    margin: 4px 0 2px;
}

/* products_new + reviews: single-column rows */
ul.products-list,
ul.reviews-list {
    list-style: none;
    margin: 12px 0;
    padding: 0;
}
li.products-list-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #e5ecf3;
}
.products-list-image {
    flex: 0 0 auto;
}
.products-list-info {
    flex: 1 1 auto;
    font-size: 12px;
    font-family: Titillium Web, sans-serif;
}
.products-list-meta {
    margin: 2px 0;
    font-size: 11px;
}
.products-list-price {
    margin-top: 6px;
    font-weight: bold;
}
.products-list-cta {
    flex: 0 0 auto;
    align-self: center;
}
p.products-list-empty {
    margin: 12px 0;
    font-size: 12px;
}

li.reviews-list-row {
    margin: 0 0 14px 0;
    padding: 0;
}
.reviews-list-head {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
    font-family: Titillium Web, sans-serif;
    font-size: 12px;
}
.reviews-list-product {
    flex: 1 1 auto;
}
.reviews-list-by {
    flex: 0 0 auto;
    font-size: 11px;
}
.reviews-list-date {
    flex: 0 0 auto;
    font-size: 11px;
    text-align: right;
}
.reviews-list-body {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f2f6f9;
    border: 1px solid #c7d4e2;
    padding: 8px 10px;
}
.reviews-list-image {
    flex: 0 0 auto;
}
.reviews-list-text {
    flex: 1 1 auto;
    font-size: 12px;
}
aside.reviews-empty {
    margin: 12px 0;
}

/* -------- popup pages (popup_search_help, popup_image, info_shopping_cart) -------- */

aside.popup-info-box {
    margin: 0 0 16px 0;
}
p.popup-close-link {
    text-align: right;
    margin: 0;
    font-size: 11px;
}

body.popup-image-body {
    background-color: #333;
    margin: 0;
}
div.popup-image {
    text-align: center;
}
div.popup-image-copyright {
    color: #fff;
    float: right;
    margin: 2px 10px 0 0;
    font-size: 11px;
}
