* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fff;
    color: #111;
    font-family: 'Inter', sans-serif;
}

.page-wrap {
    width: 1400px;
    margin: 0 auto;
}

/* =========================================
   HEADER
========================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;
}

/* TOPBAR */

.topbar {
    height: 64px;

    background: #fff;

    border-bottom: 1px solid #f2f2f2;
}

.topbar-inner {
    height: 64px;

    display: flex;
    align-items: center;
}

/* LOGO */

.logo {
    margin-right: 60px;

    color: #111;
    text-decoration: none;

    font-size: 28px;
    font-weight: 800;
}

/* SEARCH */

.search-box {
    position: relative;

    width: 540px;
    height: 40px;
}

.search-box input {
    width: 100%;
    height: 40px;

    border: 1px solid #e9e9e9;

    padding: 0 48px 0 14px;

    outline: none;

    font-size: 14px;

    transition: border-color 0.2s ease;
}

.search-box input:focus {
    border-color: #0057b8;
}

.search-box button {
    position: absolute;
    top: 1px;
    right: 1px;

    width: 40px;
    height: 38px;

    border: none;
    background: transparent;

    color: #111;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: color 0.2s ease;
}

.search-box button svg {
    width: 18px;
    height: 18px;

    fill: currentColor;
}

.search-box button:hover {
    color: #0057b8;
}

/* PHONE */

.header-phone {
    margin-left: auto;
    margin-right: 28px;

    display: flex;
    align-items: center;
    gap: 8px;

    color: #111;

    transition: color 0.2s ease;
}

.header-phone svg {
    width: 18px;
    height: 18px;

    fill: currentColor;
}

.header-phone a {
    color: inherit;
    text-decoration: none;

    font-size: 15px;
    font-weight: 600;
}

.header-phone:hover {
    color: #0057b8;
}

/* ICONS */

.header-icons {
    display: flex;
    align-items: center;
    gap: 24px;
}

.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;

    color: #111;
    text-decoration: none;

    transition: color 0.2s ease;
}

.icon-box svg {
    width: 25px;
    height: 25px;

    fill: currentColor;
}

.icon-box span {
    margin-top: 3px;

    font-size: 11px;
    font-weight: 700;
}

.icon-box:hover {
    color: #0057b8;
}

/* CART */

.cart-svg-wrap {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -7px;
    right: -8px;

    width: 18px;
    height: 18px;

    border-radius: 50%;

    background: #111;
    color: #fff;

    font-size: 10px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   MAINMENU
========================================= */

.mainmenu {
    height: 46px;

    background: #0057b8;
}

.mainmenu-list {
    height: 46px;

    list-style: none;

    display: flex;
    align-items: center;
}

.mainmenu-list > li {
    position: relative;
}

.mainmenu-list > li > a {
    height: 46px;

    display: flex;
    align-items: center;
    gap: 6px;

    padding: 0 24px;

    color: #fff;
    text-decoration: none;

    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;

    transition: background 0.2s ease;
}

.mainmenu-list > li:hover > a {
    background: #004494;
}

/* DROPDOWN */

.dropdown-menu {
    position: absolute;
    top: 46px;
    left: 0;

    width: 250px;

    background: #fff;

    border: 1px solid #f2f2f2;

    list-style: none;

    opacity: 0;
    visibility: hidden;

    transform: translateY(8px);

    transition: 0.2s ease;

    z-index: 99999;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.dropdown-menu a {
    display: block;

    padding: 13px 16px;

    color: #111;
    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    border-bottom: 1px solid #f7f7f7;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.dropdown-menu a:hover {
    background: #f8f8f8;
    color: #0057b8;
}

/* =========================================
   MAIN CONTENT
========================================= */

.main-content {
    width: 1400px;
    margin: 0 auto;

    padding-top: 110px;
}

/* =========================================
   HERO
========================================= */

.hero-banner {
    position: relative;

    overflow: hidden;
}

.hero-banner img {
    width: 100%;

    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.32),
        rgba(0,0,0,0.04)
    );
}

.hero-content {
    position: absolute;

    top: 50%;
    left: 85px;

    transform: translateY(-50%);

    max-width: 560px;

    color: #fff;

    z-index: 2;
}

.hero-subtitle {
    display: inline-block;

    margin-bottom: 22px;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1.4px;
    text-transform: uppercase;

    opacity: 0.92;
}

.hero-content h1 {
    margin-bottom: 24px;

    font-size: 58px;
    line-height: 1.02;
    font-weight: 700;

    letter-spacing: -1.5px;
}

.hero-content p {
    max-width: 520px;

    margin-bottom: 36px;

    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;

    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 14px;
}

/* HERO BUTTONS */

.hero-btn {
    height: 42px;

    padding: 0 24px;

    background: #0057b8;
    color: #fff;

    border: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.7px;

    transition: background 0.2s ease;
}

.hero-btn:hover {
    background: #004494;
}

.hero-btn-light {
    background: rgba(255,255,255,0.14);

    border: 1px solid rgba(255,255,255,0.35);

    backdrop-filter: blur(3px);
}

.hero-btn-light:hover {
    background: rgba(255,255,255,0.22);
}

/* =========================================
   TRUST BAR
========================================= */

.trust-bar {
    padding: 16px 0;

    border-bottom: 1px solid #f6f6f6;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.trust-item {
    text-align: center;

    font-size: 12px;
    font-weight: 500;

    color: #444;
}

/* =========================================
   TOP OFFERS
========================================= */

.top-offers {
    padding: 110px 0 130px;
}

/* SECTION HEADER */

.section-header {
    position: relative;

    display: flex;
    justify-content: flex-end;
    align-items: center;

    margin-bottom: 44px;
}

.section-title {
    position: absolute;
    left: 50%;

    transform: translateX(-50%);

    font-size: 30px;
    font-weight: 700;

    letter-spacing: -1px;
}

.section-link {
    color: #111;
    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;

    transition: color 0.2s ease;
}

.section-link:hover {
    color: #0057b8;
}

/* =========================================
   PRODUCTS
========================================= */

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 24px;
}

.product-card {
    position: relative;

    background: #fff;

    border: 1px solid #f5f5f5;

    transition: border-color 0.2s ease;
}

.product-card:hover {
    border-color: #e9e9e9;

    box-shadow:
        0 6px 18px rgba(0,0,0,0.035);
}

/* BADGE */

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;

    z-index: 2;

    background: #111;
    color: #fff;

    padding: 4px 7px;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.4px;
}

/* PRODUCT IMAGE */

.product-image-link {
    display: block;

    overflow: hidden;
}

.product-image-link img {
    width: 100%;
    height: 290px;

    object-fit: contain;

    padding: 34px;

    transition: transform 0.35s ease;
}

.product-card:hover .product-image-link img {
    transform: scale(1.015);
}

/* PRODUCT INFO */

.product-info {
    padding: 18px;

    min-height: 200px;

    display: flex;
    flex-direction: column;

    align-items: flex-start;
}

.product-info h3 {
    margin-bottom: 18px;
}

.product-title-link {
    color: #111;
    text-decoration: none;

    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;

    transition: color 0.2s ease;
}

.product-card:hover .product-title-link {
    color: #0057b8;
}

/* PRICE */

.price {
    display: flex;
    align-items: baseline;
    gap: 7px;

    white-space: nowrap;

    margin-bottom: 22px;
}

.price-eur {
    color: #0057b8;

    font-size: 22px;
    font-weight: 700;

    letter-spacing: -0.5px;
}

.price-bgn {
    color: #777;

    font-size: 10px;
    font-weight: 500;
}

/* PRODUCT BUTTON */

