/* ═══════════════════════════════════════════════════════
   Kokken Theme — Main Stylesheet
   Core layout, typography, header, footer, components
   ═══════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ────────────────────────────── */
:root {
    /* Brand colours */
    --kk-red:       #ff0000;
    --kk-black:     #1a1a1a;
    --kk-dark:      #000000;
    --kk-white:     #ffffff;
    --kk-gray:      #666666;
    --kk-light:     #f5f5f5;
    --kk-border:    #e8e8e8;

    /* Typography */
    --kk-font: 'Roboto', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;

    /* ── Layout system ──────────────────────────────────
     *  Full-bleed:  header bg, hero, promo bars, footer bg
     *  Contained:   content, products, blog → 1280px
     *  Header row:  slightly wider → 1400px (more breathing)
     *  Padding:     32px desktop / 16px mobile
     * ─────────────────────────────────────────────── */
    --kk-width-content: 1280px;
    --kk-width-header:  1400px;
    --kk-pad-x:         32px;
    --kk-pad-x-sm:      16px;

    /* Component sizes */
    --kk-header-h:  80px;
    --kk-sidebar-w: 240px;
    --kk-gap:       32px;

    /* Legacy alias (keeps WC compat) */
    --kk-max-w: 1280px;
}

/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: clip; /* clip = no horizontal scroll, but does NOT break position:sticky */
}

html {
    scroll-behavior: smooth;
}

body,
button,
input,
textarea,
select {
    font-family: var(--kk-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--kk-black);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
}

a {
    color: var(--kk-red);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--kk-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.75em;
}

p { margin: 0 0 1em; }

/* ═══════════════════════════════════════════════════════
   LAYOUT SYSTEM
   ═══════════════════════════════════════════════════════ */

/* ── Base container — 1280px, centered ───────────────── */
.col-full {
    width: 100%;
    max-width: var(--kk-width-content);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--kk-pad-x);
    padding-right: var(--kk-pad-x);
}

/* ── Site content wrapper ─────────────────────────────── */
.site-content {
    padding: 48px 0;
}

/* Pages with sidebar: flex row */
.site-content .col-full,
.site-content--with-sidebar .col-full {
    display: flex;
    align-items: flex-start;
    gap: var(--kk-gap);
}

/* Full-width pages (no sidebar): single column */
.site-content--full .col-full {
    display: block;
}

.content-area {
    flex: 1;
    min-width: 0; /* prevent flex overflow */
}

.content-area--full {
    width: 100%;
}

/* ── Sidebar ──────────────────────────────────────────── */
.kk-shop-sidebar,
.widget-area {
    width: var(--kk-sidebar-w);
    flex-shrink: 0;
}

/* ── Homepage — full-bleed sections ──────────────────── */
.site-content--homepage {
    padding: 0;
}

/* Override the flex rule from .site-content .col-full */
.site-content--homepage .col-full,
.col-full--homepage {
    display: block;
    max-width: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.content-area--full {
    width: 100%;
    min-width: 0;
}

.entry-content--homepage {
    padding: 0;
    margin: 0;
    width: 100%;
}

/* All homepage blocks: contained at 1280px */
.entry-content--homepage > * {
    max-width: var(--kk-width-content);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--kk-pad-x);
    padding-right: var(--kk-pad-x);
    box-sizing: border-box;
}

/* Full-bleed exceptions — break out of container */
.entry-content--homepage .kk-hero,
.entry-content--homepage .free-shipping,
.entry-content--homepage [class*="alignfull"],
.entry-content--homepage [class*="wp-block-cover"] {
    max-width: 100vw;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 0;
    padding-right: 0;
}

/* ══════════════════════════════════════════════════════
   TOP BAR
   ══════════════════════════════════════════════════════ */
.kk-topbar {
    background: #111;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    height: 36px;
    display: flex;
    align-items: center;
}

.kk-topbar__inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.kk-topbar__left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kk-topbar__phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.15s;
}

.kk-topbar__phone:hover { color: #fff; }

.kk-topbar__divider {
    color: rgba(255,255,255,0.2);
    font-size: 11px;
}

.kk-topbar__promo {
    font-size: 11.5px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.02em;
}

.kk-topbar__right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.kk-topbar__social {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.15s;
}

.kk-topbar__social:hover { color: #fff; }

/* ══════════════════════════════════════════════════════
   SEARCH TRIGGER (icon button in header)
   ══════════════════════════════════════════════════════ */
.kk-search-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    border-radius: 50%;
    color: rgba(255,255,255,0.75);
    cursor: pointer;
    margin-left: auto;
    transition: background 0.15s, color 0.15s;
    flex-shrink: 0;
}

.kk-search-trigger:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* ══════════════════════════════════════════════════════
   SEARCH OVERLAY
   ══════════════════════════════════════════════════════ */
.kk-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.2s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.kk-search-overlay[hidden] {
    display: none;
}

.kk-search-overlay.is-open {
    opacity: 1;
}

.kk-search-overlay__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 680px;
}

.kk-search-overlay__form {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 10px;
    transition: border-color 0.2s;
}

.kk-search-overlay__form:focus-within {
    border-color: #fff;
}

.kk-search-overlay__icon {
    color: rgba(255,255,255,0.5);
    flex-shrink: 0;
}

.kk-search-overlay__input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-size: 26px;
    font-weight: 300;
    color: #fff;
    font-family: var(--kk-font);
    letter-spacing: -0.01em;
    caret-color: #fff;
    min-width: 0;
}

