/**
 * Nett Product List Widget CSS
 * Card Styles: Outlined Focus (2), Classic Overlay (1+3), Visual (4+5), Tech Specs (7), Modern Bold (8), Floating (9)
 */

/* ================================================================
   BASE / WRAPPER
   ================================================================ */
.npl-wrapper {
    width: 100%;
}

.npl-grid {
    display: grid;
    gap: 30px;
}

/* ================================================================
   CARD BASE
   ================================================================ */
.npl-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.npl-card a {
    text-decoration: none;
    color: inherit;
}

/* ================================================================
   OUTLINED FOCUS CARD (Style 2)
   ================================================================ */
.npl-card-outlined {
    background-color: #ffffff;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.npl-card-outlined:hover {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Badge: Corner style */
.npl-badge-outlined {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: #0f172a;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px 0 8px 0;
}

/* Image area */
.npl-outlined-image {
    height: 224px;
    background-color: #f8fafc;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.npl-outlined-image img {
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.npl-card-outlined:hover .npl-outlined-image img {
    transform: scale(1.1);
}

/* Add button */
.npl-outlined-add-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 20;
    border: none;
    cursor: pointer;
}

.npl-outlined-add-btn:hover {
    background-color: #2563eb;
    color: #ffffff;
}

/* Content */
.npl-outlined-content {
    padding: 0;
}

.npl-card-outlined .npl-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.npl-card-outlined .npl-title a {
    color: inherit;
}

.npl-outlined-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.npl-card-outlined .npl-category {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 0;
}

.npl-card-outlined .npl-price {
    font-size: 18px;
    font-weight: 700;
    color: #2563eb;
}

.npl-card-outlined .npl-rating {
    margin-top: 8px;
}

/* ================================================================
   CLASSIC OVERLAY CARD (Style 1+3)
   ================================================================ */
.npl-card-classic-overlay {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
}

.npl-card-classic-overlay:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Image area — with overlay capability */
.npl-card-classic-overlay .npl-card-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.npl-card-classic-overlay .npl-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}

/* Overlay gradient on image */
.npl-card-classic-overlay .npl-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.6), transparent);
    transition: background 0.4s ease;
    pointer-events: none;
}

/* Overlay content on image */
.npl-card-classic-overlay .npl-overlay-content {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    padding: 24px;
    color: #ffffff;
}

/* Overlay positions */
.npl-overlay-bottom {
    justify-content: flex-end;
}

.npl-overlay-center {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.npl-overlay-top {
    justify-content: flex-start;
}

.npl-card-classic-overlay .npl-overlay-content .npl-button {
    align-self: flex-start;
}

/* Content below image */
.npl-card-classic-overlay .npl-card-content {
    padding: 20px;
}

.npl-card-classic-overlay .npl-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}

.npl-card-classic-overlay .npl-title a {
    color: inherit;
}

.npl-card-classic-overlay:hover .npl-title {
    color: #2563eb;
}

/* Overlay action icons */
.npl-card-classic-overlay .npl-action-icons-overlay {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 12px;
    justify-content: flex-start;
}

/* ================================================================
   BADGE
   ================================================================ */
.npl-badge {
    position: absolute;
    z-index: 20;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 2px;
}

.npl-badge-top-left {
    top: 12px;
    left: 12px;
}

.npl-badge-top-right {
    top: 12px;
    right: 12px;
}

.npl-badge-bottom-left {
    bottom: 12px;
    left: 12px;
}

.npl-badge-bottom-right {
    bottom: 12px;
    right: 12px;
}

/* ================================================================
   CATEGORY
   ================================================================ */
.npl-category {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin-bottom: 4px;
    line-height: 1.4;
}

/* ================================================================
   TITLE
   ================================================================ */
.npl-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
    font-family: inherit;
}

.npl-title a {
    color: inherit;
    text-decoration: none;
}

/* ================================================================
   PRICE
   ================================================================ */
.npl-price-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.npl-price {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
}

.npl-card-classic-overlay .npl-price {
    color: #1e293b;
}

.npl-old-price {
    font-size: 13px;
    font-weight: 400;
    color: #94a3b8;
    text-decoration: line-through;
    line-height: 1.4;
}

.npl-card-classic-overlay .npl-old-price {
    color: rgba(148, 163, 184, 0.7);
}

/* ================================================================
   RATING
   ================================================================ */
.npl-rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.npl-rating i {
    font-size: 12px;
    line-height: 1;
}

.npl-star-filled {
    color: #facc15;
}

.npl-star-empty {
    color: #cbd5e1;
}

