  /* =========================================================
   PROFESSIONAL PLP PRODUCT CARD
   ========================================================= */
.plp-card {
    position: relative;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    overflow: hidden;
    transition: all .25s ease;
    display: flex;
    flex-direction: column;
}

.plp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .10);
    border-color: #ddd;
}


/* =========================================================
   DEAL CARD
   ========================================================= */

.plp-card--deal {
    border-color: #f0e1e1;
}


/* =========================================================
   IMAGE
   ========================================================= */
.plp-card__media {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f7f7f7;
}

.plp-card__media-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.plp-card__media .product-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform .4s ease;
}

.plp-card:hover .product-img {
    transform: scale(1.04);
}

/*.plp-card__media {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.plp-card__media .product-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .45s ease;
}

.plp-card:hover .product-img {
    transform: scale(1.05);
}*/


/* =========================================================
   HOVER IMAGE
   ========================================================= */

.plp-card__media .product-img[data-hover] {
    transition: opacity .3s ease, transform .45s ease;
}


/* =========================================================
   WISHLIST
   ========================================================= */

.plp-card__wish {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 8;

    width: 38px;
    height: 38px;

    border: 0;
    border-radius: 50%;

    background: #fff;

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

    color: #111;
    font-size: 16px;

    box-shadow: 0 3px 12px rgba(0,0,0,.16);

    cursor: pointer;

    opacity: 1;

    transition: opacity .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.plp-card__wish.active,
.plp-card__wish.active:hover {
    background: #fff;
    color: #e53935;
}

.plp-card__wish:hover {
    background: #111;
    color: #fff;
    transform: scale(1.08);
}

@media (hover: hover) and (pointer: fine) {
    .plp-card__wish {
        opacity: 0;
    }

    .plp-card:hover .plp-card__wish,
    .plp-card:focus-within .plp-card__wish {
        opacity: 1;
    }
}


/* =========================================================
   ADMIN CHECKBOX
   ========================================================= */

.plp-card__check {
    position: absolute;
    z-index: 10;

    top: 12px;
    left: 12px;

    width: 19px;
    height: 19px;

    cursor: pointer;
}


/* =========================================================
   ADMIN STATUS BADGE
   ========================================================= */

.plp-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;

    padding: 5px 10px;

    border-radius: 20px;

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

    z-index: 5;
}

.plp-card__badge.is-live {
    background: #e7f7ed;
    color: #18733b;
}

.plp-card__badge.is-off {
    background: #fceaea;
    color: #c62828;
}


/* =========================================================
   PRODUCT INFO
   ========================================================= */

.plp-card__info {
    padding: 3px 10px 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
}


/* BRAND */

.plp-card__brand {
    margin-bottom: 0px;
    font-size: 11px;
    font-weight: 700;
    color: #777;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* PRODUCT NAME */

.plp-card__name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* min-height: 42px; */
    color: #191919;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease;
}

.plp-card__name:hover {
    color: #555;
}


/* =========================================================
   PRICE
   ========================================================= */

.plp-card__price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 9px;
}

