/* ===========================================================
   HOUSE OF LULI — MAIN STYLESHEET
   =========================================================== */

:root {
    --black: #050505;
    --white: #ffffff;
    --gray: #f4f4f4;
    --light-gray: #eeeeee;
    --dark-gray: #777777;
    --blue: #0066ff;
    --transition: all 0.3s ease;
}

/* ===========================================================
   RESET
   =========================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

/* ===========================================================
   CONTAINER
   =========================================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===========================================================
   HEADER
   =========================================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    background: var(--white);

    z-index: 1000;

    transition: var(--transition);

    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-bottom-color: var(--light-gray);
}

.nav-wrap {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    padding: 18px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
    z-index: 1000;
}

/* ===========================================================
   LOGO
   =========================================================== */

.logo {
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -1px;

    display: inline-flex;
    align-items: center;

    white-space: nowrap;

    position: relative;
    z-index: 1003;
}

.logo span:first-of-type {
    color: var(--blue);
}

.logo .dot {
    width: 7px;
    height: 7px;

    background: var(--blue);

    border-radius: 50%;

    display: inline-block;

    margin-left: 3px;
    margin-top: 17px;
}

/* ===========================================================
   NAVIGATION
   =========================================================== */

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;

    display: flex;
    align-items: center;

    gap: 35px;

    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links li a {
    position: relative;

    display: inline-block;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1px;

    color: var(--black);

    padding: 8px 0;

    transition: var(--transition);
}

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

.nav-links li a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: var(--blue);

    transition: var(--transition);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* ===========================================================
   NAV ICONS
   =========================================================== */

.nav-icons {
    display: flex;
    align-items: center;

    gap: 12px;

    position: relative;
    z-index: 1001;
}

.icon-btn {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;

    background: var(--gray);

    border-radius: 50%;

    color: var(--black);

    font-size: 17px;

    transition: var(--transition);

    position: relative;

    flex-shrink: 0;

    text-decoration: none;
}

.icon-btn:hover {
    background: var(--blue);
    color: var(--white);

    transform: translateY(-3px);
}

/* ===========================================================
   CART COUNT
   =========================================================== */

.cart-count {
    position: absolute;

    top: -5px;
    right: -5px;

    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--blue);
    color: var(--white);

    border-radius: 50%;

    font-size: 11px;
    font-weight: 700;

    line-height: 1;
}

/* ===========================================================
   MOBILE MENU BUTTON
   =========================================================== */

.menu-toggle {
    display: none;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;

    width: 42px;
    height: 42px;

    padding: 0;

    background: var(--gray);

    border: none;

    border-radius: 50%;

    cursor: pointer;

    transition: var(--transition);

    flex-shrink: 0;

    position: relative;

    z-index: 1002;

    pointer-events: auto;

    touch-action: manipulation;
}

.menu-toggle span {
    display: block;

    width: 24px;
    height: 3px;

    background: var(--black);

    border-radius: 3px;

    transition: var(--transition);

    pointer-events: none;
}

.menu-toggle:hover {
    background: var(--blue);

    transform: translateY(-3px) scale(1.05);
}

.menu-toggle:hover span {
    background: var(--white);
}

/* ACTIVE HAMBURGER */

.menu-toggle.active {
    background: var(--blue);
}

.menu-toggle.active span {
    background: var(--white);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.menu-toggle:focus {
    outline: none;
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
}

/* ===========================================================
   HERO
   =========================================================== */

.hero {
    min-height: 100vh;

    padding-top: 100px;

    display: flex;
    align-items: center;

    background: var(--black);

    color: var(--white);

    position: relative;

    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(45px, 7vw, 90px);

    line-height: 0.95;

    font-weight: 800;

    letter-spacing: -4px;

    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--blue);
}

.hero p {
    max-width: 600px;

    font-size: 17px;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.75);

    margin-bottom: 35px;
}

/* ===========================================================
   BUTTONS
   =========================================================== */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 14px 25px;

    border-radius: 5px;

    border: none;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.5px;

    cursor: pointer;

    transition: var(--transition);
}

.btn-primary {
    background: var(--blue);

    color: var(--white);
}

.btn-primary:hover {
    background: #0052cc;

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.25);
}

.btn-secondary {
    background: var(--white);

    color: var(--black);
}

.btn-secondary:hover {
    background: var(--blue);

    color: var(--white);

    transform: translateY(-3px);
}

/* ===========================================================
   SECTIONS
   =========================================================== */

section {
    position: relative;
}

