p {
    margin-bottom: 0;
}

.category-tree {
    font-size: 1rem;
    line-height: 1.2em;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
}

.category-tree .tree-link {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
    font-weight: 500;
    display: block;
    width: 100%;
}

#cart-count {
    background: var(--primary-color);
    border-radius: 100%;
    width: 18px;
    height: 18px;
    position: absolute;
    font-size: 12px;
    color: var(--primary-color-text);
    line-height: 18px;
    top: -5px;
    right: 10px;
}

#cart-dropdown > button {
    background: none;
    border: none;
    padding: 0;
    font-size: 1.125rem;
}

.header-top-logo-title img {
    max-width: 175px;
}
.footer-column li a {
    display: inline-block;
}
.footer-column li a::after {
    content: '';
    background: #fff;
    width: 0%;
    height: 1px;
    display: block;
    transition: .3s all;
}
.footer-column li a:hover::after {
    width: 100%;
}

#cart-dropdown .dropdown-menu {
    z-index: 9999;
}

.category-tree .tree-link:hover {
    background-color: var(--primary-color-dark);
    color: var(--primary-color-text);
}

.category-tree .tree-link.active {
    background-color: var(--primary-color);
    color: var(--primary-color-text);
}

.swiper .swiper-button-prev {
    color: var(--primary-color);
}
.swiper .swiper-button-next {
    color: var(--primary-color);
}
.btn-link-theme {
    color: var(--primary-color-text);
}
.btn-link-theme:hover {
    color: var(--primary-color-dark);
}
.btn-theme {
    background-color: var(--primary-color);
    border: none;
    color: var(--primary-color-text);
}
.btn-theme-outline {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.btn-theme-outline:hover {
    background-color: var(--primary-color);
    color: var(--primary-color-text);
    border: 1px solid var(--primary-color);
}
.btn-theme:hover {
    background-color: var(--primary-color-dark);
    color: var(--primary-color-text);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--primary-color-text);
}
.pagination .page-item .page-link {
    color: var(--primary-color);
}

.category-tree .toggle {
    cursor: pointer;
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}
.category-tree li.open > .d-flex > .toggle {
    transform: rotate(180deg);
}

.product-card-add {
    background-color: var(--primary-color);
    border-radius: .5rem;
    margin-left: 1rem;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card-add:hover {
    background-color: var(--primary-color-dark);
}
.product-card-add svg {
    fill: var(--primary-color-text);
    width: 24px;
    height: 24px;
}

.product-list--item-image {
    height: 350px;
    object-fit: cover;
    padding: 10px;
}

.delivery_method_pickup-message {
    padding: 16px;
    background: #ededed;
    margin: 16px 0;
    margin-left: 20px;
    font-size: 14px;
    line-height: 1.2em;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.delivery_method_pickup-message svg {
    width: 64px;
    height: auto;
}

@media screen and (max-width: 768px) {
    .delivery_method_pickup-message svg {
        display: none;
    }
}