/* --- CSS RESET & NORMALIZE --- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}
body {
    min-height: 100vh;
    line-height: 1.6;
    background: #1c252b;
    color: #F5F6FA;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    letter-spacing: 0.02em;
}
img,svg {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}
a {
    color: #e67e22;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: #ffb45c;
}
ul,ol {
    list-style: none;
}
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}
button { cursor: pointer; }

/* --- BRAND FONTS (Montserrat for Display, Open Sans for text) --- */
h1,h2,h3,h4,h5,h6 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    letter-spacing: 0.03em;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4 { font-size: 1.125rem; margin-bottom: 8px; }
.subtitle {
    font-size: 1.125rem;
    color: #e67e22;
    margin-top: -10px;
    margin-bottom: 24px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 400;
}
p, li, blockquote, .text-section {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    color: #F5F6FA;
    margin-bottom: 12px;
}

/* --- GENERAL CONTAINER & SPACING --- */
.container {
    max-width: 1200px;
    padding: 0 24px;
    margin: 0 auto;
}

.content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* --- SECTIONS & FLEX LAYOUT SPACING --- */
section {
    background: transparent;
    margin-bottom: 60px;
    padding: 40px 0;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
}
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; border-radius: 18px; box-shadow: 0 2px 16px 0 rgba(39,57,76,0.15); background: #28323a; }
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.text-image-section { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.testimonial-card { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; padding: 20px; background: #F5F6FA; color: #1c252b; border-radius: 16px; box-shadow: 0 6px 24px rgba(39,57,76,0.10); min-width: 260px; max-width: 430px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(120deg, #232c34 60%, #e67e22 120%);
    padding: 64px 0 48px 0;
    border-radius: 0 0 48px 48px;
    box-shadow: 0 6px 36px 0 rgba(230,126,34,0.15);
    position: relative;
    z-index: 1;
}
.hero h1 {
    color: #fff;
    text-shadow: 0 2px 16px #e67e22, 0 1px 8px #1c252b;
    font-size: 2.5rem;
    margin-bottom: 12px;
}
.hero .subtitle {
    color: #fff;
    opacity: 0.9;
}
.hero .btn-accent {
    margin-top: 12px;
}

/* --- NAV HEADER --- */
header {
    width: 100%;
    background: #232c34;
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: 0 2px 16px rgba(44,62,80,0.12);
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
}
.logo img {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 1px 2px #e67e22);
}
.main-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}
.main-nav a {
    color: #ffffff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.02em;
    padding: 8px 10px;
    position: relative;
    transition: color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
    color: #e67e22;
    text-shadow: 0 0 6px #e67e22;
}
.btn,
.btn-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 11px 32px;
    border: none;
    border-radius: 28px;
    line-height: 1.3;
    cursor: pointer;
    margin-left: 12px;
    margin-bottom: 0;
    background: transparent;
    color: #e67e22;
    box-shadow: 0 2px 18px 0 rgba(230,126,34,0.08);
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
    text-decoration: none;
    outline: none;
    position: relative;
}
.btn-accent {
    background: #e67e22;
    color: #fff;
    box-shadow: 0 2px 18px 0 rgba(230,126,34,0.25);
    border: 1px solid #e67e22;
}
.btn-accent:hover,
.btn-accent:focus {
    background: #ffb45c;
    color: #232c34;
    box-shadow: 0 4px 28px 0 rgba(230,126,34,0.30);
    border-color: #ffb45c;
}
.btn:hover:not(.btn-accent),
.btn:focus:not(.btn-accent) {
    background: #222d34;
    color: #e67e22;
    box-shadow: 0 0 8px #e67e22;
}

/* --- BURGER MENU (Mobile Navigation) --- */
.mobile-menu-toggle {
    display: none;
    background: none;
    color: #e67e22;
    font-size: 2.2rem;
    border: none;
    margin-left: auto;
    padding: 10px 16px;
    line-height: 1;
    border-radius: 50%;
    transition: background 0.18s;
    z-index: 2001;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
    background: #232c34;
    color: #ffb45c;
}
.mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: #232c34;
    box-shadow: 0 8px 60px 8px rgba(30,30,40,0.66);
    transform: translateX(-100vw);
    transition: transform 0.35s cubic-bezier(.77,0,.18,1);
    z-index: 2010;
    padding: 0 0 36px 0;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: #e67e22;
    font-size: 2.2rem;
    margin-top: 20px;
    margin-bottom: 12px;
    margin-right: 24px;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 2011;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
    color: #ffb45c;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: flex-start;
    margin: 24px 0 0 36px;
}
.mobile-nav a {
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.22rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 12px 0;
    border-radius: 4px;
    width: max-content;
    transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: #e67e22;
    color: #232c34;
    box-shadow: 0 0 3px #e67e22;
}