.plp-card__now {
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

.plp-card__was {
    font-size: 12px;
    color: #999;

    text-decoration: line-through;
}

.plp-card__off {
    padding: 0px 6px;
    border-radius: 4px;
    background: #e8f7ed;
    color: #16803c;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}


/* =========================================================
   HOT DEAL
   ========================================================= */

.plp-card__deal {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 8px;
    padding: 0px 8px;
    border-radius: 5px;
    background: #fff0f0;
    color: #d32f2f;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3px;
}


/* ================================
   PRODUCT SIZE CHIPS
================================ */

.plp-card__sizes {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;

    margin-top: 11px;
    padding-top: 10px;

    border-top: 1px solid #f1f1f1;
}

.plp-card__sizes-label {
    font-size: 10px;
    font-weight: 700;
    color: #777;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-right: 2px;
}

.plp-card__size-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.plp-card__size {
    min-width: 38px;
    height: 32px;
    padding: 0px 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dedfe2;
    border-radius: 5px;
    background: #fff;
    color: #444;
    font-size: 14px;
    font-weight: 600;
    transition: all .2s ease;
}

.plp-card__size:hover {
    border-color: #111;
    background: #111;
    color: #fff;
}

/* =========================================================
   OUT OF STOCK
   ========================================================= */

.plp-card__oos {
    margin-top: 9px;

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

    color: #d32f2f;
}


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

.plp-card__admin {
    display: flex;
    gap: 7px;

    margin-top: 13px;
    padding-top: 11px;

    border-top: 1px solid #f0f0f0;
}

.plp-card__admin .btn {
    flex: 1;

    height: 34px;

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

    border-radius: 6px;

    font-size: 11px;
    font-weight: 600;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .plp-card {
        border-radius: 11px;
    }

    .plp-card__info {
        padding: 11px;
    }

    .plp-card__now {
        font-size: 16px;
    }

    .plp-card__name {
        font-size: 13px;
        min-height: 38px;
    }

    .plp-card__wish {
        width: 34px;
        height: 34px;
        top: 9px;
        right: 9px;
        font-size: 15px;
    }
}


@media (max-width: 575px) {

    .plp-card__media {
        aspect-ratio: 1 / 1.08;
    }

    .plp-card__info {
        padding: 10px;
    }

    .plp-card__brand {
        font-size: 12px;
    }

    .plp-card__name {
        font-size: 15px;
    }

    .plp-card__now {
        font-size: 17px;
    }

    .plp-card__was {
        font-size: 16px;
    }

    .plp-card__off {
        font-size: 12px;
    }

    .plp-card__sizes {
        font-size: 10px;
    }
}


/* =========================================================
   HOME — BRANDS IN SPOTLIGHT
   ========================================================= */

.brand-spotlight {
    padding: 36px 0 42px;
    background: #fff;
}

.offer-slider {
    margin: 0 0 28px;
    border-radius: 12px;
    overflow: hidden;
    background: #f3f3f3;
}

.offer-slider .carousel-item a,
.offer-slider .carousel-item img {
    display: block;
    width: 100%;
}

.offer-slider img {
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.brand-spotlight__title {
    margin: 0 0 18px;
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

.brand-spotlight__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.brand-spotlight__card {
    display: block;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 3px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.brand-spotlight__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .10);
    color: inherit;
}

.brand-spotlight__pic {
    height: 275px;
    padding: 4px;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-spotlight__pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.brand-spotlight__meta {
    padding: 12px 10px 14px;
    text-align: center;
}

.brand-spotlight__name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    color: #191919;
}

.brand-spotlight__sub {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #666;
}

@media (max-width: 1199px) {
    .brand-spotlight__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .brand-spotlight {
        padding: 24px 0 28px;
    }

    .offer-slider {
        margin-bottom: 18px;
    }

    .offer-slider img {
        height: 110px;
    }

    .brand-spotlight__title {
        font-size: 18px;
    }

    .brand-spotlight__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .brand-spotlight__pic {
        height: 140px;
    }

    .brand-spotlight__name {
        font-size: 12px;
    }
}

.category-brand-card {
    height: 100%;
    padding: 5px 4px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.25s ease;
}

.category-brand-link {
    display: block;
    text-decoration: none;
    color: #222;
}

.category-brand-image {
    width: 170px;
    height: 167px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #f7f7f7;
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #eeeeee;
}

.category-brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.category-brand-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    margin-top: 5px;
}

.category-brand-card:hover {
    transform: translateY(-4px);
}

.category-brand-card:hover .category-brand-image {
    border-color: #ddd;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
}

.category-brand-card:hover .category-brand-name {
    color: #000;
}


/* Tablet */
@media (max-width: 991px) {
    .category-brand-image {
        width: 100px;
        height: 100px;
    }

    .category-brand-name {
        font-size: 13px;
    }
}


/* Mobile */
@media (max-width: 575px) {
    .category-brand-card {
        padding: 8px 4px;
    }

    .category-brand-image {
        width: 144px;
        height: 144px;
        padding: 5px;
    }

    .category-brand-name {
        font-size: 16px;
    }
}

/* =========================================================
   HOME — CATEGORIES (NO SLIDER)
   ========================================================= */

.home-cats {
    padding-top: 18px;
    padding-bottom: 10px;
    background: #fff;
}

.home-cats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 10px;
    align-items: center;
}

.home-cats__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
}

.home-cats__item img {
    max-width: 100%;
    max-height: 84px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 991px) {
    .home-cats__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
    }

    .home-cats__item {
        min-height: 72px;
    }

    .home-cats__item img {
        max-height: 64px;
    }
}

@media (max-width: 575px) {
    .home-cats__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .home-cats__item img {
        max-height: 56px;
    }
}


/* =========================================================
   MOBILE HEADER — SEARCH / LANGUAGE / LOGIN / CART
   ========================================================= */