.kk-search-overlay__input::placeholder {
    color: rgba(255,255,255,0.25);
}

.kk-search-overlay__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    border: none;
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
}

.kk-search-overlay__close:hover {
    background: rgba(255,255,255,0.18);
    color: #fff;
}

.kk-search-overlay__hint {
    margin-top: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.03em;
}

.kk-search-overlay__hint kbd {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 11px;
    font-family: inherit;
    color: rgba(255,255,255,0.5);
}

/* Hide old search form styles when trigger is used */
.site-search { display: none; }

/* Mobile topbar */
@media (max-width: 767px) {
    .kk-topbar__promo,
    .kk-topbar__divider { display: none; }
    .kk-topbar__inner { padding: 0 16px; }
    .kk-search-overlay__input { font-size: 20px; }
}

/* ── Site Header — full-width sticky bar ──────────────── */
.site-header {
    background: var(--kk-black);
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--kk-header-h);
    width: 100%;
}

.site-header .col-full {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 16px;
    height: 100%;
    position: relative;
    max-width: 1400px;   /* wider than content — premium feel */
    margin: 0 auto;
    padding: 0 32px;
}

/* Branding — absolute center */
.site-branding {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}
.site-branding a,
.site-branding h1,
.site-branding p {
    pointer-events: auto;
}

.site-branding .custom-logo-link {
    display: flex;
    align-items: center;
}

.site-branding .custom-logo {
    height: 52px;
    width: auto;
    display: block;
}

.site-name-link {
    color: var(--kk-white);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
}

/* Search form — hidden, replaced by overlay trigger */
.site-search {
    display: none;
}

.kk-search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: border-color 0.2s, background 0.2s;
    height: 38px;
}

.kk-search-form:focus-within {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.4);
}

.kk-search-input {
    background: none;
    border: none;
    outline: none;
    color: var(--kk-white);
    font-size: 13px;
    padding: 0 10px 0 16px;
    width: 220px;
    height: 100%;
    font-family: var(--kk-font);
}

.kk-search-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.kk-search-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.65);
    padding: 0 14px 0 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
    transition: color 0.15s;
}

.kk-search-btn:hover {
    color: var(--kk-white);
}

/* Account icon — sits between Search and Cart, no auto margin */
.site-header-account {
    z-index: 2;
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.kk-account-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.75);   /* white like cart */
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.kk-account-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Logged-in: letter avatar */
.kk-account-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    transition: background 0.15s, border-color 0.15s;
}

.kk-account-link:hover .kk-account-avatar {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Cart */
.site-header-cart {
    z-index: 2;
    margin-left: 4px;
}

.kk-cart-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--kk-white);
    text-decoration: none;
    padding: 6px;
    position: relative;
    transition: opacity 0.15s;
}

.kk-cart-link:hover {
    opacity: 0.75;
    color: var(--kk-white);
}

.kk-cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    background: var(--kk-red);
    color: var(--kk-white);
    font-size: 11px;
    font-weight: 700;
    border-radius: 100px;
    line-height: 1;
}

.kk-cart-count--empty {
    background: rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════════════════════
   SITE FOOTER — full-bleed dark, contained content
   ═══════════════════════════════════════════════════════ */
.site-footer {
    width: 100%;
    background: var(--kk-dark);
    color: #e4e4e4;
    font-size: 15px;
    margin-top: auto;
}

/* ── Widgets row ─────────────────────────────────────── */
.footer-widgets {
    width: 100%;
    padding: 72px 0 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-widgets .col-full {
    display: block;
}

.footer-widgets-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 60px;
}

/* ── Widget titles ───────────────────────────────────── */
.site-footer .widget-title,
.site-footer .widgettitle {
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 14px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ── Payment logos (Visa, Mastercard κλπ) — πάντα δίπλα-δίπλα ── */
.site-footer .alignleft {
    float: left !important;
    display: inline-block !important;
    margin: 0 8px 8px 0 !important;
    clear: none !important;
}

/* clearfix για το widget που περιέχει τα logos */
.site-footer .textwidget::after,
.site-footer .widget_text::after {
    content: '';
    display: table;
    clear: both;
}

/* ── Links ───────────────────────────────────────────── */
.site-footer a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.18s;
}

.site-footer a:hover {
    color: #fff;
}

/* ── List items (ΠΛΗΡΟΦΟΡΙΕΣ links) ─────────────────── */
.site-footer p,
.site-footer li {
    font-size: 15px;
    line-height: 1.7;
    color: #a0a0a0;
}

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

.site-footer ul li {
    padding: 5px 0;
    border: none;
    display: flex;
    align-items: center;
    gap: 0;
}

/* Document icon before each nav link */
.site-footer ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #a0a0a0;
    transition: color 0.18s;
}

.site-footer ul li a::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 16px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.6;
    transition: opacity 0.18s;
}

.site-footer ul li a:hover::before {
    opacity: 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3C/svg%3E");
}

.site-footer ul li a:hover {
    color: #fff;
}

