.site-header {
    width: 100%;
    z-index: 999;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.site-header.fixed-header {
    position: fixed;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    animation: slideDown 0.4s ease-in-out;
    background: #fff;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.sub-link>a:hover {
    color: black !important;
}


.navbar {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 16px 0;
}


.site-menu {
    display: flex;
    justify-content: center;
    width: 100%;
}

.main-menu {
    list-style: none;
    display: flex;
    gap: 40px;
    justify-content: center;
      position: relative;
}



.menu-item.has-dropdown {
    height: 100%;
    padding: 33px 0px;
}


.menu-item.has-dropdown:hover>.dropdown {
    display: flex;
}

.dropdown {
    position: absolute;
    top: 92px;
    left: 67%;
    transform: translateX(-50%);
  
    width: 1000px;
    background: #ffffff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    padding: 30px 40px;
    z-index: 1000;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
}

.menu-item.has-dropdown:hover>.dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


.dropdown-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    flex: 1;
}

.dropdown-col h4 {
    font-size: 16px;
    font-weight: 600;
    color: #3819e7;
    margin-bottom: 10px;
}

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

.dropdown-col li {
    margin-bottom: 8px;
}

.dropdown-col a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.dropdown-col a:hover {
    color: #3819e7;
}

.dropdown-image {
    width: 300px;
    flex-shrink: 0;
}

.dropdown-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}


.dropdown_link_style {
    color: #707070;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    cursor: pointer;
    position: relative;
    border: none;
    background: none;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    display: block;
}

.dropdown_link_style:focus,
.dropdown_link_style:hover {
    color: #000;
}
.dropdown-grid ul li a {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: unset;
    color: #707070;
    padding-left: 10px;
    margin: 2px 0px;
}
.dropdown-grid ul li .child_sub_category {
    color: #242424 !important;
    font-size: 14px !important;
    font-style: normal;
    font-weight: 500;
    line-height: unset;
    letter-spacing: 0.26px;
    text-transform: uppercase;
    padding-left: 10px;
    margin: 0px 0px;
}

.dropdown_link_style:after {
    content: "";
    pointer-events: none;
    bottom: -2px;
    left: 50%;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #000;
    transition: width 400ms cubic-bezier(0.25, 0.8, 0.25, 1), left 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dropdown_link_style:focus:after,
.dropdown_link_style:hover:after {
    width: 100%;
    left: 0%;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.verticalflip {
    background-color: black;
    color: white;
    height: 25px;
    overflow: hidden;
    position: relative;
}

.verticalflip p {
    line-height: 25px;
    margin: 0;
    text-align: center;
    position: absolute;
    width: 100%;
    opacity: 0;
    animation: verticalFlip 9s linear infinite;
}

.verticalflip p:nth-child(1) {
    animation-delay: 0s;
}

.verticalflip p:nth-child(2) {
    animation-delay: 3s;
}

.verticalflip p:nth-child(3) {
    animation-delay: 6s;
}

@keyframes verticalFlip {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    10% {
        opacity: 1;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
        transform: translateY(0);
    }

    40% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 0;
    }
}
@media (max-width: 991px) {
    .m_navbar {
        display: block !important;
    }
}

@media (min-width: 992px) {
    #header_search_form {
        width: 50% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    #searchbar_close_btn {
        right: 25% !important;
        top: 0px !important;
    }
}

#searchbar_close_btn {
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 9999 !important;
}

.right-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    z-index: 9999;
    transition: right 0.3s ease-in-out;
    display: flex;
}

.right-drawer.active {
    right: 0;
}

.left-drawer {
    position: fixed;
    top: 0;
    left: -400px;
    width: 400px;
    height: 100vh;
    z-index: 9999;
    transition: left 0.3s ease-in-out;
    display: flex;
}

