/* --- 1. RESET & VARIABLES --- */
:root {
    --color-orange: #F97316;
    --color-black: #111111;
    --color-gray-bg: #F5F5F5;
    --color-lime: #CCFF00;
    --color-text-main: #0F172A;
    --color-text-muted: #64748B;
    --color-border: #F1F5F9;
    --font-main: 'Inter', sans-serif;
    --container-width: 1440px;
    --transition-speed: 0.3s;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
body {
    font-family: var(--font-main);
    color: var(--color-text-main);
    background-color: #fff;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

a { text-decoration: none; color: inherit; transition: color var(--transition-speed); }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
img { display: block; max-width: 100%; height: auto; }
h1 { display: block; font-size: 2em; margin: 20px 0;}

/* --- 2. UTILITIES --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}
.center {
    display: block;
    text-align: center;
    text-align: -webkit-center;
    text-align: -moz-center;
    margin-left: auto;
    margin-right: auto;
}

.flex-row { display: flex; align-items: center; }
.justify-between { justify-content: space-between; width: 100%; }
.gap-small { gap: 8px; }
.gap-medium { gap: 16px; }
.gap-large { gap: 24px; }
.cursor-pointer{ cursor:pointer;}

.hidden-mobile { display: none; }
.hidden { display: none !important; }

/* Icon sizing */
.icon { width: 20px; height: 20px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.icon-sm { width: 14px; height: 14px; }
.icon-fill { fill: currentColor; }

/* --- 3. TOP BAR --- */
.top-bar {
    border-bottom: 1px solid var(--color-border);
    font-size: 11px;
    font-weight: 500;
    color: var(--color-text-muted);
    padding: 10px 0;
}
.top-bar a:hover, .top-bar .location {position:relative;}
.top-bar a:hover, .top-bar .location div:hover { color: var(--color-orange); }
.top-bar .location .city_name_ask {
    display: none;
    position: absolute;
    margin-top: 110px;
    z-index: 1001;
    padding: 10px;
    background: #fff;
    border: 1px solid #eee;
    text-align: center;
    color: var(--color-text-muted);
    border-radius: 6px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.top-bar .location .city_name_ask.show {display:block;}
.top-bar .location .city_name_ask #city_name_ask_text { padding-top:10px; }
.top-bar .location .city_name_ask #city_name_ask_buttons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    color: var(--color-text-muted);
}
.top-bar .location .city_name_ask #city_name_ask_buttons div {
    padding: 3px 10px;
    margin: 0 5px;
}
/* --- 4. HEADER --- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    transition: box-shadow var(--transition-speed);
    height: 80px;
}

.header.shadow {
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.header-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Nav Links */
.nav-links {
    display: none; /* Mobile first */
    gap: 32px;
    font-size: 14px;
    font-weight: 700;
}

.nav-links a:hover { color: var(--color-orange); }

.nav-badge {
    position: absolute;
    top: -10px;
    right: -30px;
    background-color: var(--color-lime);
    color: black;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}
.mobile-menu .nav-badge {
    right: auto;
    left: 205px;
}

/* Logo Animation Logic */
.logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    width: 140px;
}

.logo-text {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-orange);
    line-height: 1;
    letter-spacing: -0.05em;
}

.logo-smile {
    width: 60px;
    height: 20px;
    position: absolute;
    bottom: -18px;
}

.logo-smile path {
    fill: none;
    stroke: var(--color-orange);
    stroke-width: 8;
    stroke-linecap: round;
    /* Animation magic */
    transition: d 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Default state: Flatter */
.logo-smile path { d: path("M 10 25 Q 50 35 90 25"); }
/* Hover state: Deeper */
.logo-container:hover .logo-smile path { d: path("M 10 25 Q 50 50 90 25"); }

/* Header Icons */
.header-icons button, .header-icons a {padding: 4px; color: var(--color-text-main); transition: color 0.2s; position: relative;}
.header-icons button:hover, .header-icons a:hover { color: var(--color-orange); }

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--color-black);
    color: white;
    font-size: 9px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.menu-btn { display: block; } /* Mobile */

/* --- 5. CATEGORIES BAR --- */
.categories-bar {
    border-bottom: 1px solid var(--color-border);
    padding: 16px 0;
}

.categories-scroll {
    display: flex;
    gap: 16px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
    padding-bottom: 4px;
}
.categories-scroll::-webkit-scrollbar { display: none; }

.cat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 20px 6px 6px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.2s;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.cat-item:hover {
    border-color: var(--color-orange);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
}

.cat-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: #eee;
}

.cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.2s;
}

.cat-item:hover .cat-img img { filter: grayscale(0%); }