/* ── Bottom bar ──────────────────────────────────────── */
.footer-bottom {
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom .col-full {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.site-info {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.site-info a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
}

/* "Powered by" link — right side */
.kk-powered-by {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.18s;
}

.kk-powered-by:hover {
    color: var(--kk-red);
    text-decoration: none;
}

/* ── Footer mobile ───────────────────────────────────── */
@media (max-width: 900px) {
    .footer-widgets-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-widget-1 {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .footer-widgets-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-widget-1 {
        grid-column: auto;
    }
    .footer-widgets {
        padding: 48px 0 36px;
    }
}

.site-info a {
    color: rgba(255, 255, 255, 0.55);
}

.site-info a:hover {
    color: var(--kk-white);
}

.footer-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-nav__list a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    transition: color 0.2s;
}

.footer-nav__list a:hover {
    color: var(--kk-white);
}

/* ── Buttons ──────────────────────────────────────────── */
.kk-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--kk-black);
    color: var(--kk-white);
    font-size: 12px;
    font-weight: 700;
    font-family: var(--kk-font);
    letter-spacing: 0.09em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    border: 2px solid var(--kk-black);
}

.kk-btn:hover {
    background: var(--kk-dark);
    color: var(--kk-white);
    text-decoration: none;
    transform: translateY(-1px);
}

.kk-btn--outline {
    background: transparent;
    color: var(--kk-black);
    border-color: var(--kk-black);
}

.kk-btn--outline:hover {
    background: var(--kk-black);
    color: var(--kk-white);
}

/* ── Homepage custom sections ─────────────────────────── */
.free-shipping {
    padding: 10px 25px;
    background: var(--kk-dark);
    color: var(--kk-white);
    font-size: 22px;
    text-align: center;
}

/* Featured categories */
ul.featured-categories {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 14px;
}

ul.featured-categories li {
    flex: 1;
    position: relative;
    overflow: hidden;
}

ul.featured-categories li img {
    width: 100%;
    display: block;
}

ul.featured-categories li span {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 18px;
    color: var(--kk-white);
    transition: all 0.3s ease-out;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 0;
}

ul.featured-categories li:hover span {
    background: rgba(0, 0, 0, 0.55);
    font-size: 22px;
}

/* 4-column list */
ul.col-4 {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

ul.col-4 li {
    width: 25%;
    list-style: none;
}

/* Services */
ul.services {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.services li {
    border: 20px solid var(--kk-white);
    padding: 20px 10px;
    font-size: 12px;
    font-weight: normal;
}

ul.services li h3 {
    margin-bottom: 5px;
    color: var(--kk-red);
    line-height: 22px;
}

/* Contact info */
.contact-info {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.contact-info > div {
    flex: 1;
    min-width: 280px;
}

.contact-info strong {
    display: inline-block;
    margin-top: 10px;
}

.contact-info textarea {
    width: 100%;
    height: 150px;
}

/* ── WooCommerce global notices ───────────────────────── */
.woocommerce-message,
.woocommerce-info {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: #1a1a1a !important;
    color: #fff !important;
    border: none !important;
    border-top: none !important;
    border-radius: 10px !important;
    padding: 14px 20px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12) !important;
}

/* Hide default WC arrow icon */
.woocommerce-message::before,
.woocommerce-info::before {
    display: none !important;
}

/* "Προβολή καλαθιού" / other action links inside message */
.woocommerce-message a.button,
.woocommerce-message a.wc-forward {
    display: inline-flex !important;
    align-items: center !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
    padding: 7px 14px !important;
    background: transparent !important;
    border: 1.5px solid rgba(255,255,255,0.4) !important;
    border-radius: 7px !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    letter-spacing: 0.03em !important;
    white-space: nowrap !important;
    transition: background 0.15s, border-color 0.15s !important;
}

.woocommerce-message a.button:hover,
.woocommerce-message a.wc-forward:hover {
    background: rgba(255,255,255,0.12) !important;
    border-color: rgba(255,255,255,0.7) !important;
    color: #fff !important;
    text-decoration: none !important;
}

/* Error notices — ίδιο style με message/info (μαύρο) */
.woocommerce-error {
    display: block !important;
    background: #1a1a1a !important;
    color: #fff !important;
    border: none !important;
    border-top: none !important;
    border-radius: 10px !important;
    padding: 0 !important;
    margin-bottom: 20px !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12) !important;
    list-style: none !important;
}

.woocommerce-error li {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 14px 20px !important;
    color: #fff !important;
    list-style: none !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
}

.woocommerce-error::before,
.woocommerce-error li::before {
    display: none !important;
}

/* Κουμπί μέσα στο error — ίδιο με woocommerce-message */
.woocommerce-error a.button,
.woocommerce-error a.wc-forward {
    display: inline-flex !important;
    align-items: center !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
    padding: 7px 14px !important;
    background: transparent !important;
    border: 1.5px solid rgba(255,255,255,0.4) !important;
    border-radius: 7px !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    letter-spacing: .03em !important;
    white-space: nowrap !important;
    transition: background .15s, border-color .15s !important;
}

.woocommerce-error a.button:hover,
.woocommerce-error a.wc-forward:hover {
    background: rgba(255,255,255,0.12) !important;
    border-color: rgba(255,255,255,0.7) !important;
    color: #fff !important;
    text-decoration: none !important;
}

/* ═══════════════════════════════════════════════════════
   PRODUCT CARDS — shop, category, related, upsells
   Ported from storefront-child/assets/css/product-single.css
   ═══════════════════════════════════════════════════════ */

/* ── Grid layout ─────────────────────────────────────── */
ul.products,
.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    grid-auto-rows: auto !important;
    grid-auto-flow: dense !important;
    gap: 20px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 32px !important;
    align-items: start !important;
    float: none !important;
    clear: both !important;
}

/* Kill clearfix pseudo-elements — they become ghost grid cells */
ul.products::before,
ul.products::after {
    display: none !important;
    content: none !important;
}

/* Any non-product child of the grid (notices, forms, etc.)
   must NOT take a grid cell */