.left-drawer.active {
    left: 0;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.right-drawer.active .drawer-overlay,
.left-drawer.active .drawer-overlay {
    opacity: 1;
    visibility: visible;
}

.drawer-content {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    z-index: 9999;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background-color: #f8f9fa;
}

.drawer-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.drawer-close:hover {
    background-color: #eee;
    color: #333;
}

.drawer-body {
    flex: 1;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 0;
    position: relative;
}

.mobile-menu-container {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
    -webkit-overflow-scrolling: touch;
    min-height: 0;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-item {
    border-bottom: 1px solid #e5e5e5;
}

.mobile-menu-item:last-child {
    border-bottom: none;
}

.mobile-menu-link-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    transition: background-color 0.2s ease;
}

.mobile-menu-item:hover .mobile-menu-link-wrapper {
    background-color: #f5f5f5;
}

.mobile-menu-link {
    width: fit-content;
    padding: 10px 0px 10px 20px;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.25;
    transition: none;
    position: relative;
    pointer-events: auto;
    cursor: pointer;
}

.mobile-menu-link:hover {
    color: #000;
    text-decoration: none;
}

@media (max-width: 420px) {
    .mobile-menu-link {
        font-size: 14px;
    }

    .mobile-submenu-link {
        font-size: 13px;
    }

    .mobile-event-expire {
        font-size: 11px;
    }
}

.mobile-menu-item-event .mobile-menu-link-event {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-right: 16px;
}

.mobile-event-expire {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #000;
    font-size: 12px;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.mobile-event-expire.is-expired {
    opacity: 0.6;
}

.mobile-event-expire-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000;
    flex-shrink: 0;
}

.menu-chevron-toggle {
    background: none;
    border: none;
    padding: 10px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: none;
    margin: 0;
    outline: none;
}

.menu-chevron-toggle:hover {
    opacity: 0.7;
}

.menu-chevron-toggle:active {
    opacity: 0.5;
}

.mobile-menu-link-icon {
    justify-content: flex-start;
}

.menu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    font-size: 18px;
    position: relative;
}

.menu-icon i {
    font-size: 18px;
}

.menu-text {
    flex: 1;
}

.menu-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #666;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.menu-chevron svg {
    width: 100%;
    height: 100%;
    display: block;
}

.menu-chevron-right,
.menu-chevron-down {
    display: inline-flex;
    width: 20px;
    height: 20px;
}

.mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    display: none;
}

.mobile-menu-item.active .mobile-submenu {
    display: block;
}

.mobile-submenu-item {
    border-bottom: 1px solid #e5e5e5;
}

.mobile-submenu-item:last-child {
    border-bottom: none;
}

.mobile-submenu-link {
    display: block;
    padding: 10px 20px 10px 48px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.mobile-submenu-link:hover {
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
}

.mobile-menu-divider {
    height: 1px;
    background-color: #e5e5e5;
}

.mobile-menu-account {
    margin-top: 0;
}

@media (max-width: 991px) {
    .right-drawer {
        width: 100%;
        right: -100%;
    }
    .left-drawer {
        width: 100%;
        left: -100%;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
}

body.drawer-open {
    overflow: hidden;
}

.drawer-cart-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.drawer-cart-item:hover {
    background-color: #f8f9fa;
}

.drawer-cart-item:last-child {
    border-bottom: none;
}

.drawer-cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 15px;
    flex-shrink: 0;
    border: 1px solid #eee;
}

.drawer-cart-item-content {
    flex: 1;
    min-width: 0;
}

.drawer-cart-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.drawer-cart-item-title a {
    color: #333;
    text-decoration: none;
}

.drawer-cart-item-title a:hover {
    color: #007bff;
}

.drawer-cart-item-meta {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.drawer-cart-item-options {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}

.drawer-cart-item-options span {
    display: block;
    margin-bottom: 2px;
}

.drawer-cart-item-options em {
    font-style: normal;
    font-weight: 600;
    color: #555;
}

.drawer-cart-item-price {
    font-size: 15px;
    font-weight: 600;
    color: #007bff;
}

.drawer-cart-item-remove {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-left: 10px;
    flex-shrink: 0;
}

.drawer-cart-item-remove:hover {
    background-color: #dc3545;
    color: white;
}

.drawer-cart-summary {
    padding: 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.drawer-cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.drawer-cart-subtotal .text-muted {
    color: #666 !important;
    font-weight: 400;
}

.drawer-cart-actions {
    display: flex;
    gap: 10px;
}

.drawer-cart-actions .btn {
    flex: 1;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
}

.drawer-cart-actions .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

.drawer-cart-actions .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.drawer-cart-actions .btn-outline-primary {
    background-color: transparent;
    border-color: #007bff;
    color: #007bff;
}

.drawer-cart-actions .btn-outline-primary:hover {
    background-color: #007bff;
    color: white;
}

.drawer-empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.drawer-empty-cart i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 15px;
    display: block;
}

.drawer-empty-cart h5 {
    color: #333;
    margin-bottom: 10px;
}

.drawer-empty-cart p {
    color: #888;
    font-size: 14px;
}

.drawer-quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.drawer-quantity-btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #666;
    width: 25px;
    height: 25px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s ease;
}

.drawer-quantity-btn:hover {
    background: #e9ecef;
    color: #333;
}

.drawer-quantity-input {
    width: 40px;
    height: 25px;
    text-align: center;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 12px;
}

@keyframes drawer-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.floating-social-buttons {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    background: white;
    border: 2px solid transparent;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.messenger-btn {
    background: #0084FF;
    border-color: #0084FF;
}

.messenger-btn:hover {
    background: #0073E6;
    border-color: #0073E6;
}

@media (max-width: 991px) {
    .floating-social-buttons {
        bottom: 80px;
        right: 15px;
    }
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    .floating-btn img {
        width: 28px;
        height: 28px;
    }
}

.contact-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.55);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 11000;
}

