/*
Theme Name: Kuttenberg Child
Template: generatepress
Version: 1.0
*/

@import url('../generatepress/style.css');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&display=swap');

/* =========================
   0) PROMĚNNÉ & ZÁKLAD
   ========================= */
:root {
    --gold-main: #d4b15a;
    /* Přepsat GeneratePress CSS proměnné na tmavé hodnoty */
    --contrast: #e6e0cf;
    --contrast-2: #b8b0a0;
    --contrast-3: #888070;
    --base: #0b0b0b;
    --base-2: #0f0f0f;
    --base-3: #111111;
    --accent: #d4b15a;
    --gold-light: #e0c06a;
    --gold-dark: #a67c2e;
    --bg-main: #0b0b0b;
    --bg-card: #0f0f0f;
    --text-main: #e6e0cf;
    --container-width: 1300px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
}

/* Všechny GP wrappery musí mít černé pozadí */
html,
.site,
.site-content,
.content-area,
.site-main,
.entry-content,
.page-content,
main#main,
.gp-site-wrapper,
.inside-article,
.woocommerce,
.woocommerce-page {
    background-color: var(--bg-main) !important;
    background: var(--bg-main) !important;
}

/* Schování automatického H1 nadpisu stránky na domovské stránce */
.page-header,
.entry-header,
h1.entry-title {
    display: none !important;
}

/* =========================
   1) GLOBÁLNÍ KONTEJNER
   Všechny inside-* wrappery GeneratePressu
   mají stejnou max-width a centrování.
   ========================= */
.inside-header,
.inside-navigation,
.inside-top-bar,
.inside-site-branding,
.inside-article,
.inside-right-sidebar,
.inside-left-sidebar,
.inside-footer-widgets,
.inside-footer,
.container,
.grid-container {
    max-width: var(--container-width) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box;
}

/* =========================
   2) TYPOGRAFIE
   ========================= */
h1, h2, h3, h4, h5, h6,
.page-title,
.entry-title,
.main-title,
.main-title a {
    font-family: 'Cinzel', serif !important;
    font-weight: 400;
    color: var(--gold-main) !important;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
    text-decoration: none;
}

h1 { font-size: 2.4em; }
h2 { font-size: 1.8em; font-weight: 500; }
h3 { font-size: 1.4em; font-weight: 500; }

.site-description {
    font-family: 'Cinzel', serif;
    color: var(--gold-main);
    font-size: 0.85em;
    letter-spacing: 0.05em;
}

/* =========================
   3) HEADER - Roztažený na full width, vnitřek v kontejneru
   ========================= */
.site-header {
    background-color: #000;
    border-bottom: 1px solid rgba(201,162,74,0.15);
    padding: 15px 0;
    width: 100%;
}

/* GP wrapper uvnitř headeru */
.inside-header {
    max-width: var(--container-width) !important;
    margin: 0 auto !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* =========================
   4) NAVIGACE — Oprava vertikálního podmenu
   ========================= */

/* Kontejner navigace */
.main-navigation .inside-navigation {
    display: flex !important;
    justify-content: flex-start !important; 
    align-items: center;
    max-width: var(--container-width) !important;
    margin: 0 auto !important;
}

/* Hlavní položky menu */
.main-navigation .main-nav > ul {
    display: flex !important;
    flex-direction: row !important;
    list-style: none !important;
}

.main-navigation .main-nav ul li a {
    font-family: 'Cinzel', serif !important;
    font-size: 220x !important;
    color: var(--gold-main) !important;
    text-transform: uppercase;
    padding: 15px 20px !important;
}

/* VERTIKÁLNÍ PODMENU — Vynucení */
.main-navigation ul ul {
    display: none;
    position: absolute !important;
    flex-direction: column !important; /* Položky pod sebou */
    background-color: #0b0b0b !important;
    border: 1px solid rgba(201,162,74,0.3);
    min-width: 250px !important;
    z-index: 99999;
    left: 0; /* Zarovnání podmenu pod rodiče */
}

/* Zobrazení při najetí myší */
.main-navigation ul li:hover > ul {
    display: block !important;
}

/* Položky uvnitř podmenu - pod sebou */
.main-navigation ul ul li {
    width: 100% !important;
    display: block !important;
    clear: both;
}