ul.products > *:not(li.product) {
    display: none !important;
}

.site-content--with-sidebar ul.products,
.site-content--with-sidebar .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
}

.related ul.products,
.up-sells ul.products {
    grid-template-columns: repeat(4, 1fr) !important;
}

/* ── Individual card ──────────────────────────────────── */
ul.products li.product {
    align-self: start !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #efefef !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background: #fff !important;
    display: flex !important;
    flex-direction: column !important;
    float: none !important;
    width: auto !important;
    transition: border-color .2s, box-shadow .2s;
}

ul.products li.product:hover {
    border-color: #ddd !important;
    box-shadow: 0 6px 24px rgba(0,0,0,.07) !important;
}

/* ── Image ────────────────────────────────────────────── */
ul.products li.product a img,
ul.products li.product .attachment-woocommerce_thumbnail {
    aspect-ratio: 1 / 1 !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    background: #fff !important;
    padding: 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid #efefef !important;
}

/* ── Inner link wrapper ───────────────────────────────── */
ul.products li.product a.woocommerce-loop-product__link {
    display: flex !important;
    flex-direction: column !important;
    text-decoration: none !important;
    padding: 0 !important;
    flex: 1 !important;
}

/* ── Title ────────────────────────────────────────────── */
ul.products li.product h2.woocommerce-loop-product__title {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #1a1a1a !important;
    line-height: 1.55 !important;
    margin: 0 !important;
    padding: 12px 14px 6px !important;
    min-height: 54px !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
}

/* ── Price ────────────────────────────────────────────── */
ul.products li.product .price {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    display: block !important;
    margin: 0 !important;
    padding: 2px 14px 8px !important;
}

ul.products li.product .price del {
    color: var(--kk-gray) !important;
    font-weight: 400 !important;
    font-size: 13px !important;
}

ul.products li.product .price ins {
    color: var(--kk-red) !important;
    text-decoration: none !important;
    font-weight: 700 !important;
}

/* ── Add to cart button ───────────────────────────────── */
ul.products li.product .button {
    display: block !important;
    margin: 4px 14px 14px !important;
    padding: 10px 14px !important;
    text-align: center !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    color: #1a1a1a !important;
    background: transparent !important;
    border: 1.5px solid #d8d8d8 !important;
    border-radius: 5px !important;
    text-decoration: none !important;
    transition: background .15s, color .15s, border-color .15s !important;
    box-sizing: border-box !important;
    width: auto !important;
}

ul.products li.product .button:hover {
    background: #1a1a1a !important;
    color: #fff !important;
    border-color: #1a1a1a !important;
}

/* ── "View cart" link inside product cards — hidden ──── */
ul.products li.product a.added_to_cart.wc-forward,
.woocommerce ul.products li.product a.added_to_cart.wc-forward,
.woocommerce-page ul.products li.product a.added_to_cart.wc-forward {
    display: none !important;
}

/* ── Sale badge ───────────────────────────────────────── */
ul.products li.product .onsale {
    background: var(--kk-red) !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 4px 8px !important;
    border-radius: 3px !important;
    top: 10px !important;
    left: 10px !important;
    margin: 0 !important;
    line-height: 1 !important;
    min-height: auto !important;
    min-width: auto !important;
}

/* ── Compare button ───────────────────────────────────── */
.products li {
    position: relative;
}