/* ================================================================
   ACTION ICONS
   ================================================================ */
.npl-action-icons {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 25;
}

.npl-action-icons-overlay {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 12px;
    justify-content: flex-start;
}

.npl-action-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #475569;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    font-size: 14px;
}

.npl-action-icon:hover {
    background-color: #2563eb;
    color: #ffffff;
    transform: scale(1.1);
}

.npl-action-icon i {
    transition: transform 0.3s ease;
}

.npl-action-icon svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
    fill: currentColor;
}

/* ================================================================
   BUTTON (Overlay style)
   ================================================================ */
.npl-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.npl-button:hover {
    background-color: #1d4ed8;
    color: #ffffff;
}

/* ================================================================
   IMAGE HOVER EFFECTS
   ================================================================ */
.npl-hover-zoom-in {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.npl-card:hover .npl-hover-zoom-in {
    transform: scale(1.05);
}

.npl-hover-zoom-out {
    transform: scale(1.05);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.npl-card:hover .npl-hover-zoom-out {
    transform: scale(1);
}

.npl-hover-rotate {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.npl-card:hover .npl-hover-rotate {
    transform: rotate(3deg) scale(1.05);
}

.npl-hover-grayscale {
    transition: filter 0.5s ease;
}
.npl-card:hover .npl-hover-grayscale {
    filter: grayscale(100%);
}

.npl-hover-color-from-gray {
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}
.npl-card:hover .npl-hover-color-from-gray {
    filter: grayscale(0%);
}

.npl-hover-blur {
    transition: filter 0.5s ease;
}
.npl-card:hover .npl-hover-blur {
    filter: blur(3px);
}

.npl-hover-brightness {
    transition: filter 0.5s ease;
}
.npl-card:hover .npl-hover-brightness {
    filter: brightness(1.2);
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
.npl-card.animated {
    animation-fill-mode: both;
}

.npl-card .animated-slow {
    animation-duration: 2s;
}

.npl-card .animated-fast {
    animation-duration: 0.5s;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 767px) {
    .npl-card-outlined {
        padding: 12px;
    }

    .npl-outlined-image {
        height: 180px;
    }

    .npl-card-classic-overlay .npl-card-image {
        height: 200px;
    }
    
    .npl-title {
        font-size: 15px;
    }
    
    .npl-price {
        font-size: 14px;
    }
    
    .npl-action-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .npl-card-classic-overlay .npl-card-image {
        height: 220px;
    }
}

/* ================================================================
   VISUAL MINIMALIST CARD (Style 4+5)
   ================================================================ */
.npl-card-visual {
    position: relative;
    border-radius: 12px;
    height: 320px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.npl-card-visual .npl-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.npl-card-visual .npl-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}

.npl-card-visual:hover .npl-card-image img {
    transform: scale(1.1);
}

.npl-visual-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    transition: background-color 0.4s ease;
    z-index: 2;
}

.npl-card-visual:hover .npl-visual-overlay {
    background-color: rgba(0, 0, 0, 0.4);
}

/* Badge: Right ribbon style */
.npl-badge-visual {
    position: absolute;
    top: 16px;
    right: 0;
    z-index: 30;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Content box */
.npl-visual-content-box {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(8px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.npl-card-visual:hover .npl-visual-content-box {
    transform: translateY(0);
}

.npl-card-visual .npl-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
    padding-right: 30px;
}

.npl-card-visual .npl-title a {
    color: inherit;
}

.npl-card-visual .npl-category {
    color: #64748b;
    font-size: 11px;
    margin-bottom: 12px;
}

.npl-visual-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.npl-card-visual .npl-price {
    font-weight: 700;
    color: #1d4ed8;
    font-size: 15px;
}

.npl-card-visual .npl-old-price {
    color: #94a3b8;
}

.npl-visual-add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #0f172a;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 12px;
}

.npl-visual-add-btn:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.npl-visual-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 14px;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    z-index: 5;
}

.npl-visual-wishlist:hover {
    color: #ef4444;
}

.npl-rating-visual {
    margin-top: 8px;
}

/* ================================================================
   TECH SPECS CARD (Style 7)
   ================================================================ */
.npl-card-techspecs {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 3px solid transparent;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.npl-card-techspecs:hover {
    border-left-color: #2563eb;
    background-color: #f8fafc;
}

/* Image area */
.npl-techspecs-image {
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.npl-techspecs-image img {
    max-height: 180px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.npl-card-techspecs:hover .npl-techspecs-image img {
    transform: scale(1.1);
}

/* Badge: text-only underline */
.npl-badge-techspecs {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    color: #2563eb;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0;
    border-bottom: 2px solid #2563eb;
    border-radius: 0;
    box-shadow: none;
    z-index: 20;
}

/* Content */
.npl-techspecs-content {
    padding: 24px;
}

.npl-techspecs-header {
    margin-bottom: 16px;
}

.npl-title-techspecs {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.npl-title-techspecs a {
    color: inherit;
    text-decoration: none;
}

.npl-techspecs-ref {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 4px;
}

.npl-techspecs-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.npl-card-techspecs .npl-price {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

.npl-techspecs-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.npl-techspecs-arrow:hover {
    color: #2563eb;
}

/* ================================================================
   MODERN BOLD CARD (Style 8)
   ================================================================ */
.npl-card-bold {
    background-color: #ffffff;
    border: 2px solid #0f172a;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.npl-card-bold:hover {
    background-color: #0f172a;
    color: #ffffff;
}

/* Header with number + badge */
.npl-bold-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.npl-bold-number {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s ease;
}

.npl-card-bold:hover .npl-bold-number {
    color: #ffffff;
}

/* Badge: black tag */
.npl-badge-bold {
    position: relative;
    top: auto;
    left: auto;
    background-color: #000000;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    text-transform: uppercase;
    border-radius: 0;
}

/* Image */
.npl-bold-image {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    overflow: hidden;
    padding: 8px;
}

.npl-bold-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: filter 0.3s ease, transform 0.5s ease;
}

.npl-card-bold:hover .npl-bold-image img {
    filter: invert(1);
}

/* Content */
.npl-bold-content {
    text-align: center;
    padding: 0;
}

.npl-title-bold {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: #0f172a;
    margin: 0 0 8px 0;
    transition: color 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.npl-title-bold a {
    color: inherit;
    text-decoration: none;
}

.npl-card-bold:hover .npl-title-bold,
.npl-card-bold:hover .npl-title-bold a {
    color: #ffffff;
}

.npl-price-bold {
    justify-content: center;
    margin-bottom: 16px;
}

.npl-price-bold .npl-price {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    transition: color 0.3s ease;
}

.npl-card-bold:hover .npl-price-bold .npl-price {
    color: rgba(255, 255, 255, 0.7);
}

/* Button */
.npl-bold-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background-color: transparent;
    color: #0f172a;
    border: 2px solid #0f172a;
    border-radius: 0;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.npl-bold-btn:hover {
    background-color: #0f172a;
    color: #ffffff;
}

.npl-card-bold:hover .npl-bold-btn {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* ================================================================
   FLOATING ACTIONS CARD (Style 9)
   ================================================================ */
.npl-card-floating {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.npl-card-floating:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Image area */
.npl-floating-image {
    height: 260px;
    overflow: hidden;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
}

.npl-floating-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.5s ease;
}

/* Badge: frosted style */
.npl-badge-floating {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #1e293b;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    z-index: 20;
}

/* Floating side icons */
.npl-floating-side-icons {
    position: absolute;
    top: 16px;
    right: -50px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 20;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.npl-card-floating:hover .npl-floating-side-icons {
    right: 12px;
}

.npl-floating-side-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: #ffffff;
    color: #475569;
    border: 1px solid #f1f5f9;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    padding: 0;
    font-size: 13px;
}

.npl-floating-side-icon:hover {
    color: #2563eb;
    border-color: #dbeafe;
}

.npl-floating-side-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Content */
.npl-floating-content {
    padding: 20px;
}

.npl-card-floating .npl-category {
    color: #2563eb;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 4px;
}

.npl-card-floating .npl-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.npl-card-floating .npl-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.npl-card-floating .npl-price {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}

/* ================================================================
   NEW STYLES - RESPONSIVE
   ================================================================ */
@media (max-width: 767px) {
    .npl-card-visual {
        height: 260px;
    }

    .npl-visual-content-box {
        padding: 14px;
        bottom: 10px;
        left: 10px;
        right: 10px;
    }

    .npl-card-visual .npl-title {
        font-size: 14px;
    }

    .npl-techspecs-image {
        height: 180px;
    }

    .npl-techspecs-content {
        padding: 16px;
    }

    .npl-card-bold {
        padding: 16px;
    }

    .npl-bold-image {
        height: 160px;
        margin-bottom: 16px;
    }

    .npl-title-bold {
        font-size: 16px;
    }

    .npl-floating-image {
        height: 200px;
    }

    .npl-floating-content {
        padding: 16px;
    }

    .npl-card-floating .npl-price {
        font-size: 16px;
    }
}