.contact-modal.is-visible {
    opacity: 1;
    visibility: visible;
}

.contact-modal__dialog {
    background: #ffffff;
    width: 100%;
    max-width: 820px;
    max-height: 90vh;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18);
    transform: translateY(40px);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.contact-modal.is-visible .contact-modal__dialog {
    transform: translateY(0);
}

.contact-modal__header {
    padding: 28px 32px 12px;
}

.contact-modal__title {
    font-size: 27px;
    font-weight: 600;
    color: #111827;
    margin: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-modal__subtitle {
    margin-top: 15px;
    color: #4b5563;
    font-size: 20px;
    line-height: 1.6;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-modal__body {
    padding: 0 32px 8px;
}

.contact-modal__group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.contact-modal__label {
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
    font-size: 15px;
}

.contact-modal__input,
.contact-modal__textarea {
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 15px;
    transition: border 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.contact-modal__input:focus,
.contact-modal__textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    outline: none;
}

.contact-modal__textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-modal__footer {
    padding: 16px 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-modal__actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.contact-modal__submit {
    flex: 1;
    border: none;
    border-radius: 999px;
    background: black;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 20px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-modal__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.25);
    background: #111827;
}

.contact-modal__submit[disabled] {
    pointer-events: none;
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}

.contact-modal--success .contact-modal__dialog {
    max-width: 520px;
}

.contact-modal--success .contact-modal__header {
    align-items: center;
    text-align: center;
}

.contact-modal--success .contact-modal__actions {
    justify-content: center;
}

.contact-modal--success .contact-modal__submit {
    background: black;
    border-radius: 5px;
}

.contact-modal__close {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #1f2937;
    transition: background 0.2s ease, color 0.2s ease;
    position: absolute;
    left: 85%;
    top: 15px;
}

.contact-modal__close:hover {
    background: #1f2937;
    color: #ffffff;
}

.contact-modal__feedback {
    min-height: 20px;
    font-size: 14px;
    color: #dc2626;
}

.contact-modal__icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: rgba(22, 163, 74, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.contact-modal__captcha {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 14px;
    border: 1px dashed #94a3b8;
    border-radius: 12px;
    background: #f1f5f9;
}

body.contact-modal-open {
    overflow: hidden;
}

.search-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: rgba(15, 23, 42, 0.55);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 11000;
    overflow-y: auto;
}

.search-modal.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.search-modal.hidden-on-mobile {
    position: fixed;
    inset: 0;
}

.search-modal__dialog {
    background: #f8f9fa;
    width: 100%;
    max-width: 1000px;
    height: 750px;
    margin: 40px 20px 40px;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18);
    transform: translateY(40px);
    transition: transform 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.search-modal.is-visible .search-modal__dialog {
    transform: translateY(0);
}

.search-modal__search-bar {
    background: #fff;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.search-modal__search-bar .input-group {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.search-modal__search-bar .form-control {
    flex: 1;
    border: none;
    padding: 12px 16px;
    font-size: 15px;
}

.search-modal__search-bar .form-control:focus {
    outline: none;
    box-shadow: none;
}

.search-modal__search-bar .input-group-btn button {
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: #6b7280;
}


.search-modal__placeholder {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: #6b7280;
    font-size: 15px;
}

.search-modal__body {
    display: none;
    flex: 1;
    min-height: 0;
}

.search-modal__body.is-visible {
    display: flex;
}

.search-modal__skeleton-line {
    height: 14px;
    background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
    background-size: 200% 100%;
    animation: search-modal-skeleton-shimmer 1.2s ease-in-out infinite;
    border-radius: 4px;
    margin: 10px 20px;
}

.search-modal__categories-list li:nth-child(1) .search-modal__skeleton-line { width: 85%; }
.search-modal__categories-list li:nth-child(2) .search-modal__skeleton-line { width: 70%; }
.search-modal__categories-list li:nth-child(3) .search-modal__skeleton-line { width: 90%; }
.search-modal__categories-list li:nth-child(4) .search-modal__skeleton-line { width: 65%; }
.search-modal__categories-list li:nth-child(5) .search-modal__skeleton-line { width: 80%; }
.search-modal__categories-list li:nth-child(6) .search-modal__skeleton-line { width: 75%; }
.search-modal__categories-list li:nth-child(7) .search-modal__skeleton-line { width: 60%; }
.search-modal__categories-list li:nth-child(8) .search-modal__skeleton-line { width: 88%; }

.search-modal__card--skeleton {
    width: 230px;
    height: 345px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.search-modal__card--skeleton > div {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.search-modal__card--skeleton .search-modal__card-thumb {
    width: 100%;
    height: 245px;
    aspect-ratio: unset;
    flex-shrink: 0;
}

.search-modal__card--skeleton .search-modal__card-body {
    flex: 1;
    min-height: 0;
}

.search-modal__skeleton-image {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
    background-size: 200% 100%;
    animation: search-modal-skeleton-shimmer 1.2s ease-in-out infinite;
}

.search-modal__card-body .search-modal__skeleton-card-line {
    height: 13px;
    background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
    background-size: 200% 100%;
    animation: search-modal-skeleton-shimmer 1.2s ease-in-out infinite;
    border-radius: 4px;
    margin-bottom: 8px;
}

.search-modal__card-body .search-modal__skeleton-card-line:last-child {
    height: 14px;
    width: 45%;
    margin-bottom: 0;
}

@keyframes search-modal-skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.search-modal__categories {
    width: 220px;
    flex-shrink: 0;
    background: #fff;
    border-right: 1px solid #e5e7eb;
    padding: 20px 0;
}

.search-modal__categories-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 20px 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #000;
}

.search-modal__categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-modal__categories-list a {
    display: block;
    padding: 10px 20px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
}

.search-modal__categories-list a:hover {
    background: #f3f4f6;
    color: #000;
}

.search-modal__products {
    flex: 1;
    padding: 20px;
    background: #f8f9fa;
    overflow-y: auto;
    min-height: 0;
}

.search-modal__products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.search-modal__products-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.search-modal__view-all {
    font-size: 14px;
    color: #ea580c;
    text-decoration: none;
    font-weight: 500;
}

.search-modal__view-all:hover {
    color: #c2410c;
    text-decoration: underline;
}

.search-modal__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.search-modal__card {
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.search-modal__card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.search-modal__card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.search-modal__card-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 2/3;
    border-radius: 5px;
    object-fit: contain;
}

.search-modal__card-body {
    padding: 12px;
    display: block;
}

.search-modal__card-title {
    font-size: 13px;
    color: #374151;
    margin: 0 0 8px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-modal__card-price {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    display: block;
}

.search-modal__card-price--old {
    text-decoration: line-through;
    color: #888;
    font-size: 12px;
    margin-right: 6px;
}

.search-modal__card-badge {
    display: inline-block;
    background: #16a34a;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 999px;
    margin-left: 6px;
}

.search-modal__empty {
    text-align: center;
    color: #6b7280;
    padding: 40px 20px;
}

@media (max-width: 768px) {
    .search-modal__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-modal__body {
        flex-direction: column;
    }

    .search-modal__categories {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
}

@media (max-width: 540px) {
    .contact-modal__dialog {
        border-radius: 16px;
    }

    .contact-modal__header,
    .contact-modal__body,
    .contact-modal__footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-modal__actions {
        flex-direction: column-reverse;
    }

    .contact-modal__close {
        border-radius: 999px;
    }
}

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    display: none;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
}

@media (max-width: 991px) {
    .toolbar .toolbar-item:not(.toolbar-item-search):not(.visible-on-mobile) {
        display: none !important;
    }
    .mobile-bottom-nav {
        display: flex;
    }
}

.mobile-bottom-nav__container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 8px;
}

.mobile-bottom-nav__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    text-decoration: none;
    color: #6b7280;
    transition: all 0.2s ease;
    position: relative;
    min-width: 0;
}

.mobile-bottom-nav__item:hover,
.mobile-bottom-nav__item:focus {
    color: #111827;
    text-decoration: none;
}

.mobile-bottom-nav__item.active {
    color: #111827;
    font-weight: 600;
}

.mobile-bottom-nav__icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-bottom-nav__icon svg {
    width: 24px;
    height: 24px;
}

.mobile-bottom-nav__label {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.mobile-bottom-nav__badge {
    position: absolute;
    top: 4px;
    right: 8px;
    background: #000000;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    line-height: 1;
}

body.has-bottom-nav {
    padding-bottom: 70px;
}

@media (max-width: 991px) {
    body.has-bottom-nav {
        padding-bottom: calc(70px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 991px) {
    .scroll-to-top-btn {
        display: none !important;
    }
}