.products li .compare.button {
    position: absolute;
    top: 8px;
    right: 8px;
    display: none;
    background-color: rgba(255,255,255,0.85) !important;
    border: 1px solid #ddd !important;
    font-size: 11px !important;
    padding: 4px 8px !important;
    width: auto !important;
    margin: 0 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.products li .compare.button:hover {
    background-color: #fff !important;
}

.products li:hover .compare.button {
    display: block;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
    ul.products,
    .related ul.products,
    .up-sells ul.products,
    .site-content--with-sidebar ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Float override για WC shortcodes (columns-4 κλπ) */
    ul.products li.product {
        width: 50% !important;
        float: left !important;
    }
}

@media (max-width: 767px) {
    ul.products,
    ul.products.columns-1,
    ul.products.columns-2,
    ul.products.columns-3,
    ul.products.columns-4,
    ul.products.columns-5,
    .related ul.products,
    .up-sells ul.products,
    .site-content--with-sidebar ul.products {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        float: none !important;
    }

    /* Float reset για όλα τα li.product */
    ul.products li.product {
        width: 100% !important;
        float: none !important;
        clear: none !important;
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    ul.products,
    .related ul.products,
    .up-sells ul.products,
    .site-content--with-sidebar ul.products {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    ul.products li.product {
        width: 100% !important;
        float: none !important;
    }
}

/* Brand logos */
.pwb-single-product-brands {
    margin-top: 10px;
}

/* ═══════════════════════════════════════════════════════
   SINGLE PRODUCT PAGE
   ═══════════════════════════════════════════════════════ */

/* ── Breadcrumb wrapper ───────────────────────────────── */
.kk-breadcrumb-wrap {
    margin-bottom: 32px;
}

/* Single product page — λιγότερο padding πάνω από breadcrumb */
body.single-product .site-content,
body.single-product .site-content.site-content {
    padding-top: 16px !important;
}

/* ── Breadcrumb nav ───────────────────────────────────── */
.woocommerce-breadcrumb {
    font-size: 12px !important;
    color: #aaa !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    line-height: 1.5 !important;
}

.woocommerce-breadcrumb a {
    color: #888 !important;
    text-decoration: none !important;
}

.woocommerce-breadcrumb a:hover {
    color: #1a1a1a !important;
    text-decoration: underline !important;
}

.woocommerce-breadcrumb .breadcrumb-separator {
    color: #ccc !important;
    margin: 0 2px !important;
}

/* Τελευταίο item (τρέχουσα σελίδα) — σκούρο */
.woocommerce-breadcrumb > a:last-of-type,
.woocommerce-breadcrumb {
    color: #666 !important;
}

/* ══════════════════════════════════════════════════════════
   SINGLE PRODUCT — GALLERY IMAGES
   aspect-ratio: 1/1 στο CONTAINER → ίδιο ύψος πάντα
   object-fit: contain → εικόνα ολόκληρη, χωρίς crop
   ══════════════════════════════════════════════════════════ */

/* Container 1:1 — κρίσιμο για ίδιο ύψος σε όλες τις εικόνες */
.woocommerce-product-gallery__image,
.woocommerce-product-gallery__image a,
.woocommerce-product-gallery .flex-viewport {
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
}

/* Thumbnails container */
.woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
    aspect-ratio: 1 / 1 !important;
}

/* Κύρια εικόνα — γεμίζει το container χωρίς crop */
.woocommerce-product-gallery__image img,
.woocommerce-product-gallery .flex-viewport img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
}

/* Zoom image background */
.single-product div.product .woocommerce-product-gallery .zoomImg {
    background-color: #fff !important;
}

/* Margin reset */
.single-product div.product .woocommerce-product-gallery img {
    margin: 0 !important;
}

/* Καμία εικόνα δεν έχει border-radius */
img {
    border-radius: 0 !important;
}

/* ══════════════════════════════════════════════════════════
   SINGLE PRODUCT — CSS GRID LAYOUT
   gallery | summary στην ίδια σειρά, tabs κάτω full-width
   ══════════════════════════════════════════════════════════ */

.single-product div.product {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 48px !important;
    align-items: start !important;
}

/* Gallery — αριστερή στήλη */
.single-product .woocommerce-product-gallery {
    grid-column: 1 !important;
    grid-row: 1 !important;
    float: none !important;
    width: auto !important;
    max-width: none !important;
}

/* Summary — δεξιά στήλη, φυσικό ύψος */
.single-product .summary.entry-summary {
    grid-column: 2 !important;
    grid-row: 1 !important;
    float: none !important;
    width: auto !important;
    align-self: start !important;
}

/* Tabs, Related, Upsells — full width κάτω */
.single-product .kk-product-tabs,
.single-product .woocommerce-tabs,
.single-product .related.products,
.single-product .up-sells.products,
.single-product .woocommerce-product-reviews__wrapper {
    grid-column: 1 / -1 !important;
    float: none !important;
    clear: none !important;
    width: auto !important;
}

/* ══════════════════════════════════════════════════════════
   SINGLE PRODUCT — SUMMARY COLUMN
   ══════════════════════════════════════════════════════════ */

/* ── Zoom trigger — magnifying glass + plus (Storefront style) */
.woocommerce-product-gallery__trigger {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    z-index: 99 !important;
    width: 36px !important;
    height: 36px !important;
    background-color: rgba(255,255,255,.9) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle cx='13' cy='13' r='7.5' fill='none' stroke='%23555' stroke-width='2'/%3E%3Cline x1='13' y1='9.5' x2='13' y2='16.5' stroke='%23555' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='9.5' y1='13' x2='16.5' y2='13' stroke='%23555' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='18.5' y1='18.5' x2='25' y2='25' stroke='%23555' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 22px 22px !important;
    border: none !important;
    border-radius: 4px !important;
    box-shadow: 0 1px 5px rgba(0,0,0,.2) !important;
    cursor: zoom-in !important;
    text-decoration: none !important;
    transition: box-shadow .15s, background-color .15s !important;
}

.woocommerce-product-gallery__trigger:hover {
    background-color: #fff !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.3) !important;
}

/* Κρύβουμε το WC default content */
.woocommerce-product-gallery__trigger img,
.woocommerce-product-gallery__trigger::before,
.woocommerce-product-gallery__trigger::after {
    display: none !important;
}

/* ── Thumbnails: 4 ανά σειρά, pure CSS ───────────────── */
.flex-control-thumbs {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 8px !important;
    margin-top: 8px !important;
    padding: 0 !important;
}

.flex-control-thumbs li {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
}

/* Κρύβει 5ο thumbnail και μετά */
.flex-control-thumbs li:nth-child(n+5) {
    display: none !important;
}

.flex-control-thumbs li img {
    width: 100% !important;
    height: 80px !important;
    object-fit: cover !important;
    border-radius: 4px !important;
    border: 2px solid transparent !important;
    cursor: pointer !important;
    transition: border-color .15s !important;
    display: block !important;
}

.flex-control-thumbs li img.flex-active,
.flex-control-thumbs li img:hover {
    border-color: #1a1a1a !important;
}

/* "+N" overlay — injected via JS (footer script, non-blocking) */
.kk-thumb-more {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0,0,0,.50) !important;
    color: #fff !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    pointer-events: none !important;
}

/* Τίτλος */
.single-product .summary .product_title {
    font-size: 26px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin: 0 0 48px !important;
    color: #1a1a1a !important;
}

/* ── Τιμή ─────────────────────────────────────────────── */
.single-product .summary .price {
    color: #1a1a1a !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    margin: 0 0 40px !important;
    line-height: 1 !important;
}

