/** Shopify CDN: Minification failed

Line 709:5 Expected "}" to go with "{"

**/
.slp * {
    box-sizing: border-box;
}

.slp,
.slp h1,
.slp h2,
.slp h3,
.slp p,
.slp span,
.slp a,
.slp button,
.slp input {
    font-family: inherit;
    font-weight: inherit;
    font-style: inherit;
    /* color: #1a1a1a; */
    line-height: 1.6;
}

/* Announcement Bar */
.slp-announcement {
    color: white;
    padding: 10px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.slp-announcement strong {
    font-weight: 700;
}

/* Trust Bar */
.slp-trust-bar {
    background: #f8f8f8;
    padding: 12px 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    border-bottom: 1px solid #e5e5e5;
}

.slp-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #333;
}

.slp-trust-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Hero */
.slp-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.slp-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(181, 18, 27, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.slp-sale-badge {
    display: inline-block;
    color: white;
    padding: 8px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.slp-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
}

.slp-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Intro */
.slp-intro {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 40px;
    text-align: center;
}

.slp-intro h2 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.slp-intro p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Filters */
.slp-filters {
    background: #fff;
    padding: 16px 40px;
    border-bottom: 1px solid #e5e5e5;
}

.slp-filters-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.slp-filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slp-filter-label {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    white-space: nowrap;
}

.slp-filter-pills {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.slp-filter-btn {
    padding: 6px 14px;
    border: 1px solid #e5e5e5;
    background: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.slp-filter-btn.slp-active {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

.slp-filter-divider {
    width: 1px;
    height: 24px;
    background: #e5e5e5;
}

/* Products */
.slp-products {
    padding: 50px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.slp-products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.slp-products-header h2 {
    font-size: 24px;
    font-weight: 600;
}

.slp-products-count {
    font-size: 14px;
    color: #666;
}

.slp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Product Card */
.slp-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    transition: box-shadow 0.3s, transform 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.slp-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.slp-card-img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f5f5f5;
}

.slp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.slp-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.slp-badge {
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.slp-badge--sale {
    color: white;
}

.slp-badge--best {
    background: #1a1a1a;
    color: white;
}

.slp-badge--low {
    background: #f59e0b;
    color: white;
}

.slp-badge--special {
    background: #059669;
    color: white;
}

.slp-stock-indicator {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500;
}

.slp-card-info {
    padding: 16px;
}

.slp-card-title {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slp-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.slp-price-now {
    font-size: 18px;
    font-weight: 700;
}

.slp-price-was {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.slp-price-unit {
    font-size: 12px;
    color: #666;
    font-weight: 400;
}

.slp-coverage {
    font-size: 12px;
    color: #666;
    margin-top: 6px;
}

/* Reassurance */
.slp-reassurance {
    background: #1a1a1a;
    color: white;
    padding: 60px 40px;
}

.slp-reassurance-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.slp-reassurance h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
}

.slp-reassurance p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* FAQ */
.slp-faq {
    padding: 60px 40px;
    background: #fff;
}

.slp-faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

.slp-faq h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
    text-align: center;
}

.slp-faq-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
}

.slp-faq-item:first-of-type {
    border-top: 1px solid #e5e5e5;
}

.slp-faq-q {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.slp-faq-q svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.slp-faq-item.slp-open .slp-faq-q svg {
    transform: rotate(180deg);
}

.slp-faq-a {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-top: 0;
}

.slp-faq-item.slp-open .slp-faq-a {
    max-height: 200px;
    padding-top: 10px;
}

/* Urgency */
.slp-urgency {
    background: #f8f8f8;
    padding: 50px 40px;
    text-align: center;
    border-top: 1px solid #e5e5e5;
}

.slp-urgency h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.slp-urgency p {
    font-size: 15px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* Bottom CTA */
.slp-bottom-cta {
    padding: 60px 40px;
    text-align: center;
    background: white;
}

.slp-bottom-cta h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
}

.slp-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.slp-btn {
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    display: inline-block;
    font-family: inherit;
    border: 2px solid transparent;
}

.slp-btn--primary {
    color: white;
}

.slp-btn--primary:hover {
    background: #9a0f18;
    border-color: #9a0f18;
}

.slp-btn--secondary {
    background: white;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.slp-btn--secondary:hover {
    background: #1a1a1a;
    color: white;
}

/* Sticky Banner */
.slp-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    padding: 12px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-size: 13px;
    z-index: 100;
}

.slp-sticky-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slp-sticky-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* No results */
.slp-no-products {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 16px;
}

/* Pagination */
.slp-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.slp-pagination:empty {
    display: none;
}

.slp-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 6px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
    background: white;
    cursor: pointer;
    font-family: inherit;
}

.slp-page-btn:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.slp-page-current {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
    pointer-events: none;
}

.slp-page-gap {
    border: none;
    background: none;
    min-width: auto;
    padding: 6px 4px;
    cursor: default;
}

.slp-page-prev,
.slp-page-next {
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1200px) {
    .slp-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .slp-hero h1 {
        font-size: 32px;
    }

    .slp-trust-bar {
        gap: 20px;
    }

    .slp-filters-inner {
        justify-content: center;
    }

    .slp-filter-divider {
        display: none;
    }
}

@media (max-width: 600px) {
    .slp-grid {
        grid-template-columns: 1fr;
    }

    .slp-hero {
        padding: 40px 20px;
    }

    .slp-hero h1 {
        font-size: 26px;
    }

    .slp-trust-bar {
        padding: 12px 20px;
    }

    .slp-filters {
        padding: 16px 20px;
    }

    .slp-filters-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .slp-filter-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
    }

    .slp-filter-pills {
        width: 100%;
    }

    .slp-sticky {
        flex-direction: column;
        gap: 8px;
        padding: 10px 20px;
    }

    .slp-products {
        padding: 30px 20px;
    }

    .slp-reassurance,
    .slp-faq,
    .slp-urgency,
    .slp-bottom-cta {
        padding-left: 20px;
        padding-right: 20px;
    }

    .slp-reassurance,
    .slp-faq,
    .slp-urgency,
    .slp-bottom-cta {
        content-visibility: auto;
        contain-intrinsic-size: auto 300px;
    }