.section {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: clamp(32px, 5vw, 55px);

    line-height: 1;

    font-weight: 800;

    letter-spacing: -2px;

    margin-bottom: 15px;
}

.section-title p {
    color: var(--dark-gray);

    font-size: 15px;

    line-height: 1.7;

    max-width: 650px;
}

/* ===========================================================
   PRODUCT GRID
   =========================================================== */

.product-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}

.product-card {
    position: relative;

    background: var(--white);

    overflow: hidden;

    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-image {
    position: relative;

    aspect-ratio: 1 / 1;

    background: var(--gray);

    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 18px 0;
}

.product-info h3 {
    font-size: 15px;

    font-weight: 600;

    margin-bottom: 8px;
}

.product-price {
    font-size: 14px;

    font-weight: 700;

    color: var(--blue);
}

/* ===========================================================
   CATEGORY GRID
   =========================================================== */

.category-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.category-card {
    position: relative;

    min-height: 300px;

    overflow: hidden;

    background: var(--black);
}

.category-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

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

.category-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;

    padding: 25px;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8),
        transparent
    );
}

.category-overlay h3 {
    color: var(--white);

    font-size: 22px;

    font-weight: 700;
}

/* ===========================================================
   CART OVERLAY
   =========================================================== */

.cart-overlay {
    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.5);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition: var(--transition);

    z-index: 1998;
}

.cart-overlay.open {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}

/* ===========================================================
   CART DRAWER
   =========================================================== */

.cart-drawer {
    position: fixed;

    top: 0;
    right: 0;

    width: min(420px, 100%);

    height: 100vh;

    background: var(--white);

    z-index: 1999;

    display: flex;

    flex-direction: column;

    transform: translateX(100%);

    transition: var(--transition);

    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-head {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 25px;

    border-bottom: 1px solid var(--light-gray);
}

.cart-head h3 {
    font-size: 20px;

    font-weight: 700;
}

.cart-items {
    flex: 1;

    overflow-y: auto;

    padding: 20px 25px;
}

.cart-foot {
    padding: 25px;

    border-top: 1px solid var(--light-gray);
}

.cart-total-row {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 20px;

    font-weight: 700;
}

.empty-cart {
    text-align: center;

    color: var(--dark-gray);

    padding: 50px 20px;
}

/* ===========================================================
   TOAST
   =========================================================== */

.toast {
    position: fixed;

    right: 25px;
    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 14px 20px;

    background: var(--black);

    color: var(--white);

    border-radius: 5px;

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition: var(--transition);

    z-index: 3000;

    font-size: 13px;
}

.toast.show {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.dot-y {
    width: 8px;
    height: 8px;

    background: var(--blue);

    border-radius: 50%;
}

/* ===========================================================
   FOOTER
   =========================================================== */

footer {
    background: var(--black);

    color: var(--white);

    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 40px;

    padding-bottom: 50px;

    border-bottom: 1px solid #222;
}

.footer-logo {
    font-size: 27px;

    font-weight: 800;

    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--blue);
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);

    font-size: 14px;

    line-height: 1.8;

    max-width: 350px;
}

.footer-col h4 {
    font-size: 14px;

    margin-bottom: 20px;

    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);

    font-size: 13px;

    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--blue);
}

.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-top: 25px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 12px;
}

/* ===========================================================
   MOBILE NAVIGATION
   =========================================================== */

@media (max-width: 900px) {

    .main-header {
        z-index: 1000;
    }

    .nav-wrap {
        padding: 14px 18px;

        position: relative;

        z-index: 1000;
    }

    .logo {
        font-size: 23px;

        position: relative;

        z-index: 1003;
    }

    .nav-icons {
        gap: 10px;

        position: relative;

        z-index: 1001;
    }

    /*
     * MOBILE NAVIGATION PANEL
     */

    .nav-links {
        position: fixed;

        top: 70px;
        left: 0;
        right: 0;

        width: 100%;

        background: var(--black);

        display: flex;

        flex-direction: column;

        align-items: stretch;

        padding: 24px;

        gap: 0;

        transform: translateY(-120%);

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transition:
            transform 0.3s ease,
            opacity 0.3s ease,
            visibility 0.3s ease;

        border-bottom: 1px solid #222;

        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);

        z-index: 999;
    }

    /*
     * OPEN MOBILE NAVIGATION
     */

    .nav-links.open {
        transform: translateY(0);

        opacity: 1;

        visibility: visible;

        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;

        margin: 0;

        padding: 0;
    }

    .nav-links li a {
        display: block;

        width: 100%;

        padding: 14px 4px;

        color: var(--white);

        font-size: 15px;

        position: relative;
    }

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

    .nav-links li a::after {
        bottom: 5px;
    }

    /*
     * FORCE HAMBURGER ABOVE MOBILE NAV
     */

    .menu-toggle {
        display: flex;

        position: relative;

        z-index: 1002;

        pointer-events: auto;

        touch-action: manipulation;
    }

    .menu-toggle span {
        pointer-events: none;
    }

    /*
     * KEEP ACCOUNT / SEARCH / CART ABOVE NAV
     */

    .icon-btn {
        position: relative;

        z-index: 1001;
    }
}