.btn {
    margin-top: auto;

    margin-left: auto;
    margin-right: auto;

    width: auto;
    min-width: 78px;

    height: 34px;

    padding: 0 18px;

    background: #0057b8;
    color: #fff;

    border: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;

    transition: background 0.2s ease;
}

.btn:hover {
    background: #004494;
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
    background: #050505;
    color: #fff;
}

.footer-inner {
    width: 1400px;
    margin: 0 auto;

    padding: 70px 0;

    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr 1fr;

    gap: 60px;
}

.footer-col h4 {
    margin-bottom: 22px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #fff;
    text-decoration: none;

    font-size: 14px;
    line-height: 1.9;

    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #0057b8;
}

.footer-contact p {
    margin-bottom: 8px;

    font-size: 14px;
    line-height: 1.9;
}

/* SOCIALS */

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: #fff;
    color: #000;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.social-icons a:hover {
    background: #0057b8;
    color: #fff;
}

/* FOOTER BOTTOM */

.footer-bottom {
    border-top: 1px solid #151515;

    padding: 16px 0;

    color: #aaa;

    font-size: 13px;
}

/* =========================================
   SCROLL TOP
========================================= */

#scrollTopBtn {
    position: fixed;

    right: 28px;
    bottom: 28px;

    width: 52px;
    height: 52px;

    border: none;

    background: #0057b8;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: 0.25s ease;

    z-index: 99999;

    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

#scrollTopBtn svg {
    width: 20px;
    height: 20px;

    fill: currentColor;
}

#scrollTopBtn:hover {
    background: #004494;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

/* =========================================
   CATEGORY PAGE
========================================= */

.category-hero {
    padding: 50px 0 60px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 24px;

    font-size: 13px;
    color: #777;
}

.breadcrumbs a {
    color: #777;
    text-decoration: none;

    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: #0057b8;
}

.category-hero h1 {
    margin-bottom: 18px;

    font-size: 46px;
    font-weight: 700;

    letter-spacing: -1.5px;
}

.category-hero p {
    max-width: 760px;

    font-size: 15px;
    line-height: 1.9;

    color: #555;
}

/* =========================================
   CATEGORY LAYOUT
========================================= */

.category-layout {
    display: grid;
    grid-template-columns: 280px 1fr;

    gap: 50px;

    padding-bottom: 120px;
}

/* =========================================
   FILTERS
========================================= */

.category-filters {
    position: sticky;
    top: 130px;

    height: fit-content;
}

.category-filters h3 {
    margin-bottom: 28px;

    font-size: 18px;
    font-weight: 700;
}

.filter-group {
    padding-bottom: 26px;
    margin-bottom: 26px;

    border-bottom: 1px solid #f2f2f2;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group h4 {
    margin-bottom: 18px;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.8px;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 14px;

    font-size: 14px;
    color: #333;

    cursor: pointer;
}

.filter-group input[type="checkbox"] {
    width: 15px;
    height: 15px;

    accent-color: #0057b8;
}

/* =========================================
   TOOLBAR
========================================= */

.category-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 34px;
}

.products-count {
    font-size: 14px;
    color: #666;
}

.sort-form select {
    height: 40px;

    border: 1px solid #ececec;

    padding: 0 14px;

    background: #fff;

    outline: none;

    font-size: 13px;
    font-family: inherit;

    cursor: pointer;

    transition: border-color 0.2s ease;
}

.sort-form select:focus {
    border-color: #0057b8;
}

/* =========================================
   PAGINATION
========================================= */