/* --- MAIN LAYOUTS AND FLEXBOX CARD GRIDS --- */
.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: space-between;
    margin: 20px 0 0 0;
}
.feature-grid > li {
    flex: 1 1 220px;
    min-width: 210px;
    background: #28323a;
    border-radius: 17px;
    box-shadow: 0 3px 20px 0 rgba(44,62,80,0.09);
    padding: 30px 22px 24px 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    border: 1px solid #28323a;
    transition: box-shadow 0.22s, transform 0.16s, border 0.18s;
    position: relative;
}
.feature-grid li:hover {
    border: 1.5px solid #e67e22;
    box-shadow: 0 6px 26px 0 rgba(230,126,34,0.12);
    transform: translateY(-5px) scale(1.03);
}
.feature-grid img {
    height: 46px;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 8px #e67e22CC);
}
.feature-grid h3 {
    color: #e67e22;
    font-size: 1.15rem;
    margin-bottom: 6px;
}

/* --- CATALOG CATEGORIES --- */
.catalog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    margin: 32px 0 10px 0;
}
.catalog-category {
    flex: 1 1 260px;
    background: #2B3A42;
    border-radius: 17px;
    box-shadow: 0 3px 20px 0 rgba(44,62,80,0.07);
    padding: 28px 20px 24px 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.22s, transform 0.16s;
    border: 1.5px solid transparent;
    position: relative;
}
.catalog-category:hover {
    border: 1.5px solid #e67e22;
    box-shadow: 0 6px 26px 0 rgba(230,126,34,0.09);
    transform: translateY(-3px) scale(1.025);
}
.catalog-category h3 {
    color: #e67e22;
    font-size: 1.18rem;
    margin-bottom: 8px;
}
.catalog-category .btn {
    margin-top: 2px;
    align-self: flex-start;
}

/* --- GENERAL CARDS & ARTICLE PREVIEWS --- */
.inspiration-list, .inspirations-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.inspiration-teaser {
    background: #2b3a42;
    border-radius: 15px;
    box-shadow: 0 1px 10px rgba(44,62,80,0.08);
    padding: 24px 18px 16px 18px;
    min-width: 210px;
    flex: 1 1 230px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    border-left: 5px solid #e67e22;
    transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
}
.inspiration-teaser:hover {
    box-shadow: 0 8px 30px 0 rgba(230,126,34,0.10);
    border-left: 5px solid #ffb45c;
    transform: scale(1.025);
}
.inspiration-teaser .tags {
    color: #e67e22;
    font-size: 0.98rem;
    font-family: 'Montserrat', sans-serif;
    margin-top: 8px;
}

.case-study {
    background: #E67E22;
    color: #232c34;
    margin-bottom: 32px;
    border-radius: 17px;
    padding: 32px 30px 22px 30px;
    box-shadow: 0 4px 16px 0 rgba(230,126,34,0.10);
    font-size: 1.05rem;
    position: relative;
}
.case-study blockquote {
    margin-top: 14px;
    font-style: italic;
    color: #232c34;
    background: #fff5e9;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 1.13rem;
}