.single-product .summary .price del {
    color: #aaa !important;
    font-size: 18px !important;
    font-weight: 400 !important;
}

.single-product .summary .price ins {
    color: var(--kk-red) !important;
    text-decoration: none !important;
}

/* ── Stock status ─────────────────────────────────────── */
.single-product .stock {
    font-size: 13px !important;
    font-weight: 600 !important;
    margin: 0 0 40px !important;
    padding: 0 !important;
}

.single-product .stock.in-stock {
    color: #3a7c3a !important;
}

.single-product .stock.out-of-stock {
    color: #c0392b !important;
}

/* ── Quantity + button ────────────────────────────────── */
.single-product form.cart {
    margin: 0 0 52px !important;
}

/* ── Product meta (SKU, Categories) ──────────────────── */
.single-product .product_meta {
    margin: 0 !important;
    padding-top: 36px !important;
    border-top: 1px solid #efefef !important;
    font-size: 13px !important;
    color: #666 !important;
}

/* Κάθε γραμμή σε δική της σειρά */
.single-product .product_meta > span {
    display: block !important;
    margin-bottom: 8px !important;
    line-height: 1.5 !important;
}

.single-product .product_meta > span:last-child {
    margin-bottom: 0 !important;
}

/* Label */
.single-product .product_meta .sku_wrapper,
.single-product .product_meta .posted_in,
.single-product .product_meta .tagged_as {
    display: block !important;
    color: #999 !important;
}

/* SKU value */
.single-product .product_meta .sku {
    color: #1a1a1a !important;
    font-weight: 600 !important;
}

/* Category/tag links */
.single-product .product_meta a {
    color: #1a1a1a !important;
    text-decoration: none !important;
    font-weight: 600 !important;
}

.single-product .product_meta a:hover {
    color: var(--kk-red) !important;
    text-decoration: underline !important;
}

/* ── Quantity + Add to cart — ίδιο ύψος, aligned ────────── */
.single-product form.cart {
    display: flex !important;
    align-items: stretch !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
}

.single-product form.cart .quantity {
    display: flex !important;
    align-items: stretch !important;
    margin: 0 !important;
}