.pagination {
    margin-top: 70px;

    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination a {
    min-width: 38px;
    height: 38px;

    padding: 0 14px;

    border: 1px solid #ececec;

    color: #111;
    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: 600;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.pagination a:hover,
.pagination a.active {
    background: #0057b8;
    border-color: #0057b8;

    color: #fff;
}

/* =========================================
   PRODUCT PAGE
========================================= */

.product-page {
    padding: 50px 0 130px;
}

.product-main {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    margin-top: 35px;
}

/* PRODUCT GALLERY */

.product-gallery {
    width: 100%;
}

.product-main-image {
    border: 1px solid #f2f2f2;
    background: #fff;
    padding: 50px;
}

.product-main-image img {
    width: 100%;
    height: 480px;
    object-fit: contain;
    display: block;
}

.product-thumbs {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.product-thumbs button {
    width: 92px;
    height: 92px;
    border: 1px solid #f2f2f2;
    background: #fff;
    padding: 10px;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.product-thumbs button:hover {
    border-color: #0057b8;
}

.product-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* PRODUCT SUMMARY */

.product-summary {
    padding-top: 20px;
}

.product-summary h1 {
    margin-bottom: 18px;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -1px;
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
    color: #666;
    font-size: 13px;
}

.product-short-desc {
    max-width: 540px;
    margin-bottom: 30px;
    color: #444;
    font-size: 15px;
    line-height: 1.9;
}

.product-page-price {
    margin-bottom: 32px;
}

.product-page-price .price-eur {
    font-size: 30px;
}

.product-page-price .price-bgn {
    font-size: 13px;
}

.product-buy-btn {
    width: 120px;
    height: 42px;
    background: #0057b8;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.2s ease;
}

.product-buy-btn:hover {
    background: #004494;
}

/* PRODUCT TABS */

.product-tabs {
    margin-top: 90px;
    border-top: 1px solid #f2f2f2;
}

.tabs-nav {
    display: flex;
    gap: 36px;
    border-bottom: 1px solid #f2f2f2;
}

.tabs-nav button {
    position: relative;
    height: 58px;
    border: none;
    background: transparent;
    color: #111;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.tabs-nav button.active::after,
.tabs-nav button:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: #0057b8;
}

.tab-content {
    padding: 38px 0 0;
}

.tab-panel {
    display: none;
    max-width: 900px;
}

.tab-panel.active {
    display: block;
}

.tab-panel p {
    margin-bottom: 18px;
    color: #444;
    font-size: 15px;
    line-height: 1.9;
}

/* SPECS */

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th,
.specs-table td {
    padding: 16px 18px;
    border-bottom: 1px solid #f2f2f2;
    text-align: left;
    font-size: 14px;
}

.specs-table th {
    width: 280px;
    color: #111;
    font-weight: 700;
}

.specs-table td {
    color: #555;
}

/* RELATED PRODUCTS */

.related-products {
    margin-top: 110px;
}

.gallery-open {
    width: 100%;
    border: none;
    background: transparent;
    cursor: zoom-in;
}

.product-thumbs button.active {
    border-color: #0057b8;
}

.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.82);
    z-index: 999999;

    display: none;
    align-items: center;
    justify-content: center;
}

.gallery-modal.show {
    display: flex;
}

.gallery-modal img {
    max-width: 88vw;
    max-height: 88vh;
    object-fit: contain;
}

.gallery-close {
    position: absolute;
    top: 28px;
    right: 36px;

    border: none;
    background: transparent;
    color: #fff;

    font-size: 42px;
    cursor: pointer;
}

/* =========================================
   GALLERY MODAL
========================================= */

.gallery-modal {
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,0.88);

    z-index: 999999;

    display: none;
    align-items: center;
    justify-content: center;
}

.gallery-modal.show {
    display: flex;
}

.gallery-modal img {
    max-width: 88vw;
    max-height: 88vh;

    object-fit: contain;
}

/* CLOSE */

.gallery-close {
    position: absolute;
    top: 24px;
    right: 34px;

    border: none;
    background: transparent;

    color: #fff;

    font-size: 42px;
    line-height: 1;

    cursor: pointer;

    opacity: 0.85;

    transition: opacity 0.2s ease;
}

.gallery-close:hover {
    opacity: 1;
}

/* ARROWS */

.gallery-arrow {
    position: absolute;
    top: 50%;

    transform: translateY(-50%);

    width: 54px;
    height: 54px;

    border: none;

    background: rgba(255,255,255,0.08);
    color: #fff;

    font-size: 34px;
    line-height: 1;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        background 0.2s ease,
        opacity 0.2s ease;
}

.gallery-arrow:hover {
    background: rgba(255,255,255,0.16);
}

.gallery-prev {
    left: 30px;
}

.gallery-next {
    right: 30px;
}

/* COUNTER */

.gallery-counter {
    position: absolute;
    bottom: 28px;
    left: 50%;

    transform: translateX(-50%);

    color: #fff;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 0.5px;

    opacity: 0.9;
}

/* PRODUCT TABS FULL WIDTH */

.product-tabs {
    width: 100%;
    max-width: 1400px;
    margin: 70px auto 0;
}

.tab-content {
    width: 100%;
}

.tab-panel {
    width: 100%;
}

/* DESCRIPTION */

.tab-panel.active {
    width: 100%;
}

.tab-panel p,
.tab-panel div,
.tab-panel {
    max-width: 1400px;
}

/* SPECS TABLE */

.specs-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.specs-table tr {
    border-bottom: 1px solid #e5e7eb;
}

.specs-table th,
.specs-table td {
    width: 50%;
    padding: 22px 18px;
    text-align: left;
    vertical-align: middle;
}

.specs-table th {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.specs-table td {
    font-size: 15px;
    color: #4b5563;
}

/* CATEGORY FILTER FORM */

.filters-form {
    display: block;
}

.price-filter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.price-filter-row input {
    width: 100%;
    height: 38px;

    border: 1px solid #ececec;

    padding: 0 10px;

    font-family: inherit;
    font-size: 13px;

    outline: none;
}

.price-filter-row input:focus {
    border-color: #0057b8;
}

.filter-submit-btn,
.filter-clear-btn {
    width: 100%;
    height: 38px;

    margin-top: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.filter-submit-btn {
    border: none;

    background: #0057b8;
    color: #fff;

    cursor: pointer;
}

.filter-submit-btn:hover {
    background: #004494;
}

.filter-clear-btn {
    border: 1px solid #ececec;

    background: #fff;
    color: #111;
}

.filter-clear-btn:hover {
    border-color: #0057b8;
    color: #0057b8;
}

/* =========================================
   CART PAGE
========================================= */

.cart-page {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

.cart-page h1 {
    margin-bottom: 40px;

    font-size: 34px;
    font-weight: 800;

    color: #111827;
}

.cart-table {
    width: 100%;

    border-collapse: collapse;

    background: #fff;
    border: 1px solid #ececec;
}

.cart-table th,
.cart-table td {
    padding: 22px 18px;

    border-bottom: 1px solid #ececec;

    text-align: left;
    vertical-align: middle;
}

.cart-table th {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;

    color: #111827;

    background: #f8fafc;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cart-product img {
    width: 90px;
    height: 90px;

    object-fit: contain;

    background: #fff;
    border: 1px solid #ececec;

    padding: 8px;
}

.cart-product a {
    color: #111827;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;
}

.cart-product a:hover {
    color: #0057b8;
}

.cart-table input[type="number"] {
    width: 90px;
    height: 42px;

    border: 1px solid #e5e7eb;

    padding: 0 12px;

    font-size: 14px;
    font-family: inherit;

    outline: none;
}

.cart-table input[type="number"]:focus {
    border-color: #0057b8;
}

.cart-remove {
    color: #b91c1c;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

.cart-remove:hover {
    text-decoration: underline;
}

.cart-actions {
    margin-top: 24px;
}

.cart-summary {
    width: 360px;

    margin-left: auto;
    margin-top: 50px;

    padding: 28px;

    border: 1px solid #ececec;
    background: #fff;
}

.cart-summary h2 {
    margin-bottom: 18px;

    font-size: 24px;
    font-weight: 800;

    color: #111827;
}

.cart-summary p {
    margin-bottom: 24px;

    font-size: 18px;
    color: #111827;
}

.cart-summary p strong {
    font-size: 28px;
    font-weight: 800;
}

.cart-summary span {
    display: block;

    margin-top: 6px;

    font-size: 14px;
    color: #6b7280;
}

/* CART EMPTY */

.cart-page p {
    color: #4b5563;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .cart-table thead {
        display: none;
    }

    .cart-table,
    .cart-table tbody,
    .cart-table tr,
    .cart-table td {
        display: block;
        width: 100%;
    }

    .cart-table tr {
        border-bottom: 1px solid #ececec;
        padding: 18px 0;
    }

    .cart-table td {
        border: none;
        padding: 10px 0;
    }

    .cart-summary {
        width: 100%;
    }

    .cart-product {
        align-items: flex-start;
    }

}

/* =========================================
   CART DROPDOWN
========================================= */

.cart-dropdown-wrap {
    position: relative;
}

.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;

    width: 360px;

    background: #fff;
    border: 1px solid #ececec;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: 0.2s ease;

    z-index: 100000;

    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.cart-dropdown-wrap:hover .cart-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-dropdown-empty {
    padding: 24px;

    font-size: 14px;
    color: #555;
}

.cart-dropdown-items {
    max-height: 320px;
    overflow-y: auto;
}

.cart-dropdown-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 14px;

    padding: 16px;

    border-bottom: 1px solid #f1f1f1;
}

.cart-dropdown-item img {
    width: 64px;
    height: 64px;

    object-fit: contain;

    border: 1px solid #f1f1f1;
    background: #fff;

    padding: 6px;
}

.cart-dropdown-item a {
    display: block;

    margin-bottom: 6px;

    color: #111;
    text-decoration: none;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.cart-dropdown-item a:hover {
    color: #0057b8;
}

.cart-dropdown-item span {
    font-size: 12px;
    color: #666;
}

.cart-dropdown-total {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 16px;

    border-bottom: 1px solid #f1f1f1;

    font-size: 14px;
}

.cart-dropdown-total strong {
    font-size: 18px;
    color: #0057b8;
}

.cart-dropdown-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.cart-dropdown-actions a {
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.cart-dropdown-actions a:first-child {
    background: #f8fafc;
    color: #111;
}

.cart-dropdown-actions a:first-child:hover {
    background: #f1f5f9;
}

.cart-dropdown-actions a:last-child {
    background: #0057b8;
    color: #fff;
}

.cart-dropdown-actions a:last-child:hover {
    background: #004494;
}

.cart-dropdown-item {
    position: relative;
}

.cart-dropdown-remove {
    position: absolute;
    top: 10px;
    right: 10px;

    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f3f4f6;

    color: #6b7280;

    text-decoration: none;

    font-size: 16px;
    font-weight: 700;

    transition: 0.2s ease;
}

.cart-dropdown-remove:hover {
    background: #fee2e2;
    color: #b91c1c;
}

/* =========================================
   CHECKOUT
========================================= */

.checkout-page {
    max-width: 1400px;
    margin: 60px auto 120px;
    padding: 0 20px;
}

.checkout-page h1 {
    margin-bottom: 40px;
    font-size: 34px;
    font-weight: 800;
    color: #111827;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: flex-start;
}

.checkout-panel,
.checkout-summary {
    background: #fff;
    border: 1px solid #ececec;
    padding: 28px;
}

.checkout-panel {
    margin-bottom: 24px;
}

.checkout-panel h2,
.checkout-summary h2 {
    margin-bottom: 24px;
    font-size: 22px;
    font-weight: 800;
    color: #111827;
}

.checkout-page .form-group {
    margin-bottom: 20px;
}

.checkout-page label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #111827;
}

.checkout-page input[type="text"],
.checkout-page input[type="email"],
.checkout-page textarea {
    width: 100%;
    height: 42px;
    border: 1px solid #e5e7eb;
    padding: 0 12px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.checkout-page textarea {
    height: 110px;
    padding: 12px;
    resize: vertical;
}

.checkout-page input:focus,
.checkout-page textarea:focus {
    border-color: #0057b8;
}

.checkout-radio,
.checkout-checkbox {
    display: flex !important;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px !important;
    cursor: pointer;
}

.checkout-radio input,
.checkout-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: #0057b8;
}

.invoice-fields {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid #ececec;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid #f1f1f1;
    font-size: 14px;
}

.checkout-item span {
    color: #374151;
    line-height: 1.5;
}

.checkout-item strong {
    white-space: nowrap;
    color: #111827;
}

.checkout-total {
    padding: 24px 0;
}

.checkout-total span {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #6b7280;
}

.checkout-total strong {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: #0057b8;
}

.checkout-total small {
    display: block;
    margin-top: 6px;
    color: #6b7280;
}

.checkout-submit {
    width: 100%;
    height: 46px;
    border: none;
    background: #0057b8;
    color: #fff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

.checkout-submit:hover {
    background: #004494;
}

.checkout-error {
    margin-bottom: 14px;
    padding: 14px 18px;
    background: #fee2e2;
    color: #991b1b;
    font-size: 14px;
    font-weight: 700;
}

/* =========================================
   ORDER SUCCESS
========================================= */

.order-success-page {
    max-width: 900px;
    margin: 90px auto 140px;
    padding: 0 20px;
    text-align: center;
}

.order-success-box {
    border: 1px solid #ececec;
    background: #fff;
    padding: 60px;
}

.success-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: #dcfce7;
    color: #166534;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 800;
}

.order-success-box h1 {
    margin-bottom: 18px;
    font-size: 36px;
    font-weight: 800;
}

.order-success-box p {
    margin-bottom: 24px;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.7;
}

.bank-info {
    margin: 30px 0;
    padding: 24px;
    background: #f8fafc;
    border: 1px solid #ececec;
}

.bank-info h2 {
    margin-bottom: 12px;
    font-size: 20px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }
}

/* =========================================
   AUTH PAGES
========================================= */

.auth-page {
    max-width: 1400px;
    margin: 70px auto 130px;
    padding: 0 20px;
}

.auth-box {
    width: 460px;
    margin: 0 auto;

    border: 1px solid #ececec;
    background: #fff;

    padding: 42px;
}

.auth-box h1 {
    margin-bottom: 30px;

    font-size: 32px;
    font-weight: 800;

    color: #111827;
    text-align: center;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;

    margin-bottom: 8px;

    font-size: 13px;
    font-weight: 700;

    color: #111827;
}

.auth-form input {
    width: 100%;
    height: 44px;

    border: 1px solid #e5e7eb;

    padding: 0 12px;

    font-family: inherit;
    font-size: 14px;

    outline: none;
}

.auth-form input:focus {
    border-color: #0057b8;
}

.auth-submit {
    width: 100%;
    height: 46px;

    border: none;

    background: #0057b8;
    color: #fff;

    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;

    cursor: pointer;

    transition: background 0.2s ease;
}

.auth-submit:hover {
    background: #004494;
}

.auth-link {
    margin-top: 24px;

    text-align: center;

    font-size: 14px;
    color: #4b5563;
}

.auth-link a {
    color: #0057b8;
    font-weight: 700;
    text-decoration: none;
}

.auth-link a:hover {
    color: #004494;
}

.auth-error {
    margin-bottom: 14px;
    padding: 13px 16px;

    background: #fee2e2;
    color: #991b1b;

    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 640px) {
    .auth-box {
        width: 100%;
        padding: 28px;
    }
}

.hp-field {
    position: absolute !important;
    left: -999999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* =========================================
   ACCOUNT
========================================= */

.account-page {
    max-width: 1400px;
    margin: 60px auto 120px;
    padding: 0 20px;
}

.account-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 40px;
}

.account-header h1 {
    margin-bottom: 8px;

    font-size: 34px;
    font-weight: 800;

    color: #111827;
}

.account-header p {
    color: #6b7280;
}

.account-logout-btn {
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 22px;

    border: 1px solid #ececec;

    text-decoration: none;

    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;

    color: #111827;
}

.account-logout-btn:hover {
    border-color: #0057b8;
    color: #0057b8;
}

.account-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
}

.account-sidebar {
    border: 1px solid #ececec;
    background: #fff;
}

.account-sidebar a {
    height: 52px;

    display: flex;
    align-items: center;

    padding: 0 20px;

    border-bottom: 1px solid #f3f4f6;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    color: #111827;
}

.account-sidebar a:hover,
.account-sidebar a.active {
    background: #f8fafc;
    color: #0057b8;
}

.account-card {
    margin-bottom: 24px;

    border: 1px solid #ececec;
    background: #fff;

    padding: 30px;
}

.account-card h2 {
    margin-bottom: 24px;

    font-size: 24px;
    font-weight: 800;

    color: #111827;
}

.account-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.account-info-grid span {
    display: block;

    margin-bottom: 6px;

    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;

    color: #6b7280;
}

.account-info-grid strong {
    font-size: 16px;
    color: #111827;
}

.account-orders-table {
    width: 100%;
    border-collapse: collapse;
}

.account-orders-table th,
.account-orders-table td {
    padding: 16px;
    border-bottom: 1px solid #ececec;
    text-align: left;
}

.account-orders-table th {
    background: #f8fafc;

    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;

    color: #111827;
}

@media (max-width: 992px) {

    .account-layout {
        grid-template-columns: 1fr;
    }

    .account-info-grid {
        grid-template-columns: 1fr;
    }

}

.auth-success {
    margin-bottom: 14px;
    padding: 13px 16px;
    background: #dcfce7;
    color: #166534;
    font-size: 13px;
    font-weight: 700;
}

.account-profile-form {
    max-width: 520px;
}

/* ACCOUNT EXTRA */

.account-form {
    max-width: 700px;
}

.address-grid,
.invoice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.address-card,
.invoice-card {
    border: 1px solid #ececec;
    background: #fff;
    padding: 24px;
}

.address-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 10px;
    background: #f3f4f6;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.address-card strong,
.invoice-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    color: #111827;
}

.invoice-card span {
    display: block;
    margin-bottom: 6px;
    color: #4b5563;
    font-size: 14px;
}

.address-card p,
.invoice-card p {
    margin-top: 14px;
    line-height: 1.7;
    color: #4b5563;
}

@media (max-width: 992px) {

    .address-grid,
    .invoice-grid {
        grid-template-columns: 1fr;
    }

}

/* ACCOUNT FORMS FIX */

.account-form {
    max-width: 720px;
}

.account-form .form-group {
    margin-bottom: 20px;
}

.account-form label {
    display: block;
    margin-bottom: 8px;

    font-size: 13px;
    font-weight: 700;
    color: #111827;
}

.account-form input,
.account-form textarea,
.account-form select {
    width: 100%;
    height: 44px;

    border: 1px solid #e5e7eb;
    background: #fff;

    padding: 0 12px;

    font-family: inherit;
    font-size: 14px;

    outline: none;
}

.account-form textarea {
    height: 110px;
    padding: 12px;
    resize: vertical;
}

.account-form input:focus,
.account-form textarea:focus,
.account-form select:focus {
    border-color: #0057b8;
}

.account-form input:disabled {
    background: #f8fafc;
    color: #6b7280;
}

.account-form .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.account-form .auth-submit {
    width: auto;
    min-width: 220px;
    padding: 0 28px;
}

.address-grid,
.invoice-grid {
    margin-top: 10px;
}

.account-card > p,
.address-grid:empty::after,
.invoice-grid:empty::after {
    content: "Все още няма добавени данни.";
    color: #6b7280;
    font-size: 14px;
}

/* =========================================
   CHECKOUT SUCCESS
========================================= */

.checkout-success-page {
    max-width: 900px;
    margin: 80px auto 140px;
    padding: 0 20px;
}

.checkout-success-box {
    background: #fff;
    border: 1px solid #ececec;
    padding: 54px;
    text-align: center;
}

.checkout-success-box .success-icon {
    width: 72px;
    height: 72px;

    margin: 0 auto 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #dcfce7;
    color: #166534;

    font-size: 36px;
    font-weight: 900;
}

.checkout-success-box h1 {
    margin-bottom: 16px;

    font-size: 36px;
    font-weight: 900;

    color: #111827;
}

.checkout-success-box > p {
    max-width: 640px;

    margin: 0 auto 34px;

    color: #4b5563;

    font-size: 16px;
    line-height: 1.7;
}

.success-order-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin: 36px 0;

    border: 1px solid #ececec;
    background: #f8fafc;
}