.tips-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}
.tips-list li {
    flex: 1 1 210px;
    background: #28323a;
    border-radius: 14px;
    box-shadow: 0 1px 10px rgba(44,62,80,0.09);
    padding: 24px 18px;
    min-width: 179px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.tips-list h3 {
    color: #e67e22;
    font-size: 1.07rem;
}

.quick-tips {
    background: #2b3a42;
    border-radius: 11px;
    padding: 19px 18px 12px 18px;
    margin-top: 16px;
    font-size: 1rem;
    color: #fff;
    box-shadow: 0 2px 12px 0 rgba(44,62,80,0.07);
}
.quick-tips h4 {
    color: #e67e22;
    font-size: 1.08rem;
    margin-bottom: 10px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.faq-list li strong {
    color: #e67e22;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 5px;
}

.info-message {
    background: #fff5e9;
    color: #2b3a42;
    border-radius: 13px;
    padding: 18px 14px;
    box-shadow: 0 2px 8px rgba(230,126,34,0.08);
    margin-top: 18px;
    font-size: 1rem;
}

/* --- TESTIMONIALS --- */
.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin: 30px 0 24px 0;
    justify-content: flex-start;
}
.testimonial-card {
    background: #F5F6FA;
    color: #1c252b;
    border-radius: 17px;
    box-shadow: 0 6px 26px rgba(30,35,40,0.13);
    padding: 22px 18px 18px 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    min-width: 240px;
    max-width: 390px;
    font-size: 1rem;
    margin-bottom: 24px;
    position: relative;
    border-left: 4px solid #e67e22;
    transition: box-shadow 0.22s, border-color 0.12s, transform 0.18s;
}
.testimonial-card:hover {
    box-shadow: 0 12px 44px 0 rgba(230,126,34,0.19);
    border-left: 4px solid #ffb45c;
    transform: scale(1.03);
}
.testimonial-card p {
    font-size: 1.04rem;
    color: #1c252b;
    margin-bottom: 5px;
    font-style: italic;
}
.testimonial-meta {
    color: #e67e22;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Montserrat', Arial, sans-serif;
    margin-bottom: 0;
}
.trust-signals {
    display: flex;
    gap: 34px;
    align-items: center;
    margin-top: 23px;
    color: #e67e22;
    font-size: 1.07rem;
    font-family: 'Montserrat', Arial, sans-serif;
}
.trust-signals img {
    height: 22px;
    margin-right: 6px;
    vertical-align: middle;
    filter: drop-shadow(0 0px 4px #e67e22);
}

.testimonial-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 20px;
}
.testimonial-list .testimonial-card {
    flex: 1 1 260px;
}
.testimonial-list img {
    margin-bottom: -2px;
    height: 18px;
}

/* --- FOOTER --- */
footer {
    width: 100%;
    background: #232c34;
    padding: 44px 0 30px 0;
    color: #F5F6FA;
    font-size: 0.97rem;
    letter-spacing: 0.01em;
    border-radius: 54px 54px 0 0;
    box-shadow: 0 -4px 20px rgba(44,62,80,0.11);
    margin-top: 70px;
}
footer .container {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    justify-content: space-between;
    align-items: flex-start;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.footer-brand img {
    height: 38px;
    margin-bottom: 4px;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-nav a {
    color: #e67e22;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    letter-spacing: 0.02em;
    font-weight: 500;
}
.footer-nav a:hover, .footer-nav a:focus {
    text-decoration: underline;
    color: #ffb45c;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.footer-contact img {
    height: 17px;
    margin-right: 7px;
    vertical-align: middle;
    opacity: 0.86;
}

/* --- TYPOGRAPHY & MISC UTILS --- */
.text-section {
    max-width: 730px;
    color: #F5F6FA;
    font-size: 1.1rem;
}
.text-section h2 { margin-top: 0; }

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 3000;
    background: #232c34;
    color: #ffffff;
    padding: 22px 18px;
    box-shadow: 0 -2px 20px rgba(44,62,80,0.15);
    border-radius: 12px 12px 0 0;
    gap: 16px;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.hide {
    transform: translateY(120%);
    pointer-events: none;
    opacity: 0;
}
.cookie-banner .cookie-text {
    font-size: 1.06rem;
    line-height: 1.5;
    flex: 2;
    margin-right: 22px;
}
.cookie-banner .cookie-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.cookie-banner button {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 24px;
    border: none;
    min-width: 120px;
    margin: 0;
    cursor: pointer;
    transition: background 0.16s, color 0.16s, box-shadow 0.18s;
}
.cookie-banner .accept {
    background: #e67e22;
    color: #fff;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus { background: #ffb45c; color: #232c34; }
.cookie-banner .reject {
    background: transparent;
    color: #fff;
    border: 1.5px solid #e67e22;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus { background: #e67e22; color: #fff; }
.cookie-banner .settings {
    background: #232c34;
    color: #e67e22;
    border: 1.5px solid #e67e22;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
    background: #e67e22;
    color: #fff;
}

.cookie-modal-overlay {
    position: fixed;
    left: 0; top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(32,36,40,0.76);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3010;
    transition: opacity 0.26s;
}
.cookie-modal {
    background: #232c34;
    color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 44px rgba(44,62,80,0.15);
    max-width: 430px;
    width: 96vw;
    padding: 35px 28px 25px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
}
.cookie-modal h2 {
    font-size: 1.12rem;
    margin-bottom: 14px;
    color: #e67e22;
}
.cookie-modal .category {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.cookie-modal label {
    font-size: 1rem;
}
.cookie-modal .toggles {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 11px;
}
.cookie-modal .actions {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}
.cookie-modal .close-btn {
    position: absolute;
    top: 18px; right: 18px;
    background: transparent;
    border: none;
    color: #e67e22;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}
.cookie-modal .close-btn:hover, .cookie-modal .close-btn:focus { color: #ffb45c; }

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1100px) {
    .container { padding-left: 12px; padding-right: 12px; }
    .footer-contact, .footer-nav, .footer-brand { font-size: 0.98rem; }
    .trust-signals { gap: 18px; font-size: 0.97rem; }
}
@media (max-width: 900px) {
    .feature-grid, .catalog-categories, .testimonial-slider, .testimonial-list, .inspiration-list, .inspirations-preview, .tips-list {
        flex-direction: column;
    }
    .feature-grid > li, .catalog-category, .testimonial-card, .inspiration-teaser, .tips-list li {
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .section {
        margin-bottom: 38px;
        padding: 26px 8px;
    }
    .hero { padding: 38px 0 27px; border-radius: 0 0 22px 22px; }
    .hero h1 { font-size: 1.57rem; }
    .container {
        padding: 0 8px;
        width: 100%;
    }
    .main-nav, .btn-accent { display: none; }
    .mobile-menu-toggle { display: block; }
    header .container {
        gap: 10px;
        min-height: 54px;
    }
    .content-wrapper, .footer-contact, .footer-nav, .footer-brand {
        flex-direction: column;
        gap: 14px;
    }
    .catalog-category, .testimonial-card, .case-study {
        padding: 19px 11px 12px 14px;
        font-size: 0.99rem;
    }
    .case-study blockquote { padding: 10px 10px 10px 15px; font-size: 1rem; }
    .testimonial-card { min-width: 140px; max-width: 97vw; }
    .catalog-categories, .feature-grid, .tips-list {
        gap: 12px;
    }
    .card, .card-container, .content-grid, .testimonial-list, .testimonial-slider {
        gap: 12px;
    }
    .text-image-section { flex-direction: column; align-items: flex-start; gap: 15px; }
    .footer-contact { gap: 7px; }
    .footer-brand img { height: 31px; }
    .cookie-banner { flex-direction: column; align-items: stretch; gap: 10px; padding: 11px 5px; }
    .cookie-banner .cookie-text { margin-right: 0; font-size: 0.97rem; }
    .cookie-banner .cookie-actions { gap: 8px; justify-content: flex-start; }
}
@media (max-width: 560px) {
    h1 { font-size: 1.22rem; }
    h2 { font-size: 1.03rem; }
    h3 { font-size: 1.01rem; }
    .footer-contact, .footer-nav, .footer-brand { font-size: 0.93rem; }
    .hero { padding: 19px 0 9px; }
    .cookie-modal { padding: 16px 7px 13px 11px; font-size: 0.96rem; }
}

/* --- MICRO-INTERACTIONS / ANIMATIONS --- */
.btn, .btn-accent, .feature-grid li, .catalog-category, .testimonial-card {
    will-change: transform, box-shadow;
    transition: box-shadow 0.25s, transform 0.14s, border-color 0.14s;
}
.btn:active, .btn-accent:active, .feature-grid li:active,
.catalog-category:active, .testimonial-card:active {
    transform: scale(.97);
    box-shadow: 0 2px 4px #e67e22CC;
}

/* --- NEON / FUTURISTIC ACCENTS --- */
.btn-accent, .catalog-category:hover, .feature-grid li:hover {
    box-shadow: 0 0 14px 3px #e67e22cc, 0 6px 28px 0 rgba(230,126,34,0.16);
}
.feature-grid li:before, .catalog-category:before {
    content: '';
    display: block;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 16px;
    box-shadow: 0 0 22px 1px #FFB45C44 inset;
    pointer-events: none;
    opacity: 0.09;
}
.feature-grid li:hover:before, .catalog-category:hover:before {
    opacity: 0.21;
}

/* --- UTILITIES & ACCESSIBILITY --- */
*:focus {
    outline: 2px dashed #e67e22;
    outline-offset: 1px;
}

::-webkit-scrollbar {
    width: 10px;
    background: #232c34;
}
::-webkit-scrollbar-thumb {
    background: #e67e22;
    border-radius: 4px;
}

/* --- END --- */