.single-product form.cart .quantity input.qty {
    height: 48px !important;
    width: 64px !important;
    padding: 0 10px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    border: 2px solid #1a1a1a !important;
    border-radius: 5px !important;
    background: #fff !important;
    text-align: center !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

/* ── Add to cart button (solid black) ─────────────────── */
.single-product .single_add_to_cart_button,
.woocommerce .single-product .single_add_to_cart_button {
    height: 48px !important;
    padding: 0 32px !important;
    background: #1a1a1a !important;
    background-image: none !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    border: 2px solid #1a1a1a !important;
    border-radius: 5px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: .02em !important;
    text-transform: none !important;
    transition: background .15s, color .15s, border-color .15s !important;
    cursor: pointer !important;
    box-shadow: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    box-sizing: border-box !important;
    flex: 1 !important;
}

.single-product .single_add_to_cart_button:hover,
.woocommerce .single-product .single_add_to_cart_button:hover {
    background: #333 !important;
    background-image: none !important;
    border-color: #333 !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* ── "Προβολή καλαθιού" link (after add-to-cart) ─────── */
a.added_to_cart.wc-forward,
.woocommerce a.added_to_cart.wc-forward,
.single-product a.added_to_cart.wc-forward {
    display: inline-block !important;
    margin: 12px 0 0 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    text-decoration: underline !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    width: auto !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

a.added_to_cart.wc-forward:hover,
.woocommerce a.added_to_cart.wc-forward:hover {
    color: var(--kk-red) !important;
    background: transparent !important;
}

/* ── Hide default WooCommerce tabs (custom template used) */
.woocommerce-tabs {
    display: none !important;
}

/* ── KK Product Tabs — custom template ────────────────── */
/* Ported exactly from storefront-child/assets/css/product-single.css */

.kk-product-tabs {
    width: 100%;
    margin-top: 56px;
    clear: both;
}

.kk-product-tabs__nav {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 0;
}

.kk-product-tabs__btn {
    padding: 15px 28px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: #aaa;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    cursor: pointer;
    transition: color .2s, border-color .2s;
    font-family: inherit;
}

.kk-product-tabs__btn:hover {
    color: #1a1a1a;
}

.kk-product-tabs__btn.active {
    color: #1a1a1a;
    border-bottom-color: #1a1a1a;
}

.kk-product-tabs__panel {
    display: none;
    padding: 36px 0;
}

.kk-product-tabs__panel.active {
    display: block;
}

/* Panel inner card */
.kk-product-tabs__panel > div,
.kk-product-tabs__panel > p,
.kk-product-tabs__panel > ul,
.kk-product-tabs__panel > table {
    background: #fafafa;
    border: 1px solid #efefef;
    border-radius: 8px;
    padding: 28px 32px;
    box-sizing: border-box;
}

.kk-product-tabs__panel p {
    font-size: 14px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 8px;
}

.kk-product-tabs__panel ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.kk-product-tabs__panel ul li {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    padding: 10px 0;
    border-bottom: 1px solid #ebebeb;
    display: flex;
    align-items: center;
    gap: 12px;
}

.kk-product-tabs__panel ul li:last-child {
    border-bottom: none;
}

.kk-product-tabs__panel ul li::before {
    content: '';
    width: 5px;
    height: 5px;
    min-width: 5px;
    border-radius: 50%;
    background: #cc0000;
    flex-shrink: 0;
}

/* Additional information table */
.kk-product-tabs__panel .woocommerce-product-attributes {
    width: 100% !important;
    border-collapse: collapse !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

.kk-product-tabs__panel .woocommerce-product-attributes th,
.kk-product-tabs__panel .woocommerce-product-attributes td {
    padding: 11px 16px 11px 0 !important;
    font-size: 13px !important;
    border: none !important;
    border-bottom: 1px solid #ebebeb !important;
    text-align: left !important;
    vertical-align: top !important;
    background: none !important;
}

.kk-product-tabs__panel .woocommerce-product-attributes th {
    font-weight: 700 !important;
    color: #1a1a1a !important;
    width: 220px !important;
}

.kk-product-tabs__panel .woocommerce-product-attributes td {
    color: #555 !important;
}

.kk-product-tabs__panel .woocommerce-product-attributes tr:last-child th,
.kk-product-tabs__panel .woocommerce-product-attributes tr:last-child td {
    border-bottom: none !important;
}

/* Brand tab */
#tab-pwb_tab-content {
    display: flex !important;
    align-items: center !important;
    gap: 28px !important;
}

#tab-pwb_tab-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

#tab-pwb_tab-content img {
    width: 90px !important;
    height: auto !important;
    object-fit: contain;
}

/* ── Blog post styles ─────────────────────────────────── */
.kk-post {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--kk-border);
}

.kk-post:last-of-type {
    border-bottom: none;
}

.kk-post .entry-thumbnail {
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
}

.kk-post .entry-thumbnail img {
    width: 100%;
    display: block;
    transition: transform 0.3s;
}

.kk-post .entry-thumbnail:hover img {
    transform: scale(1.02);
}

.kk-post .entry-title {
    font-size: 22px;
    margin-bottom: 8px;
}

.kk-post .entry-title a {
    color: var(--kk-black);
}

.kk-post .entry-title a:hover {
    color: var(--kk-red);
}

.kk-post .entry-meta {
    font-size: 12px;
    color: var(--kk-gray);
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
}

.kk-post--archive {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.kk-post--archive .post-thumbnail {
    flex-shrink: 0;
    width: 200px;
}

.kk-post--archive .post-thumbnail img {
    width: 100%;
    border-radius: 4px;
    display: block;
}

.kk-post--archive .post-content {
    flex: 1;
}

/* ── Page navigation ──────────────────────────────────── */
.posts-navigation,
.post-navigation {
    margin: 32px 0;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

/* ── Skip link ────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100px;
    left: 12px;
    z-index: 99999;
    background: var(--kk-black);
    color: var(--kk-white);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 12px;
}

/* ── Sidebar widgets ──────────────────────────────────── */
.widget-area .widget {
    margin-bottom: 32px;
}

.widget-area .widget-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--kk-black);
    border-bottom: 2px solid var(--kk-black);
    padding-bottom: 8px;
    margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

/* ── Tablet ──────────────────────────────────────────── */
@media (max-width: 1100px) {
    :root {
        --kk-pad-x:    24px;
        --kk-sidebar-w: 200px;
    }

    .footer-widgets-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    /* Single product: tighter gap on tablet */
    .single-product div.product {
        gap: 32px !important;
    }
}

/* ── Mobile ──────────────────────────────────────────── */
@media (max-width: 767px) {
    :root {
        --kk-header-h:  64px;
        --kk-pad-x:     var(--kk-pad-x-sm);
        --kk-gap:       20px;
    }

    .site-header .col-full {
        gap: 8px;
        padding: 0 16px;
    }

    /* Κρύβουμε profile/search/cart από header — υπάρχουν στο bottom bar */
    .site-header .kk-search-trigger,
    .site-header .site-header-account,
    .site-header .site-header-cart {
        display: none !important;
    }

    .kk-search-input {
        width: 120px;
        font-size: 12px;
    }

    /* Stack sidebar below content on mobile */
    .site-content .col-full,
    .site-content--with-sidebar .col-full {
        flex-direction: column;
    }

    .kk-shop-sidebar,
    .widget-area {
        width: 100%;
        order: 2;
    }

    .content-area {
        order: 1;
        width: 100%;
    }

    /* Hide blog sidebar on mobile — keeps reading clean */
    #secondary {
        display: none;
    }

    .kk-post--archive {
        flex-direction: column;
    }

    .kk-post--archive .post-thumbnail {
        width: 100%;
    }

    ul.col-4 li {
        width: 50%;
    }

    .footer-widgets-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    ul.featured-categories {
        flex-direction: column;
    }

    /* ── Single product: stack gallery above summary ──── */
    .single-product div.product {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .single-product .woocommerce-product-gallery {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }

    .single-product .summary.entry-summary {
        grid-column: 1 !important;
        grid-row: 2 !important;
        justify-content: flex-start !important;
    }

    .single-product .kk-product-tabs,
    .single-product .woocommerce-tabs,
    .single-product .related.products,
    .single-product .up-sells.products {
        grid-column: 1 !important;
    }

    .single-product .summary .product_title {
        font-size: 22px !important;
    }

    .single-product .summary .price {
        font-size: 22px !important;
    }
}

@media (max-width: 480px) {
    .col-full {
        padding: 0 16px;
    }

    ul.col-4 li {
        width: 100%;
    }

    .kk-search-form {
        display: none; /* hide search on very small screens */
    }
}

/* ═══════════════════════════════════════════════════════
   ADD TO CART — BUTTON STATE: "Προβολή Καλαθιού"
   ═══════════════════════════════════════════════════════ */

/* Κουμπί μετά την προσθήκη — γίνεται outline style */
a.kk-btn-view-cart {
    display: block !important;
    width: 100% !important;
    padding: 10px 16px !important;
    background: transparent !important;
    color: #1a1a1a !important;
    border: 2px solid #1a1a1a !important;
    border-radius: 6px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    text-align: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: background .2s, color .2s !important;
}

a.kk-btn-view-cart:hover {
    background: #1a1a1a !important;
    color: #fff !important;
}

/* ═══════════════════════════════════════════════════════
   ADD TO CART — TOAST NOTIFICATION
   ═══════════════════════════════════════════════════════ */

.kk-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,.22);
    max-width: 340px;
    min-width: 260px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none;
}