.success-order-info div {
    padding: 22px 18px;
    border-right: 1px solid #ececec;
}

.success-order-info div:last-child {
    border-right: none;
}

.success-order-info span {
    display: block;

    margin-bottom: 8px;

    color: #6b7280;

    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.success-order-info strong {
    color: #111827;

    font-size: 15px;
    font-weight: 800;
}

.success-items {
    margin-top: 34px;

    text-align: left;

    border-top: 1px solid #ececec;
    padding-top: 28px;
}

.success-items h2 {
    margin-bottom: 18px;

    font-size: 24px;
    font-weight: 900;

    color: #111827;
}

.success-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding: 14px 0;

    border-bottom: 1px solid #f1f1f1;
}

.success-item span {
    color: #374151;
    line-height: 1.5;
}

.success-item strong {
    white-space: nowrap;
    color: #111827;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 14px;

    margin-top: 36px;
}

.success-secondary-btn {
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 24px;

    border: 1px solid #ececec;

    color: #111827;
    background: #fff;

    text-decoration: none;

    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.success-secondary-btn:hover {
    border-color: #0057b8;
    color: #0057b8;
}

@media (max-width: 768px) {
    .checkout-success-box {
        padding: 34px 22px;
    }

    .success-order-info {
        grid-template-columns: 1fr;
    }

    .success-order-info div {
        border-right: none;
        border-bottom: 1px solid #ececec;
    }

    .success-order-info div:last-child {
        border-bottom: none;
    }

    .success-actions {
        flex-direction: column;
    }
}

.promo-badge {
    background: #dc2626;
    color: #fff;
}

.old-price {
    display: block;
    margin-bottom: 4px;
    color: #9ca3af;
    font-size: 13px;
    font-weight: 600;
    text-decoration: line-through;
}

.promo-price-wrap .price-eur {
    color: #dc2626;
}

.product-page-price .old-price {
    font-size: 16px;
    margin-bottom: 8px;
}

.product-page-price.promo-price-wrap .price-eur {
    font-size: 32px;
}

/* =========================================
   HOME HERO
========================================= */

.clean-hero {
    padding: 70px 0;
    background: #f8fafc;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 60px;
    align-items: center;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: #0057b8;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-text h1 {
    margin: 0 0 18px;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 900;
    color: #111827;
}

.hero-text p {
    margin: 0 0 30px;
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-btn,
.hero-secondary-btn {
    height: 52px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
}

.hero-btn {
    background: #0057b8;
    color: #fff;
}

.hero-btn:hover {
    background: #003f88;
}

.hero-secondary-btn {
    border: 1px solid #dbe3ee;
    background: #fff;
    color: #111827;
}

.hero-secondary-btn:hover {
    border-color: #0057b8;
    color: #0057b8;
}

.hero-image img {
    width: 100%;
    display: block;
}

/* =========================================
   SECTIONS
========================================= */

.home-categories,
.featured-products {
    padding: 70px 0;
}

.section-header.centered {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    margin: 0;
    font-size: 38px;
    font-weight: 900;
    color: #111827;
}

/* =========================================
   CATEGORY BOXES
========================================= */

.category-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-box {
    padding: 32px;
    background: #fff;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    transition: 0.25s ease;
}

.category-box:hover {
    border-color: #0057b8;
    transform: translateY(-4px);
}

.category-box h3 {
    margin: 0 0 12px;
    font-size: 24px;
    color: #111827;
}

.category-box span {
    color: #64748b;
    font-size: 15px;
}

/* =========================================
   PRODUCTS GRID
========================================= */

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.product-card {
    position: relative;
    background: #fff;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: 0.25s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.product-image-link {
    display: block;
    aspect-ratio: 1/1;
    background: #fff;
    overflow: hidden;
}

.product-image-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.04);
}