/* ===========================================================
   TABLET
   =========================================================== */

@media (max-width: 768px) {

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero {
        min-height: 85vh;
    }

    .section {
        padding: 80px 0;
    }
}

/* ===========================================================
   SMALL MOBILE
   =========================================================== */

@media (max-width: 600px) {

    .nav-wrap {
        padding: 12px 14px;

        min-height: 62px;
    }

    .logo {
        font-size: 21px;
    }

    .nav-icons {
        gap: 7px;
    }

    .icon-btn,
    .menu-toggle {
        width: 38px;

        height: 38px;
    }

    .icon-btn {
        font-size: 15px;
    }

    .menu-toggle {
        display: flex;

        width: 38px;
        height: 38px;

        position: relative;

        z-index: 1002;

        pointer-events: auto;

        touch-action: manipulation;
    }

    .menu-toggle span {
        width: 22px;

        height: 2.5px;

        pointer-events: none;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .cart-count {
        width: 18px;

        height: 18px;

        font-size: 10px;

        top: -5px;

        right: -5px;
    }

    .nav-links {
        top: 62px;

        padding: 20px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 15px;

        text-align: center;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .container {
        padding: 0 18px;
    }

    .section {
        padding: 65px 0;
    }

    .toast {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
}

/* ===========================================================
   VERY SMALL SCREENS
   =========================================================== */

@media (max-width: 380px) {

    .logo {
        font-size: 19px;
    }

    .nav-icons {
        gap: 5px;
    }

    .icon-btn,
    .menu-toggle {
        width: 35px;

        height: 35px;
    }

    .menu-toggle span {
        width: 20px;

        height: 2px;
    }
}

/* ===========================================================
   SEARCH OVERLAY
   =========================================================== */

.search-overlay {
    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.88);

    display: flex;

    align-items: flex-start;
    justify-content: center;

    padding: 120px 25px 40px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    z-index: 3000;
}

.search-overlay.open {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}

.search-box {
    width: 100%;

    max-width: 850px;

    position: relative;
}

.search-close {
    position: absolute;

    top: -70px;
    right: 0;

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    background: var(--white);

    color: var(--black);

    font-size: 18px;

    cursor: pointer;

    transition: var(--transition);
}

.search-close:hover {
    background: var(--blue);

    color: var(--white);

    transform: rotate(90deg);
}

.search-content {
    width: 100%;
}

.search-label {
    display: block;

    color: var(--white);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.search-form {
    width: 100%;

    display: flex;

    align-items: center;

    background: var(--white);

    border-radius: 5px;

    overflow: hidden;

    border: 2px solid transparent;

    transition: var(--transition);
}

.search-form:focus-within {
    border-color: var(--blue);

    box-shadow:
        0 0 0 5px rgba(0, 102, 255, 0.15);
}

.search-form input[type="search"] {
    flex: 1;

    min-width: 0;

    height: 65px;

    padding: 0 20px;

    border: none;

    outline: none;

    background: transparent;

    color: var(--black);

    font-size: 18px;

    font-family: inherit;
}

.search-form input[type="search"]::placeholder {
    color: #999;
}

.search-form input[type="search"]::-webkit-search-cancel-button {
    cursor: pointer;
}

.search-submit {
    width: 65px;
    height: 65px;

    border: none;

    background: var(--blue);

    color: var(--white);

    font-size: 20px;

    cursor: pointer;

    transition: var(--transition);
}

.search-submit:hover {
    background: #0052cc;
}

.search-hint {
    margin-top: 15px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;
}


/* ===========================================================
   SEARCH MOBILE
   =========================================================== */

@media (max-width: 600px) {

    .search-overlay {
        padding: 100px 18px 30px;
    }

    .search-close {
        top: -60px;

        width: 40px;
        height: 40px;
    }

    .search-form input[type="search"] {
        height: 58px;

        padding: 0 15px;

        font-size: 16px;
    }

    .search-submit {
        width: 58px;
        height: 58px;
    }

    .search-hint {
        font-size: 12px;
    }

}

/* ===========================================================
   SEARCH OVERLAY
   =========================================================== */

.search-overlay {
    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.88);

    display: flex;

    align-items: flex-start;
    justify-content: center;

    padding: 120px 25px 40px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    z-index: 3000;
}

.search-overlay.open {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}

.search-box {
    width: 100%;

    max-width: 850px;

    position: relative;
}

.search-close {
    position: absolute;

    top: -70px;
    right: 0;

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    background: var(--white);

    color: var(--black);

    font-size: 18px;

    cursor: pointer;

    transition: var(--transition);
}

.search-close:hover {
    background: var(--blue);

    color: var(--white);

    transform: rotate(90deg);
}

.search-content {
    width: 100%;
}

.search-label {
    display: block;

    color: var(--white);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.search-form {
    width: 100%;

    display: flex;

    align-items: center;

    background: var(--white);

    border-radius: 5px;

    overflow: hidden;

    border: 2px solid transparent;

    transition: var(--transition);
}

.search-form:focus-within {
    border-color: var(--blue);

    box-shadow:
        0 0 0 5px rgba(0, 102, 255, 0.15);
}

.search-form input[type="search"] {
    flex: 1;

    min-width: 0;

    height: 65px;

    padding: 0 20px;

    border: none;

    outline: none;

    background: transparent;

    color: var(--black);

    font-size: 18px;

    font-family: inherit;
}

.search-form input[type="search"]::placeholder {
    color: #999;
}

.search-form input[type="search"]::-webkit-search-cancel-button {
    cursor: pointer;
}

.search-submit {
    width: 65px;
    height: 65px;

    border: none;

    background: var(--blue);

    color: var(--white);

    font-size: 20px;

    cursor: pointer;

    transition: var(--transition);
}

.search-submit:hover {
    background: #0052cc;
}

.search-hint {
    margin-top: 15px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;
}


/* ===========================================================
   SEARCH MOBILE
   =========================================================== */

@media (max-width: 600px) {

    .search-overlay {
        padding: 100px 18px 30px;
    }

    .search-close {
        top: -60px;

        width: 40px;
        height: 40px;
    }

    .search-form input[type="search"] {
        height: 58px;

        padding: 0 15px;

        font-size: 16px;
    }

    .search-submit {
        width: 58px;
        height: 58px;
    }

    .search-hint {
        font-size: 12px;
    }

}


/* ===========================================================
   HOUSE OF LULI LIVE SEARCH RESULTS
   =========================================================== */

.search-results {
    width: 100%;
    max-width: 1100px;
    margin: 25px auto 0;
    padding: 0 20px 40px;
    box-sizing: border-box;
}

.search-section {
    margin-bottom: 28px;
}

.search-section-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #777;
}

.search-product-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-product-item {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    text-decoration: none;
    color: #111;
    transition: 0.2s ease;
}

.search-product-item:hover {
    border-color: #111;
    transform: translateY(-1px);
}

.search-product-image {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.search-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.search-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #999;
}

.search-product-info {
    flex: 1;
    min-width: 0;
}

.search-product-info strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 5px;
}

.search-product-info span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2454d8;
}