.kk-toast--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Checkmark icon */
.kk-toast__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #2ecc71;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* Text area */
.kk-toast__body {
    flex: 1;
    min-width: 0;
}

.kk-toast__msg {
    font-size: 13px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    color: #fff;
}

.kk-toast__product {
    font-size: 11px;
    color: rgba(255,255,255,.65);
    margin: 2px 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* "Δείτε το καλάθι" button */
.kk-toast__btn {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    color: #1a1a1a;
    background: #fff;
    border-radius: 100px;
    padding: 6px 12px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s;
}

.kk-toast__btn:hover {
    background: #f0f0f0;
    color: #1a1a1a;
}

/* Close button */
.kk-toast__close {
    flex-shrink: 0;
    background: none;
    border: none;
    color: rgba(255,255,255,.5);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .15s;
}

.kk-toast__close:hover {
    color: #fff;
}

/* Mobile: toast πάνω από το bottom bar */
@media (max-width: 767px) {
    .kk-toast {
        bottom: 70px;
        right: 12px;
        left: 12px;
        max-width: none;
        min-width: 0;
    }
}

/* ═══════════════════════════════════════════════════════
   SCROLL TO TOP BUTTON
   ═══════════════════════════════════════════════════════ */

#kk-scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9000;
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,.22);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease, background .15s;
    pointer-events: none;
}

#kk-scroll-top.kk-scroll-top--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#kk-scroll-top:hover {
    background: #333;
}

/* ═══════════════════════════════════════════════════════
   MOBILE BOTTOM BAR
   Fixed bottom navigation bar — visible only on mobile
   ═══════════════════════════════════════════════════════ */

/* Hidden on desktop by default */
.kk-mobile-bar {
    display: none;
}

@media (max-width: 767px) {
    /* Show the bar */
    .kk-mobile-bar {
        display: flex;
        align-items: center;
        justify-content: space-around;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        height: 60px;
        background: #1a1a1a;
        border-top: 1px solid #333;
        padding: 0 8px;
        padding-bottom: env(safe-area-inset-bottom, 0); /* iPhone notch */
    }

    /* Each icon slot */
    .kk-mobile-bar__item {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1;
        height: 100%;
        color: #fff;
        background: none;
        border: none;
        cursor: pointer;
        text-decoration: none;
        position: relative;
        padding: 0;
        -webkit-tap-highlight-color: transparent;
    }

    .kk-mobile-bar__item:hover,
    .kk-mobile-bar__item:focus {
        color: #ccc;
        outline: none;
    }

    /* SVG icons */
    .kk-mobile-bar__item svg {
        width: 24px;
        height: 24px;
        stroke: currentColor;
    }

    /* Logged-in avatar circle */
    .kk-mobile-bar__avatar {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        background: #fff;
        color: #1a1a1a;
        border-radius: 50%;
        font-size: 13px;
        font-weight: 700;
        line-height: 1;
    }

    /* Cart link inside bar */
    .kk-mobile-bar__item .kk-cart-link {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        position: relative;
    }

    /* Cart badge */
    .kk-mobile-bar__item .kk-cart-count {
        position: absolute;
        top: -6px;
        right: -8px;
        background: #ff0000;
        color: #fff;
        border-radius: 50%;
        width: 18px;
        height: 18px;
        font-size: 10px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    .kk-mobile-bar__item .kk-cart-count--empty {
        display: none;
    }

    /* Push page content up so it doesn't hide behind the bar */
    body {
        padding-bottom: 60px;
    }

    /* Reset button default styles (search button) */
    button.kk-mobile-bar__item {
        -webkit-appearance: none !important;
        appearance: none !important;
        outline: none !important;
        border: none !important;
        border-radius: 0 !important;
        background: none !important;
        box-shadow: none !important;
    }

    /* Διακριτικές γραμμές ανάμεσα στα εικονίδια — με pseudo-element */
    .kk-mobile-bar__item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: rgba(255, 255, 255, 0.15);
        pointer-events: none;
    }

    /* ── Scroll-to-top: mobile — πάνω από το bottom bar ───── */
    #kk-scroll-top {
        bottom: 72px;
        right: 10px;
        width: 34px;
        height: 34px;
        border-radius: 8px;
    }

    /* ── reCAPTCHA: αόρατο, τέρμα κάτω-αριστερά, πίσω από το bar ── */
    .grecaptcha-badge {
        bottom: 0 !important;
        left: 0 !important;
        right: auto !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transform: scale(0.01) translateX(-99%) !important;
        transform-origin: bottom left !important;
        z-index: -1 !important;
    }

    iframe[title="reCAPTCHA"] {
        opacity: 0 !important;
        pointer-events: none !important;
    }
}