.product-info {
    padding: 22px;
}

.product-info h3 {
    margin: 0 0 12px;
    min-height: 56px;
    font-size: 18px;
    line-height: 1.5;
}

.product-title-link {
    color: #111827;
    text-decoration: none;
}

.product-title-link:hover {
    color: #0057b8;
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;

    height: 30px;
    padding: 0 12px;

    display: inline-flex;
    align-items: center;

    background: #111827;
    color: #fff;

    font-size: 12px;
    font-weight: 800;
}

.promo-badge {
    background: #dc2626;
}

.price {
    margin: 0 0 18px;
}

.old-price {
    display: block;
    margin-bottom: 4px;
    color: #94a3b8;
    font-size: 13px;
    text-decoration: line-through;
}

.price-eur {
    font-size: 30px;
    font-weight: 900;
    color: #0057b8;
}

.promo-price-wrap .price-eur {
    color: #dc2626;
}

.price-bgn {
    color: #64748b;
    font-size: 14px;
}

.btn {
    width: 100%;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #0057b8;
    color: #fff;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    transition: 0.25s ease;
}

.btn:hover {
    background: #003f88;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-boxes {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .products-grid,
    .category-boxes {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 38px;
    }

}

/* =========================================
   CATEGORY PAGE
========================================= */

.category-page {
    padding: 50px 0 80px;
}

.category-header {
    margin-bottom: 40px;
}

.category-header h1 {
    margin: 0 0 12px;
    font-size: 42px;
    font-weight: 900;
    color: #111827;
}

.category-header p {
    max-width: 900px;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
}

/* =========================================
   CATEGORY LAYOUT
========================================= */

.category-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

/* =========================================
   SIDEBAR
========================================= */

.category-sidebar {
    position: sticky;
    top: 140px;
}

.filter-box {
    margin-bottom: 22px;
    padding: 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
}

.filter-box h3 {
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 800;
    color: #111827;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 12px;

    font-size: 14px;
    color: #374151;

    cursor: pointer;
}

.filter-checkbox:last-child {
    margin-bottom: 0;
}

.filter-checkbox input {
    width: 16px;
    height: 16px;
}

.filter-btn {
    width: 100%;
    height: 50px;

    border: none;

    background: #0057b8;
    color: #fff;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;
    transition: 0.25s ease;
}

.filter-btn:hover {
    background: #003f88;
}

/* =========================================
   PRODUCTS AREA
========================================= */

.category-products {
    min-width: 0;
}

.empty-products {
    padding: 60px;
    background: #fff;
    border: 1px solid #e5e7eb;
    text-align: center;
    font-size: 18px;
    color: #64748b;
}

/* =========================================
   PRODUCT CARD
========================================= */

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    position: relative;

    background: #fff;
    border: 1px solid #e5e7eb;

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.product-card:hover {
    transform: translateY(-5px);

    border-color: #d7dfea;

    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.product-image-link {
    display: block;

    aspect-ratio: 1 / 1;

    background: #fff;
    overflow: hidden;
}

.product-image-link img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition: transform 0.3s ease;
}