.cat-text { font-size: 12px; font-weight: 700; }


/* --- 6. HERO WIZARD --- */
.hero {  padding: 64px 24px; text-align: center; }

.hero h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
}

.text-orange { color: var(--color-orange); }

.wizard-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.select-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 600px;
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper svg.icon-left {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
}

.select-wrapper select {
    width: 100%;
    padding: 14px 40px; /* Space for icons */
    background-color: #F9FAFB;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    appearance: none;
    outline: none;
    cursor: pointer;
    transition: background 0.2s;
}

.select-wrapper select:hover { background-color: #F3F4F6; }
.select-wrapper select:focus { border-color: rgba(249, 115, 22, 0.3); background-color: white; }

.select-wrapper svg.icon-right {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #9CA3AF;
}

.pills-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.pill {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    background: white;
    transition: all 0.2s;
}

.pill:hover { border-color: #9CA3AF; }

.pill.active {
    border-color: var(--color-orange);
    color: var(--color-orange);
    font-weight: 700;
    background-color: #FFF7ED;
}

.btn-find {
    margin-top: 8px;
    background-color: var(--color-black);
    color: white;
    padding: 14px 48px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-find:hover {
    background-color: var(--color-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.2);
}

.hero-hint { margin-top: 24px; font-size: 12px; color: #9CA3AF; }


/* --- 7. PRODUCT GRID --- */
.grid-section { margin-top: 32px; }

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 cols mobile */
    gap: 16px;
    row-gap: 40px;
}

.card { cursor: pointer; }

.card-image-wrapper {
    position: relative;
    background-color: var(--color-gray-bg);
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    margin-bottom: 12px;
    transition: box-shadow 0.3s;
}

.card:hover .card-image-wrapper {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.card:hover .card-img { transform: scale(1.05); }

.badges {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    gap: 4px;
    z-index: 10;
}

.badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 2px;
    text-transform: uppercase;
}

.badge-lime { background-color: var(--color-lime); color: black; }
.badge-blue { background-color: #2563EB; color: white; }
.badge-black { background-color: black; color: var(--color-lime); }

.btn-fav {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}

.btn-fav:hover { background: white; }

.star-overlay {
    position: absolute;
    top: 8px;
    left: 48px;
    z-index: 10;
    color: var(--color-lime);
}

.card-info { padding: 0 4px; }

.card-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-main);
    transition: color 0.2s;
}

.card:hover .card-title { color: var(--color-orange); }

.card-price {
    margin-top: 6px;
    font-size: 16px;
    font-weight: 800;
    color: var(--color-black);
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-red { color: #EF4444; }
.price-old { font-size: 12px; text-decoration: line-through; color: #9CA3AF; font-weight: 500; }

.btn-load-more {
    margin: 64px auto 0;
    display: block;
    border: 1px solid var(--color-black);
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s;
}

.btn-load-more:hover {
    background-color: var(--color-black);
    color: white;
}

/* --- 8. SEO LINKS --- */
.seo-links { margin: 80px auto 40px; }
.seo-title { font-size: 14px; font-weight: 700; text-transform: uppercase; margin-bottom: 16px; }
.tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.seo-tag {
    background-color: #F9FAFB;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #6B7280;
    transition: all 0.2s;
}
.seo-tag:hover { background-color: var(--color-orange); color: white; }

/* --- 9. FOOTER --- */
.footer {
    background-color: var(--color-black);
    color: white;
    padding-top: 64px;
    padding-bottom: 32px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-logo { font-size: 32px; font-weight: 800; text-transform: uppercase; margin-bottom: 16px; position: relative; width: max-content; }
.footer-logo svg { position: absolute; bottom: -6px; left: 0; width: 100%; height: 12px; stroke: white; fill: none; stroke-width: 4; stroke-linecap: round; }

.footer-contact { font-size: 20px; font-weight: 700; margin-bottom: 4px; display: block; }
.footer-sub { font-size: 12px; color: #9CA3AF; margin-bottom: 24px; }

.social-btns { display: flex; gap: 12px; }
.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.social-btn:hover { opacity: 1; }

.footer-col h4 { font-size: 14px; text-transform: uppercase; margin-bottom: 20px; font-weight: 700; }
.footer-col ul li { margin-bottom: 12px; font-size: 14px; color: #9CA3AF; }
.footer-col ul li a:hover { color: var(--color-orange); }

.footer-bottom {
    margin-top: 64px;
    padding-top: 16px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: flex-end;
}
.line-deco { width: 100%; height: 1px; background: white; }

/* --- 10. MOBILE MENU --- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 200;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.mobile-menu.open { transform: translateX(0); }

.mm-header { padding: 16px 24px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--color-border); }
.mm-body { padding: 32px 24px; display: flex; flex-direction: column; gap: 24px; font-size: 20px; font-weight: 700; }
.mm-link-orange { color: var(--color-orange); display: flex; align-items: center; gap: 8px; position:relative; }
.mm-body .mobile_item_child { margin: 8px 15px 0px 15px; font-size: 18px;}

.list-group-item{
    display:block;
    padding:5px;
}

.child_categorys{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
}
.child_categorys .child_category{
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 7px;
    overflow-wrap: break-word;
    word-break: break-word;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: left;
}
.category_description{
    margin-top:20px;
}

#information-sitemap #content ul{ padding-inline-start: 40px;  unicode-bidi: isolate;}
#information-sitemap #content li{
    display: list-item;
    unicode-bidi: isolate;
    list-style-type: square;
}
#information-sitemap #content li a{  font-size: 12px;  text-decoration: underline; }

/* --- category page ---> */
/* --- 4. CATALOG LAYOUT --- */
.catalog-grid { display: grid; gap: 40px; position: relative; }
/*
@media(min-width: 1024px) { .catalog-grid.have_filter { grid-template-columns: 280px 1fr; } }
*/
@media(min-width: 1024px) { .catalog-grid.have_filter { grid-template-columns: 1fr; } }
/* --- 5. SIDEBAR FILTERS --- */
.sidebar { display: none; }
@media(min-width: 1024px) { .sidebar { display: block; position: sticky; top: 90px; height: calc(100vh - 90px); overflow-y: auto; padding-bottom: 40px; padding-right: 20px; } }
/* Scrollbar styling for sidebar */
.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-thumb { background-color: #E2E8F0; border-radius: 4px; }

.filter-group { border-bottom: 1px solid var(--color-border); padding: 24px 0; }
.filter-group:first-child { padding-top: 0; }
.filter-title { font-weight: 700; font-size: 14px; margin-bottom: 16px; display: flex; justify-content: space-between; cursor: pointer; }

/* CUSTOM PRICE SLIDER CSS */
.price-inputs { display: flex; gap: 10px; align-items: center; margin-bottom: 20px; }
.p-input { width: 100%; border: 1px solid var(--color-border); padding: 8px; border-radius: 8px; font-size: 14px; font-family: inherit; }
.p-input:focus { outline: none; border-color: var(--color-black); }

.range-slider { position: relative; width: 100%; height: 4px; background: #E2E8F0; border-radius: 2px; }
.range-selected { position: absolute; height: 100%; background: var(--color-black); border-radius: 2px; }
.range-input { position: relative; }
.range-input input {
    position: absolute; width: 100%; height: 5px; top: -5px; background: none; pointer-events: none;
    -webkit-appearance: none; -moz-appearance: none;
}
/* Custom Thumb Styling */
input[type="range"]::-webkit-slider-thumb {
    height: 18px; width: 18px; border-radius: 50%; background: white; border: 2px solid var(--color-black);
    pointer-events: auto; -webkit-appearance: none; cursor: pointer; box-shadow: 0 1px 3px rgba(0,0,0,0.1); margin-top: -6px; /* center on track */
}
input[type="range"]::-moz-range-thumb {
    height: 18px; width: 18px; border-radius: 50%; background: white; border: 2px solid var(--color-black);
    pointer-events: auto; cursor: pointer; box-shadow: 0 1px 3px rgba(0,0,0,0.1); border: none;
}
/* Checkboxes */
.checkbox-list { display: flex; flex-direction: column; gap: 10px; max-height: 240px; overflow-y: auto; padding-right: 5px; }
.checkbox-list::-webkit-scrollbar { width: 2px; }
.checkbox-list::-webkit-scrollbar-thumb { background: #ccc; }

.custom-check { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; color: #334155; user-select: none; }
.custom-check:hover { color: var(--color-black); }
.custom-check input { display: none; }
.checkmark { width: 18px; height: 18px; border: 1px solid #CBD5E1; border-radius: 4px; display: flex; align-items: center; justify-content: center; transition: 0.2s; flex-shrink: 0; }
.custom-check input:checked + .checkmark { background: var(--color-black); border-color: var(--color-black); }
.custom-check input:checked + .checkmark::after { content: '✓'; color: white; font-size: 12px; font-weight: 700; }
.count { color: #94A3B8; font-size: 11px; margin-left: auto; }

/* --- 6. PRODUCT GRID --- */
.sort-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.total-products { font-size: 14px; color: var(--color-muted); font-weight: 500; }
.sort-select { border: none; font-weight: 700; font-size: 14px; cursor: pointer; background: transparent; }

.products-wrapper { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; row-gap: 40px; }
@media(min-width: 768px) { .products-wrapper { grid-template-columns: repeat(3, 1fr); } }
@media(min-width: 1024px) { .products-wrapper { grid-template-columns: repeat(4, 1fr); } }

/* Card Styles */
.card { cursor: pointer; position: relative; }
.card:hover .card-img { transform: scale(1.05); }
.img-wrapper { background: var(--color-gray-bg); border-radius: 16px; overflow: hidden; aspect-ratio: 1/1; margin-bottom: 12px; position: relative; }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; mix-blend-mode: multiply; }

.badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; z-index: 2; }
.badge { font-size: 10px; font-weight: 800; padding: 4px 6px; border-radius: 4px; text-transform: uppercase; }
.badge-lime { background: var(--color-lime); color: black; }
.badge-black { background: black; color: white; }

.rating { display: flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 600; margin-bottom: 6px; }
.rating_num{ margin-left:5px;}
.star { width: 12px; height: 12px; fill: var(--color-orange); stroke: none; }
.star.empty { fill: var(--color-text-muted);  }
.review-count { color: #94A3B8; }

.card-title { font-size: 14px; font-weight: 700; line-height: 1.3; margin-bottom: 8px; color: var(--color-text); }
.card-title:hover { color: var(--color-orange); }
.card-price-row { display: flex; align-items: center; gap: 10px; }
.price { font-size: 18px; font-weight: 800; }
.old-price { font-size: 13px; text-decoration: line-through; color: #94A3B8; }

.add-btn { width: 100%; margin-top: 12px; border: 1px solid var(--color-black); border-radius: 8px; padding: 10px; font-size: 13px; font-weight: 700; transition: 0.2s; opacity: 0; transform: translateY(10px); }
.card:hover .add-btn { opacity: 1; transform: translateY(0); }
.add-btn:hover { background: var(--color-black); color: white; }
@media(max-width: 1024px) { .add-btn { display: none; } }

/* --- 7. SEO FOOTER & PAGINATION --- */
.pagination { display: flex; justify-content: center; margin-top: 60px; gap: 8px; }
.page-link { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 8px; border: 1px solid var(--color-border); font-weight: 600; font-size: 14px; cursor: pointer; }
.page-link.active { background: var(--color-black); color: white; border-color: var(--color-black); }
.pagination_result_text{ text-align:center; margin-top:20px; }

.seo-footer { background: var(--color-gray-bg); border-radius: 20px; padding: 40px; margin-top: 80px; }
.seo-text { font-size: 14px; line-height: 1.6; color: #475569; columns: 2; gap: 40px; margin-top: 20px; }
@media(max-width: 768px) { .seo-text { columns: 1; } }

/* Mobile Filter Toggle */
.mobile-filter-btn { display: flex; align-items: center; gap: 8px; width: 100%; padding: 12px; border: 1px solid var(--color-black); border-radius: 8px; font-weight: 700; justify-content: center; margin-bottom: 20px; }
@media(min-width: 1024px) { .mobile-filter-btn { display: none; } }
/* <--- category page --- */


/* --- Dropdown menu --- */
.dropdown { position: relative; }
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    border-radius: 4px;
    z-index: 1;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s;
    padding:20px;
    border-radius: 40px;
}
.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.dropdown-href{
    width: 225px;
    margin: 10px 0px;
}

/* --- breadcrumb --- */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0.5rem 0;
    margin: 20px 0;
    font-size: 14px;
    gap: 4px;
}
.breadcrumb-item {  display: flex; align-items: center; }
.breadcrumb-item:not(:last-child)::after { content: "/"; margin: 0 6px; color: #aaa; }
.breadcrumb-item a {
    text-decoration: none;
    color: #666;  white-space: nowrap;
}
.breadcrumb-item:last-child a {color: #333;font-weight: 500; }

/* --- RESPONSIVE --- */
@media (min-width: 768px) {
    .hidden-mobile { display: flex; }
    .menu-btn { display: none; }
    .logo-container { position: absolute; left: 50%; width: auto; transform: translateX(-50%); }
    .nav-links { display: flex; }
    .hero h1 { font-size: 48px; }
    .select-row { flex-direction: row; }
    .grid { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
    .line-deco { width: 25%; }
    .gallery-thumbs { display: flex; }
}

@media (max-width: 768px) {
    .breadcrumb { font-size: 12px;}
    .breadcrumb-item a {max-width: 100px;}
    .breadcrumb-item:last-child a {max-width: 150px;}
    .child_categorys { grid-template-columns: 1fr; }
}