.search-category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    color: #111;
    text-decoration: none;
    transition: 0.2s ease;
}

.search-category-item:hover {
    border-color: #111;
}

.search-category-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f3f3;
    border-radius: 8px;
    font-size: 20px;
}

.search-category-info {
    flex: 1;
}

.search-category-info strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
}

.search-category-info small {
    display: block;
    margin-top: 3px;
    color: #888;
    font-size: 12px;
}

.search-arrow {
    font-size: 20px;
    color: #999;
    flex-shrink: 0;
}

.search-loading,
.search-message,
.search-no-results {
    padding: 25px;
    text-align: center;
    color: #777;
}

.search-no-results strong {
    display: block;
    color: #111;
    font-size: 17px;
    margin-bottom: 6px;
}

.search-no-results span {
    display: block;
    font-size: 14px;
}


/* ===========================================================
   MOBILE SEARCH
   =========================================================== */

@media (max-width: 600px) {

    .search-results {
        padding-left: 10px;
        padding-right: 10px;
        margin-top: 18px;
    }

    .search-product-item {
        padding: 10px;
        gap: 11px;
    }

    .search-product-image {
        width: 58px;
        height: 58px;
        min-width: 58px;
    }

    .search-product-info strong {
        font-size: 14px;
    }

    .search-product-info span {
        font-size: 13px;
    }

    .search-category-item {
        padding: 11px;
    }

}