.product-card:hover .product-image-link img {
    transform: scale(1.04);
}

.product-info {
    padding: 22px;
}

.product-info h3 {
    margin: 0 0 14px;

    min-height: 58px;

    font-size: 18px;
    line-height: 1.5;
}

.product-title-link {
    color: #111827;
    text-decoration: none;
    transition: color 0.25s ease;
}

.product-title-link:hover {
    color: #0057b8;
}

/* =========================================
   BADGES
========================================= */

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;

    height: 32px;
    padding: 0 12px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #111827;
    color: #fff;

    font-size: 12px;
    font-weight: 800;

    border-radius: 4px;
}

.promo-badge {
    background: #dc2626;
}

/* =========================================
   PRICES
========================================= */

.price {
    margin: 0 0 18px;
}

.old-price {
    display: block;

    margin-bottom: 6px;

    color: #94a3b8;

    font-size: 13px;
    font-weight: 600;

    text-decoration: line-through;
}

.price-eur {
    font-size: 30px;
    font-weight: 900;
    color: #0057b8;
}

.promo-price-wrap .price-eur {
    color: #dc2626;
}

.price-bgn {
    display: block;
    margin-top: 4px;

    color: #64748b;

    font-size: 14px;
}

/* =========================================
   BUTTONS
========================================= */

.btn {
    width: 100%;
    height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #0057b8;
    color: #fff;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.btn:hover {
    background: #003f88;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1400px) {

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 992px) {

    .category-layout {
        grid-template-columns: 1fr;
    }

    .category-sidebar {
        position: relative;
        top: 0;
    }

}

@media (max-width: 768px) {

    .products-grid {
        grid-template-columns: 1fr;
    }

    .category-header h1 {
        font-size: 32px;
    }

    .filter-box {
        padding: 18px;
    }

}

.category-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 28px;
    padding: 18px 20px;

    background: #fff;
    border: 1px solid #e5e7eb;
}

.products-count {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.sort-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-form label {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
}

.sort-form select {
    height: 38px;
    border: 1px solid #e5e7eb;
    background: #fff;
    padding: 0 12px;
    font-family: inherit;
    font-size: 13px;
    outline: none;
}

.sort-form select:focus {
    border-color: #0057b8;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 42px;
}

.pagination a {
    min-width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #e5e7eb;
    background: #fff;

    color: #111827;

    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.pagination a:hover,
.pagination a.active {
    background: #0057b8;
    border-color: #0057b8;
    color: #fff;
}

@media (max-width: 768px) {
    .category-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .sort-form {
        width: 100%;
    }

    .sort-form select {
        width: 100%;
    }
}

/* =========================================
   COMPACT PRODUCT CARDS
========================================= */

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-card {
    position: relative;

    background: #fff;
    border: 1px solid #e5e7eb;

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.product-card:hover {
    transform: translateY(-4px);

    border-color: #d7dfea;

    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.product-image-link {
    display: block;

    aspect-ratio: 1 / 1;

    background: #fff;
    overflow: hidden;
}

.product-image-link img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition: transform 0.3s ease;
}

.product-card:hover .product-image-link img {
    transform: scale(1.03);
}

.product-info {
    padding: 16px;
}

.product-info h3 {
    margin: 0 0 10px;

    min-height: 46px;

    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
}

.product-title-link {
    color: #111827;
    text-decoration: none;
}

.product-title-link:hover {
    color: #0057b8;
}

/* =========================================
   BADGES
========================================= */

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;

    height: 28px;
    padding: 0 10px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 4px;

    background: #111827;
    color: #fff;

    font-size: 11px;
    font-weight: 800;
}

.promo-badge {
    background: #dc2626;
}

/* =========================================
   PRICES
========================================= */

.price {
    margin: 0 0 14px;
}

.old-price {
    display: block;

    margin-bottom: 3px;

    color: #94a3b8;

    font-size: 12px;
    font-weight: 600;

    text-decoration: line-through;
}

.price-eur {
    font-size: 24px;
    font-weight: 900;
    color: #0057b8;
}

.promo-price-wrap .price-eur {
    color: #dc2626;
}

.price-bgn {
    display: block;

    margin-top: 2px;

    color: #64748b;

    font-size: 12px;
}

/* =========================================
   BUTTON
========================================= */

.btn {
    width: 100%;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #0057b8;
    color: #fff;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.btn:hover {
    background: #003f88;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1400px) {

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 992px) {

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 640px) {

    .products-grid {
        grid-template-columns: 1fr;
    }

}

.section-header-between {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 34px;
}

.section-link {
    color: #0057b8;

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;

    transition: 0.25s ease;
}

.section-link:hover {
    color: #003f88;
}

@media (max-width: 768px) {

    .section-header-between {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

}

.account-sidebar a.active,
.account-nav-link.active {
    background: #f8fafc;
    color: #0057b8;
    border-left: 4px solid #0057b8;
    padding-left: 16px;
}

.account-sidebar a.active:hover,
.account-nav-link.active:hover {
    background: #f8fafc;
    color: #0057b8;
}

.account-action-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 14px;
    background: #0057b8;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.account-action-link:hover {
    background: #003f88;
}

/* =========================================
   ACCOUNT ORDER
========================================= */

.order-top-bar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;

    font-size: 14px;
}

.order-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 32px;
    padding: 0 14px;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 800;
}

.status-new {
    background: #dbeafe;
    color: #1d4ed8;
}

.status-processing {
    background: #fef3c7;
    color: #b45309;
}

.status-completed {
    background: #dcfce7;
    color: #15803d;
}

.status-cancelled {
    background: #fee2e2;
    color: #b91c1c;
}

.account-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;

    margin-top: 24px;
}

.order-info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.order-info-row {
    display: flex;
    flex-direction: column;
    gap: 4px;

    font-size: 14px;
    line-height: 1.6;
}

.order-total-price {
    font-size: 28px;
    font-weight: 900;
    color: #0057b8;
}

.order-documents {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;

    margin-top: 24px;
}

.account-outline-btn {
    height: 44px;
    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #0057b8;

    color: #0057b8;
    background: #fff;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;

    transition: 0.25s ease;
}

.account-outline-btn:hover {
    background: #0057b8;
    color: #fff;
}

@media (max-width: 992px) {

    .account-grid-2 {
        grid-template-columns: 1fr;
    }

}

/* =========================================
   LEGAL PAGES
========================================= */

.legal-page {
    padding: 60px 0;
    background: #f8fafc;
}

.legal-box {
    max-width: 1000px;
    margin: 0 auto;

    padding: 50px;

    background: #fff;
    border: 1px solid #e5e7eb;
}

.legal-box h1 {
    margin: 0 0 30px;

    font-size: 42px;
    font-weight: 900;

    color: #111827;
}

.legal-box h2 {
    margin: 40px 0 14px;

    font-size: 24px;
    font-weight: 800;

    color: #111827;
}