.main-navigation ul ul li a {
    font-size: 15px !important;
    padding: 12px 20px !important;
    width: 100% !important;
    display: block !important;
    text-align: left !important;
}

/* =========================
   5) JAZYKY — Oprava rozbalování v menu
   ========================= */

/* 1. SKRYTÍ STARÉHO SWITCHERU (Pojistka) */
.top-bar .widget_polylang,
.header-widget .widget_polylang,
#masthead > ul.polylang-list {
    display: none !important;
}

/* 2. STYL PRO JAZYKOVOU POLOŽKU V MENU */
.main-navigation .main-nav ul li.menu-item-language {
    position: relative;
}

/* Úprava vnořeného seznamu jazyků */
.main-navigation .main-nav ul li.menu-item-language ul.sub-menu {
    display: flex !important; /* Vynutíme řadu pro jazyky */
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    min-width: auto !important;
    width: auto !important;
    visibility: hidden; /* Výchozí stav: neviditelné */
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%); /* Vycentrování pod English */
    background-color: #0b0b0b !important;
    border: 1px solid rgba(201,162,74,0.3);
    padding: 5px 10px !important;
    transition: all 0.2s ease-in-out;
    z-index: 99999;
}

/* ZOBRAZENÍ PŘI HOVERU */
.main-navigation .main-nav ul li.menu-item-language:hover ul.sub-menu {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Jednotlivé zkratky jazyků uvnitř podmenu */
.main-navigation .main-nav ul li.menu-item-language ul.sub-menu li {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
}

.main-navigation .main-nav ul li.menu-item-language ul.sub-menu li a {
    font-size: 14px !important;
    padding: 10px 8px !important;
    white-space: nowrap !important;
}

/* Svislík mezi zkratkami */
.main-navigation .main-nav ul li.menu-item-language ul.sub-menu li:not(:last-child) a::after {
    content: "|";
    margin-left: 10px;
    opacity: 0.3;
}

/* Odstranění šipek u jazyků */
.menu-item-language .dropdown-menu-toggle {
    display: none !important;
}

/* =========================
   6) TLAČÍTKA
   ========================= */
button,
.button,
.wp-block-button__link,
input[type="submit"],
.woocommerce a.button {
    background: linear-gradient(145deg, #c9a24a, #a67c2e) !important;
    color: #111 !important;
    border: none;
    border-radius: 4px;
    padding: 10px 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.25s ease;
    box-shadow: 0 0 10px rgba(201,162,74,0.2);
    text-decoration: none;
}

button:hover,
.button:hover,
.wp-block-button__link:hover,
.woocommerce a.button:hover {
    background: linear-gradient(145deg, #e0c06a, #b68a35) !important;
    color: #000 !important;
    box-shadow: 0 0 15px rgba(201,162,74,0.5);
}

/* =========================
   7) GUTENBERG KARTA
   ========================= */
.kuttenberg-card {
    background: linear-gradient(180deg, #111, #0b0b0b);
    border: 1px solid rgba(201,162,74,0.2);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.kuttenberg-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,162,74,0.5);
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

.kuttenberg-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(201,162,74,0.15), transparent 60%);
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}

.kuttenberg-card:hover::before { opacity: 1; }
.kuttenberg-card h3,
.kuttenberg-card h4 { margin-top: 15px; color: var(--gold-main); }

/* Gutenberg columns centrování */
.entry-content .wp-block-columns {
    display: flex !important;
    width: 100% !important;
    max-width: var(--container-width) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* =========================
   7b) FULL CARD - Pro velké obrázky bez omezení
   ========================= */
.kuttenberg-full-card {
    background: #0f0f0f;
    border: 1px solid rgba(201,162,74,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px !important; /* Mezera mezi obrázkem a textem pod ním */
}

.kuttenberg-full-card img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important; /* Vyplní celý rámeček */
    max-height: none !important; /* Zrušíme jakékoli omezení výšky z minulé opravy */
    transition: transform 0.5s ease;
}

.kuttenberg-full-card:hover {
    border-color: rgba(201,162,74,0.5);
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

.kuttenberg-full-card:hover img {
    transform: scale(1.05); /* Jemný zoom efekt při najetí */
}


/* =========================
   8) WOOCOMMERCE — PRODUKTY
   ========================= */
.woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
    font-family: inherit !important;
    color: var(--text-main) !important;
    font-size: 1em;
    line-height: 1.4;
    text-shadow: none;
}

.woocommerce ul.products li.product .price {
    font-size: 1.1em; font-weight: 600; color: var(--gold-main);
}

.woocommerce ul.products li.product {
    background: linear-gradient(180deg, #0f0f0f, #0b0b0b);
    border: 1px solid rgba(201,162,74,0.15);
    padding: 14px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.woocommerce ul.products li.product::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(201,162,74,0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

.woocommerce ul.products li.product:hover::before { opacity: 1; }

.woocommerce ul.products li.product img {
    transition: transform 0.35s ease, filter 0.35s ease;
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.08);
    filter: brightness(1.05) contrast(1.05);
}

.woocommerce ul.products li.product .button {
    width: 100%;
    margin-top: 10px;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.25s ease;
}

.woocommerce ul.products li.product:hover .button {
    opacity: 1;
    transform: translateY(0);
}

/* WOO — Detail produktu */
.woocommerce div.product form.cart .button.single_add_to_cart_button {
    background: linear-gradient(145deg, #e0c06a, #c9a24a) !important;
    color: #111 !important;
    border-radius: 4px;
    padding: 15px 35px;
    font-size: 1.2em;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(224,192,106,0.5);
}

.woocommerce div.product form.cart .button.single_add_to_cart_button:hover {
    background: linear-gradient(145deg, #f2d688, #d4b15a) !important;
    box-shadow: 0 0 25px rgba(224,192,106,0.8);
    transform: scale(1.03);
    color: #000 !important;
}

/* WOO — Tiered Price tabulka */
.woocommerce div.product .summary div[class*="tier"] table,
.woocommerce div.product .summary div[class*="pricing"] table,
.woocommerce div.product form.cart table {
    background: #0b0b0b !important;
    border: 1px solid rgba(201,162,74,0.3) !important;
    border-radius: 4px;
    margin-bottom: 20px;
}

.woocommerce div.product .summary div[class*="tier"] table tr,
.woocommerce div.product .summary div[class*="tier"] table th,
.woocommerce div.product .summary div[class*="tier"] table td,
.woocommerce div.product form.cart table tr,
.woocommerce div.product form.cart table th,
.woocommerce div.product form.cart table td {
    background: transparent !important;
    color: var(--text-main) !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    padding: 10px;
    text-align: center;
}

.woocommerce div.product form.cart table th {
    color: var(--gold-main) !important;
    font-family: 'Cinzel', serif !important;
}

.woocommerce div.product form.cart table tr.active td,
.woocommerce div.product form.cart table tbody tr:hover td {
    background-color: rgba(201,162,74,0.15) !important;
    color: #fff !important;
}

/* WOO — Formuláře */
.woocommerce div.product form.cart select,
.woocommerce div.product form.cart select:focus,
.woocommerce div.product form.cart select option {
    background-color: #111 !important;
    color: var(--text-main) !important;
}

.woocommerce div.product form.cart div.quantity { margin-right: 20px !important; }

.woocommerce div.product form.cart .quantity .qty {
    width: 120px !important;
    height: 56px !important;
    font-size: 1.3em !important;
    font-weight: bold;
    text-align: center;
    background-color: #111 !important;
    color: var(--text-main) !important;
    border: 1px solid #c9a24a !important;
    border-radius: 4px;
}

.woocommerce div.product form.cart .quantity .qty:focus {
    outline: none;
    background-color: #0b0b0b !important;
    color: var(--gold-main) !important;
    box-shadow: 0 0 10px rgba(201,162,74,0.5);
}

.woocommerce div.product .woocommerce-variation-price .price,
.woocommerce div.product .price,
.woocommerce-variation.single_variation .woocommerce-variation-price {
    color: var(--gold-main) !important;
    font-size: 1.5em !important;
    font-weight: 600;
    display: block !important;
    margin-bottom: 15px;
}

.woocommerce-cart .qty { width: 90px !important; }
.woocommerce-cart .coupon input[type="text"] { width: 180px !important; }

/* Ostatní formuláře */
select, .orderby {
    background: #0f0f0f;
    color: var(--text-main);
    border: 1px solid #c9a24a;
    padding: 8px 30px 8px 10px;
    border-radius: 4px;
}

select:focus {
    outline: none;
    border-color: var(--gold-light);
    box-shadow: 0 0 6px rgba(201,162,74,0.5);
}

input[type="text"], input[type="email"], textarea {
    background: #111;
    color: var(--text-main);
    border: 1px solid #333;
    padding: 10px;
}

input:focus, textarea:focus {
    border-color: #c9a24a;
    box-shadow: 0 0 6px rgba(201,162,74,0.4);
}

/* =========================
   9) DROBNOSTI
   ========================= */
a { color: #c9a24a; text-decoration: none; }
a:hover { color: var(--gold-light); }

hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #c9a24a, transparent);
}

.onsale { background: #c9a24a; color: #000; font-weight: bold; }

.kuttenberg-fact-box {
    background: linear-gradient(145deg, #111111, #0a0a0a);
    border-left: 4px solid var(--gold-main);
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    position: relative;
}

.kuttenberg-fact-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(201,162,74,0.05), transparent 50%);
    pointer-events: none;
}

.kuttenberg-fact-box-title {
    color: var(--gold-main);
    font-family: 'Cinzel', serif;
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 10px;
}

.kuttenberg-fact-box p { color: var(--text-main); margin-bottom: 0; line-height: 1.6; }

/* =========================
   10) SPECIFICATIONS TABS
   ========================= */
.coin-specs { display: flex; flex-direction: column; gap: 40px; }

.spec-group {
    border: 1px solid rgba(255,255,255,0.08);
    padding: 22px;
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
}

.spec-group h3 {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 18px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.spec-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 25px;
    padding: 6px 0;
}

.spec-label { color: #aaa; opacity: 0.7; }
.spec-value { color: #fff; }

.spec-value a {
    display: inline-block;
    padding: 4px 10px;
    margin-right: 6px;
    background: rgba(212,175,55,0.15);
    border-radius: 6px;
    font-size: 13px;
}

.role-badge {
    background: rgba(212,175,55,0.15);
    padding: 4px 10px;
    border-radius: 6px;
}

.spec-obverse .spec-value,
.spec-reverse .spec-value,
.spec-diameter .spec-value,
.spec-weight .spec-value { color: #d4af37; font-weight: 500; }

.spec-motif .spec-value { color: #fff; }

.coin-tip {
    margin-top: 12px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(212,175,55,0.08);
    font-size: 14px;
    line-height: 1.4;
}

/* =========================
   11) RESPONSIVITA
   ========================= */
@media (max-width: 1280px) {
    h1 { font-size: 1.8em; }
    h2 { font-size: 1.5em; }
    h3 { font-size: 1.25em; }

    .woocommerce ul.products li.product .button {
        opacity: 1;
        transform: translateY(0);
        margin-top: 15px;
    }

    .woocommerce ul.products li.product:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .main-navigation .main-nav ul li.menu-item-language:not(:last-child) > a::after {
        display: none;
    }
}


/* =========================
   11) PATICKA
   ========================= */

.site-footer {
    background-color: #1a1a1a !important;
}

.footer-widgets {
    background-color: #1a1a1a !important;
}






/* Schová tier pricing tabulku v katalogu */
.woocommerce ul.products .tier-pricing-table,
.woocommerce ul.products .price-rules-table,
.woocommerce ul.products table {
    display: none !important;
}

/* Oprava lámání textu v kartách */
.kuttenberg-card h4 {
    word-break: keep-all !important; /* Zabrání rozdělení slov */
    hyphens: none !important;
    line-height: 1.2 !important;
    padding: 0 5px !important;
    margin-bottom: 10px !important;
}

/* Vynucení stejné výšky obrázků v kartách */
.kuttenberg-card img {
    max-height: 150px;
    object-fit: contain;
    margin-bottom: 20px !important;
}




/* ÚPLNÁ OPRAVA ZAROVNÁNÍ KARET */
.kuttenberg-coins-grid .kuttenberg-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important; /* Všechno začne nahoře */
    align-items: center !important;
    padding: 20px 10px !important;
    height: 100% !important;
    background: rgba(255,255,255,0.03) !important;
}

/* ZÓNA PRO OBRÁZEK - pevná výška zajistí, že text pod ním začne stejně */
.kuttenberg-coins-grid .kuttenberg-card a {
    display: flex !important;
    align-items: center !important; /* Vycentruje minci vertikálně v jejím prostoru */
    justify-content: center !important;
    height: 130px !important; /* Pevný prostor pro minci */
    width: 100% !important;
    margin-bottom: 15px !important;
    flex-shrink: 0 !important;
}

.kuttenberg-coins-grid .kuttenberg-card img {
    max-height: 120px !important;
    width: auto !important;
    object-fit: contain !important;
    margin: 0 !important;
}

/* ZÓNA PRO NADPIS */
.kuttenberg-coins-grid .kuttenberg-card .wp-block-cover__inner-container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

.kuttenberg-coins-grid h5 {
    font-size: 15px !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    min-height: 40px !important; /* RECEPT NA SKÁKÁNÍ: Rezervuje místo pro 2 řádky textu */
    display: flex !important;
    align-items: flex-start !important; /* Text začne vždy nahoře */
    justify-content: center !important;
    text-align: center !important;
}





/* Sidebar jen pro WooCommerce shop a kategorie */
.post-type-archive-product .sidebar,
.tax-product_cat .sidebar {
    display: block;
}
.single-product .sidebar {
    display: none;
}



.worlds-filter li.active a {
    font-weight: bold;
    color: #fff;
    border-left: 2px solid #d4af37;
    padding-left: 6px;
}




#price-preview {
    font-size: 16px;
    font-weight: bold;
    margin-top: 12px;
}



.category-filter {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.category-filter li {
    margin-bottom: 6px;
}




/* zrušit zbytečnou lištu */
.editor-header,
.edit-post-header,
.woocommerce-layout__header {
  display: none !important;
}

.interface-interface-skeleton__content {
  top: 0 !important;
}

/* schová bílý horní editor panel */
.interface-interface-skeleton__header {
  display: none !important;
}

/* dorovná obsah nahoru */
.interface-interface-skeleton__content {
  top: 0 !important;
}
body .interface-interface-skeleton__header {
  display: none !important;
}


.woocommerce-layout__header,
.woocommerce-layout__activity-panel-tabs,
.woocommerce-layout__header-wrapper {
    top: 32px !important;
}


body.wp-admin .woocommerce-layout__header {
    position: relative !important;
    top: 0 !important;
}


.cart-item a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}
.woocs {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-size: 14px;
}

.woocs a {
  opacity: 0.6;
  transition: opacity 0.2s;
}

.woocs a:hover {
  opacity: 1;
}

.woocs .woocs_current {
  font-weight: bold;
  opacity: 1;
}



.currency-switch {
  font-size: 17px;
  letter-spacing: 0.5px;
}

.currency-switch a {
  text-decoration: none;
  opacity: 0.99;
  margin: 0 2px;
}

.currency-switch a:hover {
  opacity: 1;
}




.world-btn {
  display: inline-block;
  margin: 12px 0 20px;
  padding: 8px 16px;

  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;

  color: #d4b46a; /* zlatá */
  background: #111; /* tmavé pozadí */
  border: 1px solid #d4b46a;

  text-decoration: none;
  transition: all 0.2s ease;
}

.world-btn:hover {
  background: #d4b46a;
  color: #111;
}







.kb-hero {
  background: #0b0b0b;
  color: #f5f5f5;
  padding: 60px 10px;
  text-align: left;
}

.kb-hero-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.kb-hero h1 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #d4af37;
}

.kb-sub {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.kb-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.kb-bullets li {
  margin: 8px 0;
  font-size: 16px;
}

.kb-cta {
  display: inline-block;
  padding: 14px 28px;
  background: #d4af37;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: 0.2s;
}

.kb-cta:hover {
  background: #f0c75e;
}





.kb-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.kb-hero-image img {
  width: 100%;
  border-radius: 10px;
}

/* mobil */
@media (max-width: 768px) {
  .kb-hero-grid {
    grid-template-columns: 1fr;
  }
}







.km-shipping-info {
  margin: 10px 0;
  padding: 10px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 6px;
  color: #d4af37;
  font-size: 14px;
}
.km-shipping-info p {
  margin: 4px 0;
}



.kuttenberg-free-shipping-notice {
  padding: 12px 16px;
  margin: 0 0 18px;
  background: #111;
  color: #d8b74a;
  border: 1px solid #d8b74a;
  border-radius: 6px;
  font-weight: 600;
}