.header-mobile-tools {
    display: none;
}

.header-mobile-search {
    display: none;
}

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

    .top-header .header-language {
        display: none !important;
    }

    .navbar-default {
        background: #fff !important;
        padding: 6px 7px 1px !important;
    }

    .navbar-default .container-fluid {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-wrap: wrap;
        background: #fff !important;
    }

    .navbar-default .navbar-brand {
        flex: 1 1 auto;
        min-width: 0;
        justify-content: flex-start;
    }

    .header-mobile-tools {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        margin-left: auto;
        flex: 0 0 auto;
        order: 3;
        position: relative;
        z-index: 20;
    }

    .header-mobile-tools__link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1px;
        min-width: 36px;
        color: #222;
        text-decoration: none;
        line-height: 1.1;
    }

    .header-mobile-tools__link i {
        font-size: 20px;
        color: #da3674;
        font-weight: 900;
    }

    .header-mobile-tools__link span {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        white-space: nowrap;
    }

    .header-mobile-tools__cart .cart-icon-wrapper {
        position: relative;
        display: inline-flex;
    }

    .header-mobile-tools__cart .cart-count {
        position: absolute;
        top: -6px;
        right: -10px;
        min-width: 16px;
        height: 16px;
        padding: 0 4px;
        border-radius: 50%;
        background: #da3674;
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-mobile-tools .header-language {
        display: flex;
    }

    .header-mobile-tools .language-toggle {
        min-width: 44px;
        height: 32px;
        padding: 0 6px 0 20px;
        background: #f3f3f3;
    }

    .header-mobile-tools .language-arrow {
        left: 6px;
        font-size: 10px;
    }

    .header-mobile-tools .language-code {
        font-size: 12px;
        font-weight: 700;
    }

    .header-mobile-tools .language-dropdown {
        position: absolute;
        right: 0;
        left: auto;
        z-index: 1050;
    }

    .header-mobile-search {
        display: block !important;
        width: 100%;
        flex: 0 0 100%;
        order: 4;
        margin: 6px 0 0;
        position: relative;
        z-index: 5;
    }

    .header-mobile-search form {
        position: relative;
        margin: 0;
    }

    .header-mobile-search .form-control {
        width: 100%;
        height: 44px;
        padding: 0 46px 0 14px;
        border: 0;
        border-radius: 8px;
        background: #f3f3f3;
        font-size: 14px;
        color: #333;
        box-shadow: none;
    }

    .header-mobile-search .search-submit {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        width: 34px;
        height: 34px;
        border: 0;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .header-mobile-search .search-icon {
        font-size: 20px;
        color: #008c18;
    }

    .header-search {
        display: block !important;
        width: 100%;
        max-width: 100%;
    }

    .header-search .form-control {
        height: 44px;
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .header-mobile-tools {
        gap: 6px;
    }

    .header-mobile-tools__link span {
        display: none;
    }

    .header-mobile-tools .language-toggle {
        min-width: 40px;
        padding-right: 4px;
    }
}

.nav-link-arrow {
    display: none;
}

@media (max-width: 991px) {
    .navbar-collapse .navbar-nav .nav-link {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .navbar-collapse .navbar-nav .nav-link .text-line {
        flex: 1;
        text-align: left;
    }

    .navbar-collapse .nav-link-arrow {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        flex: 0 0 auto;
        font-size: 18px;
        line-height: 1;
        color: currentColor;
        opacity: .95;
        transition: transform .2s ease;
    }

    .navbar-collapse .nav-item.show > .nav-link .nav-link-arrow,
    .navbar-collapse .dropdown.show > .nav-link .nav-link-arrow {
        transform: rotate(90deg);
    }

    .navbar-collapse .dropdown-toggle::after {
        display: none !important;
    }
}

.paika-benefits {
    padding: 15px 0;
    background: #fff;
}

.benefit-box {
    min-height: 70px;
    padding: 10px 14px;
    background: #f7f9fb;
    border: 1px solid #e8edf2;
    border-radius: 12px;

    display: flex;
    align-items: center;

    transition: all 0.25s ease;
}

.benefit-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;

    border-radius: 9px;
    background: #20c968;
    color: #fff;

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

    font-size: 17px;
    margin-right: 12px;
}

.benefit-content {
    min-width: 0;
}

.benefit-content h5 {
    margin: 0 0 2px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    color: #111827;
}

.benefit-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.3;
    color: #7b8794;
}

.benefit-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}