.legal-box p,
.legal-box li {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

.legal-box ul {
    padding-left: 20px;
}

@media (max-width: 768px) {

    .legal-box {
        padding: 28px;
    }

    .legal-box h1 {
        font-size: 32px;
    }

}

.cookie-popup {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 99999;
    max-width: 760px;
    margin: 0 auto;
    padding: 18px 20px;
    background: #111827;
    color: #fff;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 16px 40px rgba(0,0,0,.18);
}

.cookie-popup p {
    margin: 6px 0 0;
    color: #d1d5db;
    font-size: 14px;
}

.cookie-popup a {
    color: #93c5fd;
}

.cookie-popup button {
    height: 40px;
    border: none;
    padding: 0 18px;
    background: #0057b8;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.terms-checkbox a {
    color: #0057b8;
    font-weight: 800;
}

@media (max-width: 768px) {
    .cookie-popup {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================
   LEGAL PAGES
========================================= */

.legal-page {
    padding: 60px 0 80px;
    background: #f8fafc;
}

.legal-box {
    max-width: 1100px;
    margin: 0 auto;

    padding: 50px;

    background: #fff;
    border: 1px solid #e5e7eb;

    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.legal-box h1 {
    margin: 0 0 30px;

    font-size: 42px;
    line-height: 1.2;
    font-weight: 900;

    color: #111827;
}

.legal-box h2 {
    margin: 40px 0 16px;

    font-size: 24px;
    line-height: 1.3;
    font-weight: 800;

    color: #111827;
}

.legal-box p {
    margin: 0 0 18px;

    font-size: 16px;
    line-height: 1.85;

    color: #475569;
}

.legal-box ul {
    margin: 0 0 24px;
    padding-left: 22px;
}

.legal-box li {
    margin-bottom: 10px;

    font-size: 16px;
    line-height: 1.8;

    color: #475569;
}

.legal-box a {
    color: #0057b8;
    font-weight: 700;
    text-decoration: none;
}

.legal-box a:hover {
    text-decoration: underline;
}

/* =========================================
   COOKIE POPUP
========================================= */

.cookie-popup {
    position: fixed;

    left: 24px;
    right: 24px;
    bottom: 24px;

    z-index: 99999;

    max-width: 780px;
    margin: 0 auto;

    padding: 22px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    background: #111827;
    color: #fff;

    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.cookie-popup strong {
    display: block;
    margin-bottom: 6px;

    font-size: 16px;
    font-weight: 800;
}

.cookie-popup p {
    margin: 0;

    color: #d1d5db;

    font-size: 14px;
    line-height: 1.7;
}

.cookie-popup a {
    color: #93c5fd;
    font-weight: 700;
}

.cookie-popup button {
    flex-shrink: 0;

    height: 46px;
    padding: 0 22px;

    border: none;

    background: #0057b8;
    color: #fff;

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;
    transition: 0.25s ease;
}

.cookie-popup button:hover {
    background: #003f88;
}

/* =========================================
   FOOTER LEGAL LINKS
========================================= */

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 16px;
}

.footer-legal a {
    color: rgba(255,255,255,.75);

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: 0.25s ease;
}

.footer-legal a:hover {
    color: #fff;
}

/* =========================================
   CHECKOUT TERMS
========================================= */

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin: 24px 0;
    padding: 18px;

    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

.terms-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;

    flex-shrink: 0;
}

.terms-checkbox span {
    font-size: 14px;
    line-height: 1.7;
    color: #475569;
}

.terms-checkbox a {
    color: #0057b8;
    font-weight: 700;
    text-decoration: none;
}

.terms-checkbox a:hover {
    text-decoration: underline;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .legal-page {
        padding: 40px 0 60px;
    }

    .legal-box {
        padding: 28px;
    }

    .legal-box h1 {
        font-size: 32px;
    }

    .legal-box h2 {
        font-size: 22px;
    }

    .cookie-popup {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-popup button {
        width: 100%;
    }

}

/* =========================================
   NEW PRODUCTS
========================================= */

.category-header {
    margin-bottom: 34px;
}

.category-header h1 {
    margin: 0 0 10px;

    font-size: 42px;
    font-weight: 900;

    color: #111827;
}

.category-header p {
    margin: 0;

    font-size: 16px;
    color: #64748b;
}

.empty-category {
    padding: 60px 30px;

    background: #fff;
    border: 1px solid #e5e7eb;

    text-align: center;

    font-size: 16px;
    font-weight: 700;

    color: #64748b;
}

/* FIX NEW PRODUCTS SPACING */

.category-page {
    padding-top: 90px;
    padding-bottom: 80px;
    padding: 40px 0 80px;
}

.mainmenu {
    position: relative;
    z-index: 1000;
}

.product-image-link {
    min-height: 220px;
}

.product-image-link img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: contain;
}

.category-top {
    margin-bottom: 32px;
}

.category-header {
    margin-bottom: 34px;
}

.category-header h1 {
    margin: 0 0 10px;
    font-size: 42px;
    font-weight: 900;
    color: #111827;
}

.category-header p {
    margin: 0;
    font-size: 16px;
    color: #64748b;
}

.new-products-page {
    padding: 50px 0 90px;
}

.new-products-page .category-header {
    margin-bottom: 34px;
}

/* =========================================
   FOOTER SOCIALS
========================================= */

.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 22px;
}

.social-icon {
    width: 46px;
    height: 46px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.08);
    color: #fff;

    transition: .25s ease;

    text-decoration: none;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.facebook:hover {
    background: #1877f2;
}

.social-icon.instagram:hover {
    background: #e1306c;
}

.social-icon.youtube:hover {
    background: #ff0000;
}

.product-card .price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
}

.product-card .old-price {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: line-through;
}

.product-card .price-eur {
    font-size: 28px;
    font-weight: 900;
    color: #dc2626;
    line-height: 1;
}

.product-card .price-bgn {
    display: block;
    width: 100%;
    margin-top: 4px;
    font-size: 12px;
    color: #64748b;
    font-weight: 700;
}

/* =========================================
   PRODUCT CARD PRICES FIX
========================================= */

.product-card .price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px 8px;
    margin: 14px 0 16px;
}

.product-card .old-price {
    font-size: 13px;
    font-weight: 700;
    color: #94a3b8;
    text-decoration: line-through;
    white-space: nowrap;
}

.product-card .price-eur {
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
    color: #0057b8;
    white-space: nowrap;
}

.product-card .promo-price-wrap .price-eur {
    color: #dc2626;
}

.product-card .price-bgn {
    width: 100%;
    display: block;
    margin-top: 2px;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;
    color: #64748b;
}

.product-card .btn,
.product-card .product-btn {
    margin-top: auto;
}

/* За по-малки карти */
.products-grid-4 .product-card .price-eur,
.products-grid .product-card .price-eur {
    font-size: 26px;
}

@media (max-width: 768px) {
    .product-card .price-eur {
        font-size: 24px;
    }
}

.product-card .promo-price,
.product-card .regular-price {
    font-size: 26px;
    line-height: 1;
    font-weight: 900;
    white-space: nowrap;
}

.product-card .promo-price {
    color: #dc2626;
}

.product-card .regular-price {
    color: #0057b8;
}

.search-page {
    padding: 40px 0 60px;
}

.search-page-header {
    margin-bottom: 30px;
}

.search-page-header h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

.search-empty {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 30px;
    font-size: 18px;
}

.product-brand {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 10px;
}

.product-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    gap: 8px;
    z-index: 5;
}

.badge {
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 30px;
    color: #fff;
}

.badge-promo {
    background: #ef4444;
}

.badge-dark {
    background: #111827;
}

/* SEARCH PAGE */

.search-page {
    padding: 40px 0 60px;
}

.search-page-header {
    margin-bottom: 30px;
}

.search-page-header h1 {
    margin: 0 0 10px;
    font-size: 34px;
    font-weight: 800;
    color: #111827;
}

.search-page-header p {
    margin: 0;
    font-size: 15px;
    color: #6b7280;
}

.search-empty {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 30px;
    font-size: 16px;
    color: #374151;
}

.product-brand,
.product-sku {
    font-size: 12px;
    color: #6b7280;
}

.products-grid {
    align-items: stretch;
}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    min-height: 78px;
}

.product-price {
    margin-top: auto;
}

.product-card .btn,
.product-card .btn-primary,
.product-card .product-btn {
    margin-top: 14px;
}

.search-page .current-price {
    color: #0057b8;
    font-size: 24px;
    font-weight: 900;
}

.search-page .promo-price {
    color: #dc2626;
}

.search-page .old-price {
    color: #94a3b8;
    font-size: 13px;
    text-decoration: line-through;
}

.search-page .bgn-price {
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

.search-page .product-card {
    display: flex;
    flex-direction: column;
}

.search-page .product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.search-page .product-title {
    min-height: 78px;
}

.search-page .product-price {
    margin-top: auto;
}

.search-page .btn {
    margin-top: 14px;
}

.current-price {
    color: #0057b8;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.promo-price {
    color: #dc2626;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.old-price {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 14px;
    margin-right: 8px;
}

.bgn-price {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    margin-top: 4px;
}

.current-price,
.promo-price {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.current-price,
.promo-price {
    font-size: 42px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
}

.current-price {
    color: #0057b8 !important;
}

.promo-price {
    color: #dc2626 !important;
}

.header-search {
    position: relative;
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 9999;

    display: none;

    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.search-suggestions.active {
    display: block;
}

.search-suggestion-item {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    gap: 12px;
    align-items: center;

    padding: 12px;

    color: #111827;
    text-decoration: none;
    border-bottom: 1px solid #eef2f7;
}

.search-suggestion-item:hover {
    background: #f8fafc;
}

.search-suggestion-item img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.search-suggestion-item strong {
    display: block;
    font-size: 13px;
    line-height: 1.35;
}

.search-suggestion-item small {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: #64748b;
}

.search-suggestion-item b {
    color: #0057b8;
    font-size: 14px;
    white-space: nowrap;
}

.search-suggestion-empty {
    padding: 14px;
    font-size: 13px;
    color: #64748b;
}

/* CART COUPON */

.coupon-form {
    margin: 18px 0;
    padding: 18px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

.coupon-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 800;
    color: #111827;
}

.coupon-row {
    display: flex;
    gap: 10px;
}

.coupon-row input {
    flex: 1;
    height: 42px;
    padding: 0 12px;
    border: 1px solid #d1d5db;
    font-size: 14px;
}

.coupon-row .btn {
    height: 42px;
    padding: 0 18px;
    white-space: nowrap;
}

.coupon-active {
    margin: 12px 0;
    padding: 12px 14px;
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    color: #166534;
    font-size: 14px;
    font-weight: 700;
}

.coupon-active a {
    margin-left: 12px;
    color: #b91c1c;
    font-weight: 800;
    text-decoration: none;
}

.cart-total-lines {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.cart-total-lines > div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.discount-line strong {
    color: #dc2626;
}

.final-total-line {
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    font-size: 18px;
}

.final-total-line strong {
    color: #0057b8;
    font-size: 24px;
}

/* CART PROMO PRICE */

.cart-table .old-price {
    display: inline-block;
    margin-bottom: 4px;
    color: #94a3b8;
    font-size: 12px;
    text-decoration: line-through;
}

.cart-table .promo-price {
    color: #dc2626 !important;
    font-size: 15px !important;
    font-weight: 800;
    line-height: 1.2;
}

.contacts-page {
    padding: 45px 0 70px;
}

.contacts-header {
    margin-bottom: 30px;
}

.contacts-header h1 {
    margin: 0 0 10px;
    font-size: 34px;
    font-weight: 800;
}

.contacts-header p {
    margin: 0;
    color: #64748b;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.contacts-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 28px;
}

.contacts-box h2 {
    margin: 0 0 18px;
    font-size: 22px;
}

.contacts-box p {
    margin: 0 0 12px;
    line-height: 1.6;
}

.contacts-box a {
    color: #0057b8;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 768px) {
    .contacts-grid {
        grid-template-columns: 1fr;
    }
}

.cookie-consent {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    max-width: 980px;
    margin: 0 auto;
    padding: 18px 20px;

    background: #111827;
    color: #fff;

    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.cookie-consent-text {
    font-size: 14px;
    line-height: 1.5;
}

.cookie-consent-text a {
    color: #93c5fd;
    font-weight: 700;
    text-decoration: none;
}

.cookie-consent button {
    flex: 0 0 auto;

    border: 0;
    padding: 11px 18px;

    background: #0057b8;
    color: #fff;

    font-size: 14px;
    font-weight: 800;

    cursor: pointer;
}

.cookie-consent button:hover {
    background: #004494;
}

@media (max-width: 700px) {
    .cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;

        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-consent button {
        width: 100%;
    }
}

/* =========================================
   MOBILE HEADER
========================================= */

.mobile-menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: none;
    background: transparent;

    margin-right: 16px;

    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    margin: 5px auto;

    background: #111;

    transition: 0.25s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 992px) {

    .page-wrap,
    .main-content,
    .footer-inner {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .topbar {
        height: auto;
    }

    .topbar-inner {
        height: auto;

        flex-wrap: wrap;

        padding-top: 12px;
        padding-bottom: 12px;
    }

    .logo {
        margin-right: auto;
        font-size: 24px;
    }

    .header-phone {
        display: none;
    }

    .header-search {
        order: 100;

        width: 100%;

        margin-top: 14px;
    }

    .search-box {
        width: 100%;
    }

    .header-icons {
        gap: 14px;
    }

    .icon-box span {
        display: none;
    }

    /* MENU */

    .mainmenu {
        display: none;

        height: auto;
    }

    .mainmenu.mobile-open {
        display: block;
    }

    .mainmenu-inner {
        width: 100%;
    }

    .mainmenu-list {
        height: auto;

        flex-direction: column;
        align-items: stretch;
    }

    .mainmenu-list > li > a {
        height: 52px;

        justify-content: space-between;

        padding: 0 18px;

        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .dropdown-menu {
        position: static;

        width: 100%;

        opacity: 1;
        visibility: visible;

        transform: none;

        display: none;

        border: none;
    }

    .has-dropdown:hover .dropdown-menu {
        display: block;
    }

    /* PRODUCTS */

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .product-image-link img {
        height: 220px;
        padding: 18px;
    }

    .product-info {
        padding: 16px;
    }

    .product-info h3 {
        min-height: auto;
        font-size: 15px;
    }

    .price-eur {
        font-size: 24px;
    }

    /* CATEGORY */

    .category-layout {
        grid-template-columns: 1fr;
    }

    .category-filters {
        position: static;
    }

    /* PRODUCT PAGE */

    .product-main {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .product-main-image img {
        height: 320px;
    }

    .tabs-nav {
        overflow-x: auto;
        gap: 20px;
    }

    /* FOOTER */

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}

/* SMALL MOBILE */

@media (max-width: 640px) {

    .products-grid {
        grid-template-columns: 1fr;
    }

    .category-boxes {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .category-hero h1 {
        font-size: 34px;
    }

    .checkout-layout {
        gap: 20px;
    }

    .checkout-panel,
    .checkout-summary {
        padding: 20px;
    }

    .cart-summary {
        padding: 20px;
    }

}

/* =========================================
   HOME BANNER
========================================= */

.home-banner {
    background: #ffff;
}

.home-banner-link {
    display: block;
}

.home-banner img {
    display: block;

    width: 100%;
    height: auto;
}

/* OPTIONAL HOVER */

.home-banner-link:hover img {
    opacity: 0.98;
}

.product-short-desc ul,
.product-description-content ul {
    margin: 0 0 16px 20px;
    padding: 0;
}

.product-short-desc ol,
.product-description-content ol {
    margin: 0 0 16px 20px;
    padding: 0;
}

.product-short-desc li,
.product-description-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.product-short-desc p,
.product-description-content p {
    margin: 0 0 16px;
    line-height: 1.7;
}

.product-description-content h2,
.product-description-content h3,
.product-description-content h4 {
    margin: 24px 0 12px;
    line-height: 1.3;
}

.product-description-content strong,
.product-short-desc strong {
    font-weight: 700;
}