@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,600;12..96,700;12..96,800&display=swap');
/* =============================================
   Randmarkings Customization CSS
   ============================================= */

/* --- Brand display font site-wide (same as the home headings) --- */
h1, h2, h3, h4,
.page-title, .page-title-wrapper .page-title,
.product-info-main .page-title, .product-item-name, .product.name a,
.block-title, .block-title strong, .widget-title, .secondary-title,
.opc-block-summary .title, .checkout-payment-method .step-title {
    font-family: 'Bricolage Grotesque', 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif !important;
    letter-spacing: -0.01em;
}

/* --- Category Page: Center title --- */
.catalog-category-view .page-title-wrapper {
    text-align: center;
}
.catalog-category-view .page-title {
    display: block;
    text-align: center;
    width: 100%;
}

/* --- Category Page: Description centered --- */
.catalog-category-view .category-description {
    max-width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* --- Keyrings Subcategory Buttons --- */
.rm-subcat-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 24px 0 32px;
}
.rm-subcat-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #FFFFFF;
    border: 2px solid #E5E5E5;
    border-radius: 10px;
    color: #171717;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.rm-subcat-btn:hover {
    border-color: #0D9488;
    color: #0D9488;
    background: #F0FDFA;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.15);
}
.rm-subcat-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
@media (max-width: 640px) {
    .rm-subcat-buttons {
        gap: 8px;
    }
    .rm-subcat-btn {
        padding: 10px 20px;
        font-size: 13px;
        flex: 1 1 calc(50% - 8px);
        justify-content: center;
    }
}

/* --- Product Page: Reduce empty space below main image --- */
.catalog-product-view .product.media {
    margin-bottom: 0;
    padding-bottom: 0;
}
.catalog-product-view .gallery-placeholder {
    margin-bottom: 0;
}
.catalog-product-view .product-info-main {
    padding-top: 0;
}
.catalog-product-view .product.info.detailed {
    margin-top: 16px;
}

/* --- Product Page: Trust & Help Block below media --- */
.rm-pdp-trust {
    margin-top: 24px;
}
/* Desktop: show in media column, hide mobile version */
.rm-pdp-trust-mobile {
    display: none;
}
@media (max-width: 768px) {
    .rm-pdp-trust-desktop {
        display: none;
    }
    .rm-pdp-trust-mobile {
        display: block;
        margin-bottom: 16px;
    }
    .rm-pdp-trust {
        margin-top: 16px;
    }
    .rm-pdp-trust-grid {
        display: flex !important;
        grid-template-columns: none !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
        padding-bottom: 10px;
        scrollbar-width: thin;
        scrollbar-color: #0D9488 #E5E5E5;
    }
    .rm-pdp-trust-grid::-webkit-scrollbar {
        height: 5px;
    }
    .rm-pdp-trust-grid::-webkit-scrollbar-track {
        background: #E5E5E5;
        border-radius: 3px;
    }
    .rm-pdp-trust-grid::-webkit-scrollbar-thumb {
        background: #0D9488;
        border-radius: 3px;
    }
    .rm-pdp-trust-item {
        flex: 0 0 calc(100% - 40px);
        min-width: 0;
        scroll-snap-align: center;
        flex-direction: row;
        align-items: center;
        padding: 16px;
        gap: 12px;
    }
    .rm-pdp-trust-text strong {
        font-size: 14px;
    }
    .rm-pdp-trust-text span {
        font-size: 12px;
    }
    .rm-pdp-help {
        padding: 14px;
        gap: 10px;
    }
    .rm-pdp-help-body strong {
        font-size: 14px;
    }
    .rm-pdp-help-body p {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .rm-pdp-help-actions {
        gap: 6px;
    }
    .rm-pdp-help-btn {
        padding: 7px 12px;
        font-size: 12px;
    }
    .rm-pdp-steps {
        margin-top: 12px;
        padding: 16px;
    }
    .rm-pdp-steps-title {
        font-size: 11px;
        margin-bottom: 14px;
    }
    /* Horizontal swipe-slider on narrow screens */
    .rm-pdp-steps-list {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .rm-pdp-steps-list::-webkit-scrollbar {
        display: none;
    }
    .rm-pdp-step {
        flex: 0 0 44%;
    }
    .rm-pdp-step:not(:last-child)::before {
        top: 13px;
    }
    .rm-pdp-step-num {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
    .rm-pdp-step-info strong {
        font-size: 12px;
    }
    .rm-pdp-step-info span {
        font-size: 11px;
    }
    .rm-pdp-highlight {
        margin-top: 12px;
        padding: 14px;
    }
    .rm-pdp-highlight strong {
        font-size: 13px;
    }
    .rm-pdp-highlight span {
        font-size: 11px;
    }
}
.rm-pdp-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}
.rm-pdp-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    background: #F9FAFB;
    border: 1px solid #F0F0F0;
    border-radius: 12px;
}
.rm-pdp-trust-icon {
    width: 36px;
    height: 36px;
    background: #F0FDFA;
    border: 1px solid #E0F2F1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rm-pdp-trust-icon svg {
    width: 18px;
    height: 18px;
    color: #0D9488;
}
.rm-pdp-trust-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #171717;
    margin-bottom: 2px;
}
.rm-pdp-trust-text span {
    font-size: 12px;
    color: #737373;
    line-height: 1.4;
}
.rm-pdp-help {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: linear-gradient(135deg, #F0FDFA 0%, #E0F2FE 100%);
    border: 1px solid #CCFBF1;
    border-radius: 14px;
}
.rm-pdp-help-icon {
    width: 42px;
    height: 42px;
    background: #0D9488;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rm-pdp-help-icon svg {
    width: 22px;
    height: 22px;
    color: #fff;
}
.rm-pdp-help-body strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #171717;
    margin-bottom: 4px;
}
.rm-pdp-help-body p {
    font-size: 13px;
    color: #525252;
    margin: 0 0 12px;
    line-height: 1.5;
}
.rm-pdp-help-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.rm-pdp-help-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}
.rm-pdp-help-btn--phone {
    background: #0D9488;
    color: #fff;
}
.rm-pdp-help-btn--phone:hover {
    background: #0F766E;
    color: #fff;
}
.rm-pdp-help-btn--email {
    background: #fff;
    color: #0D9488;
    border: 1.5px solid #0D9488;
}
.rm-pdp-help-btn--email:hover {
    background: #F0FDFA;
    color: #0D9488;
}
.rm-pdp-help-btn--whatsapp {
    background: #25D366;
    color: #fff;
}
.rm-pdp-help-btn--whatsapp:hover {
    background: #1DA851;
    color: #fff;
}
/* How to Order Steps — timeline card */
.rm-pdp-steps {
    margin-top: 16px;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(16,24,40,0.05);
}
.rm-pdp-steps-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #0D9488;
    margin-bottom: 18px;
}
.rm-pdp-steps-title::before {
    content: "";
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.8' stroke='%230D9488'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 12h3.75M9 15h3.75M9 18h3.75m3 .75H18a2.25 2.25 0 002.25-2.25V6.108c0-1.135-.845-2.098-1.976-2.192a48.424 48.424 0 00-1.123-.08m-5.801 0c-.065.21-.1.433-.1.664 0 .414.336.75.75.75h4.5a.75.75 0 00.75-.75 2.25 2.25 0 00-.1-.664m-5.8 0A2.251 2.251 0 0113.5 2.25H15c1.012 0 1.867.668 2.15 1.586m-5.8 0c-.376.023-.75.05-1.124.08C9.095 4.01 8.25 4.973 8.25 6.108V8.25m0 0H4.875c-.621 0-1.125.504-1.125 1.125v11.25c0 .621.504 1.125 1.125 1.125h9.75c.621 0 1.125-.504 1.125-1.125V9.375c0-.621-.504-1.125-1.125-1.125H8.25z'/%3E%3C/svg%3E");
}
.rm-pdp-steps-list {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
}
.rm-pdp-step {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 9px;
    position: relative;
    padding: 0 6px;
}
/* horizontal connector line between the number circles */
.rm-pdp-step:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #E5E7EB;
    z-index: 0;
}
.rm-pdp-step-num {
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px;
    background: #0D9488;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px #fff;
}
.rm-pdp-step-info strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #171717;
    margin-bottom: 3px;
    line-height: 1.25;
}
.rm-pdp-step-info span {
    display: block;
    font-size: 12px;
    color: #6B7280;
    line-height: 1.4;
}
/* UK Manufactured Highlight */
.rm-pdp-highlight {
    margin-top: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #0D9488 0%, #0F766E 100%);
    border-radius: 14px;
    color: #fff;
}
.rm-pdp-highlight-icon {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rm-pdp-highlight-icon svg {
    width: 20px;
    height: 20px;
    color: #fff;
}
.rm-pdp-highlight strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}
.rm-pdp-highlight span {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}

/* Key Features + Popular Uses — combined card (sits in the left column under "How to Order") */
.rm-kf { margin-top: 16px; }
.rm-kf-card { display: grid; grid-template-columns: 1fr; border: 1px solid #E5E7EB; border-radius: 16px; background: #fff; box-shadow: 0 1px 3px rgba(16,24,40,0.05); overflow: hidden; }
.rm-kf-section { padding: 20px 22px; }
.rm-kf-section + .rm-kf-section { border-top: 1px solid #F0F0F0; }
/* Side by side once the left column is wide enough (lg = ~50% width) */
@media (min-width: 1024px) {
    .rm-kf-card { grid-template-columns: 1fr 1fr; }
    .rm-kf-section + .rm-kf-section { border-top: none; border-left: 1px solid #F0F0F0; }
}
.rm-kf-head { display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 800; letter-spacing: 0.6px; text-transform: uppercase; margin: 0 0 14px; padding-bottom: 12px; border-bottom: 1px solid #F3F4F6; }
.rm-kf-head .rm-kf-ic { width: 30px; height: 30px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rm-kf-head .rm-kf-ic svg { width: 17px; height: 17px; }
.rm-kf-section--features .rm-kf-head { color: #0D9488; }
.rm-kf-section--features .rm-kf-ic { background: #F0FDFA; color: #0D9488; }
.rm-kf-section--uses .rm-kf-head { color: #EA580C; }
.rm-kf-section--uses .rm-kf-ic { background: #FFF7ED; color: #EA580C; }
.rm-kf-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.rm-kf-list li { position: relative; padding-left: 26px; font-size: 13px; line-height: 1.42; color: #374151; }
.rm-kf-list li::before { content: ""; position: absolute; left: 0; top: 1px; width: 17px; height: 17px; background-repeat: no-repeat; background-position: center; background-size: contain; }
.rm-kf-section--features li::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230D9488'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'/%3E%3C/svg%3E"); }
.rm-kf-section--uses li::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23EA580C'%3E%3Cpath fill-rule='evenodd' d='M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E"); }
/* "See full details" jump link → smooth-scrolls to the tabs */
html { scroll-behavior: smooth; }
#product-tabs { scroll-margin-top: 90px; }
.rm-seemore { display: inline-flex; align-items: center; gap: 5px; margin: 0 0 16px; font-size: 13px; font-weight: 700; color: #0D9488; text-decoration: none; }
.rm-seemore:hover { color: #0F766E; text-decoration: underline; }
.rm-seemore span { transition: transform 0.2s ease; }
.rm-seemore:hover span { transform: translateY(2px); }

/* Mobile product title — match the teal brand (the in-card desktop title is already teal) */
@media (max-width: 767px) {
    h1.page-title[data-ui-id="page-title-wrapper"] {
        color: #0F766E !important;
        font-weight: 800 !important;
        letter-spacing: -0.4px !important;
        line-height: 1.2 !important;
        text-align: left !important;
        font-size: 1.6rem !important;
        margin-bottom: 1rem !important;
    }
}

/* Compact the order-attachments "Attach Files" upload widget */
.oa-wrap { box-shadow: none !important; }
.oa-hdr { padding: 0.55rem 1rem !important; }
.oa-hdr h3 { font-size: 0.875rem !important; }
.oa-hdr p { display: none !important; }
.oa-body { padding: 0.7rem 0.9rem !important; }
.oa-dropzone { padding: 0.7rem !important; }
.oa-dropzone-icon { width: 1.6rem !important; height: 1.6rem !important; margin: 0 auto 0.2rem !important; }
.oa-dropzone-icon svg { width: 0.85rem !important; height: 0.85rem !important; }
.oa-dropzone h4 { font-size: 0.8125rem !important; margin-bottom: 0.05rem !important; }
.oa-dropzone p { font-size: 0.7rem !important; margin: 0 !important; }
.oa-limits { margin-top: 0.4rem !important; }
.oa-limits span { font-size: 0.65rem !important; }
.oa-trust { display: none !important; }

/* Modern underline-style product tabs (overrides the module's grey pill nav) */
.panth-tabs .panth-tabs__nav { background: transparent !important; padding: 0 !important; border-radius: 0 !important; border-bottom: 1px solid #E5E7EB; gap: 2px !important; overflow-x: auto !important; overflow-y: hidden !important; }
.panth-tabs .panth-tabs__nav::-webkit-scrollbar { height: 4px; }
.panth-tabs .panth-tabs__nav::-webkit-scrollbar-track { background: transparent; }
.panth-tabs .panth-tabs__btn { color: #6B7280; background: transparent !important; border-radius: 0 !important; padding: 14px 18px !important; border-bottom: 3px solid transparent; font-weight: 600; transition: color .2s ease, border-color .2s ease; }
.panth-tabs .panth-tabs__btn:hover { color: #0F766E; background: transparent !important; }
.panth-tabs .panth-tabs__btn--active { color: #0D9488 !important; background: transparent !important; box-shadow: none !important; border-bottom-color: #0D9488 !important; font-weight: 700; }
.panth-tabs .panth-tabs__btn svg { transition: transform .2s ease; }
.panth-tabs .panth-tabs__btn--active svg { transform: scale(1.12); }
@media (max-width: 768px) {
    .panth-tabs .panth-tabs__btn { padding: 12px 14px !important; }
}

/* "Need Help?" — full-width enhanced banner below the product section */
.rm-need-help-col { margin: 16px 0 28px; }
.rm-help-banner { display: flex; align-items: center; justify-content: space-between; gap: 18px 28px; flex-wrap: wrap; padding: 22px 28px; border-radius: 16px; background: linear-gradient(120deg, #ECFEFF 0%, #F0FDFA 55%, #FFFFFF 100%); border: 1px solid #CCFBF1; box-shadow: 0 1px 3px rgba(16,24,40,0.04); }
.rm-help-main { display: flex; align-items: center; gap: 16px; min-width: 0; }
.rm-help-icon { width: 48px; height: 48px; border-radius: 13px; background: #0D9488; color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 12px rgba(13,148,136,0.25); }
.rm-help-icon svg { width: 24px; height: 24px; }
.rm-help-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.rm-help-text strong { font-size: 16px; font-weight: 800; color: #0F766E; line-height: 1.2; }
.rm-help-text > span { font-size: 13.5px; color: #475569; line-height: 1.4; }
.rm-help-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.rm-help-btn { display: inline-flex; align-items: center; gap: 7px; height: 42px; padding: 0 16px; border-radius: 10px; font-size: 13.5px; font-weight: 700; text-decoration: none; transition: all 0.2s ease; white-space: nowrap; }
.rm-help-btn svg { width: 16px; height: 16px; }
.rm-help-btn--phone { background: #0D9488; color: #fff; }
.rm-help-btn--phone:hover { background: #0F766E; color: #fff; }
.rm-help-btn--email { background: #fff; color: #0D9488; border: 1.5px solid #0D9488; }
.rm-help-btn--email:hover { background: #0D9488; color: #fff; }
.rm-help-btn--whatsapp { background: #25D366; color: #fff; }
.rm-help-btn--whatsapp:hover { background: #1DA851; color: #fff; }
@media (max-width: 768px) {
    .rm-need-help-col { margin: 0 0 20px; }
    .rm-help-banner { padding: 18px; gap: 16px; }
    .rm-help-icon { width: 42px; height: 42px; }
    .rm-help-text strong { font-size: 15px; }
    .rm-help-actions { width: 100%; }
    .rm-help-btn { flex: 1 1 auto; justify-content: center; }
}

/* Desktop: render in the media (left) column; mobile: render after the buy box */
.rm-kf-mobile { display: none; }
@media (max-width: 768px) {
    .rm-kf-desktop { display: none; }
    .rm-kf-mobile { display: block; margin-bottom: 16px; }
    .rm-kf { margin-top: 0; }
}

/* Pre-purchase FAQ accordion — fills the left column when the buy column is taller */
.rm-faq-mobile { display: none; }
.rm-faq-desktop { margin-top: 16px; }
@media (max-width: 768px) {
    .rm-faq-desktop { display: none; }
    .rm-faq-mobile { display: block; margin: 0 0 20px; }
}
.rm-faq { background: #fff; border: 1px solid #E5E7EB; border-radius: 16px; padding: 6px 20px 10px; box-shadow: 0 1px 3px rgba(16,24,40,0.04); }
.rm-faq-head { display: flex; align-items: center; gap: 9px; padding: 14px 0 8px; font-size: 12px; font-weight: 800; letter-spacing: 0.6px; text-transform: uppercase; color: #0D9488; }
.rm-faq-head-icon { display: inline-flex; }
.rm-faq-head-icon svg { width: 18px; height: 18px; }
.rm-faq-item { border-top: 1px solid #F1F5F9; }
.rm-faq-item:first-of-type { border-top: none; }
.rm-faq-q { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; padding: 13px 0; background: none; border: none; cursor: pointer; text-align: left; font-size: 14.5px; font-weight: 600; color: #0F172A; line-height: 1.35; transition: color 0.15s ease; }
.rm-faq-q:hover { color: #0D9488; }
.rm-faq-chevron { width: 16px; height: 16px; color: #94A3B8; flex-shrink: 0; transition: transform 0.25s ease, color 0.15s ease; }
.rm-faq-item--open .rm-faq-q { color: #0D9488; }
.rm-faq-item--open .rm-faq-chevron { transform: rotate(180deg); color: #0D9488; }
.rm-faq-a p { padding: 0 0 14px; margin: 0; font-size: 13.5px; color: #475569; line-height: 1.55; }

/* --- Homepage: Tighter spacing --- */
.cms-home .page-main {
    padding-top: 0;
}

/* --- Homepage: Product Slider Arrows - move into heading row --- */
.cms-home .rm-home .product-slider > .flex.justify-between {
    position: absolute;
    right: 0;
    top: -48px;
    z-index: 10;
}
.cms-home .rm-home .product-slider {
    position: relative;
}
.cms-home .rm-home .snap-slider:not(.product-slider) > .flex.justify-between {
    position: absolute;
    right: 0;
    top: -48px;
    z-index: 10;
}
.cms-home .rm-home .snap-slider:not(.product-slider) {
    position: relative;
}

/* --- Homepage: Product sliders - remove max-width constraints --- */
.cms-home .rm-home .product-slider {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    padding-bottom: 8px;
}
.cms-home .rm-home .product-slider.my-8 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.cms-home .rm-home .snap-slider:not(.product-slider) {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}
.cms-home .snap-pager {
    margin-top: 8px;
    margin-bottom: 0;
}
.cms-home .rm-home .rm-c {
    padding-top: 32px;
    padding-bottom: 32px;
}
.cms-home .rm-home .rm-sh {
    margin-bottom: 24px;
}

/* --- Mobile fixes --- */
@media (max-width: 768px) {
    /* Reset slider arrow positioning */
    .cms-home .rm-home .product-slider > .flex.justify-between,
    .cms-home .rm-home .snap-slider:not(.product-slider) > .flex.justify-between {
        position: static;
        justify-content: flex-end;
        margin-bottom: 8px;
    }
    /* Reduce side padding on all sections for mobile */
    .cms-home .page-main {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .cms-home .page-main > .columns {
        padding-left: 0;
        padding-right: 0;
    }
    .cms-home .column.main {
        padding-left: 0;
        padding-right: 0;
    }
    .cms-home .rm-home {
        padding-left: 0;
        padding-right: 0;
        overflow-x: hidden;
    }
    .cms-home .rm-home .rm-c,
    .cms-home .rm-home .rm-trust,
    .cms-home .rm-home .rm-sh,
    .cms-home .rm-home .rm-spot-inner,
    .cms-home .rm-home .rm-hiw-inner,
    .cms-home .rm-home .rm-stats-grid,
    .cms-home .rm-home .rm-ind-inner {
        padding-left: 10px;
        padding-right: 10px;
    }
    /* Mobile: Show 2 category cards at a time */
    .cms-home .rm-home .rm-cat {
        min-width: 0;
        flex: 0 0 calc(50% - 8px);
    }
}

/* ============================================================
   Footer + newsletter — align to brand (teal + dark navy).
   Overrides the theme's neutral charcoal / orange defaults so
   the footer matches the teal theme & the home dark sections.
   ============================================================ */
:root,
.page-footer,
.panth-footer,
.panth-newsletter {
    --footer-bg-color: #0B1320;
    --footer-newsletter-bg: #0F1A2E;
    --footer-newsletter-button-bg: #0D9488;
    --footer-newsletter-button-hover: #0F766E;
    --footer-newsletter-input-bg: #1B2A40;
    --footer-newsletter-input-border: #2A3A52;
    --footer-newsletter-input-focus-border: #14B8A6;
    --footer-text-color: #9FB0C4;
    --footer-newsletter-text: #9FB0C4;
    --footer-backtotop-bg: #0D9488;
    --footer-backtotop-hover-bg: #0F766E;
}
/* belt-and-braces: ensure the subscribe button & focus ring are teal even if vars are bypassed */
.panth-newsletter-button { background-color: #0D9488 !important; }
.panth-newsletter-button:hover { background-color: #0F766E !important; }

/* ============================================================
   Home product sliders (Panth .product-slider): keep ONLY the
   Add to Cart button (hide wishlist/compare/quick-view) and make
   it full-width so it never wraps — cleaner, consistent cards.
   ============================================================ */
.product-slider .mt-auto.pt-3 > .flex.gap-2 { display: none !important; }
.product-slider .mt-auto.pt-3 { gap: 0 !important; }
.product-slider .mt-auto.pt-3 .btn-primary,
.product-slider .mt-auto.pt-3 .btn.btn-primary {
    width: 100% !important;
    flex: 1 1 auto !important;
    margin: 0 !important;
    justify-content: center !important;
}

/* ============================================================
   Header modernisation (global, conservative, :where()=0 spec)
   ============================================================ */
:where(.header-main){background-color:rgba(255,255,255,.96);-webkit-backdrop-filter:saturate(1.05) blur(6px);backdrop-filter:saturate(1.05) blur(6px);border-bottom:1px solid rgba(13,148,136,.12);box-shadow:0 1px 2px rgba(15,23,23,.04),0 4px 16px rgba(15,118,110,.05);}
:where(.header-main.is-scrolled,.header-main.scrolled,.header-main[data-scrolled="true"]){box-shadow:0 2px 4px rgba(15,23,23,.06),0 6px 20px rgba(15,118,110,.08);border-bottom-color:rgba(13,148,136,.18);}
:where(.header-main) nav a,:where(.navigation,.nav-main) a{position:relative;transition:color .2s ease;-webkit-tap-highlight-color:transparent;}
:where(.header-main) nav a::after,:where(.navigation,.nav-main) a::after{content:"";position:absolute;left:50%;right:50%;bottom:-.18em;height:2px;border-radius:2px;background-color:#0D9488;transition:left .25s ease,right .25s ease;}
:where(.header-main) nav a:hover,:where(.navigation,.nav-main) a:hover{color:#0D9488;}
:where(.header-main) nav a:hover::after,:where(.navigation,.nav-main) a:hover::after,:where(.header-main) nav a:focus-visible::after{left:0;right:0;}
:where(.header-main) [aria-expanded="true"]>svg{transform:rotate(180deg);}
:where(.header-main) nav a svg{opacity:.6;transition:opacity .2s ease,transform .2s ease;}
:where(.header-main) nav a:hover svg{opacity:.95;}
:where(.header-icon-search,.header-icon-account,.header-icon-minicart){position:relative;display:inline-flex;align-items:center;justify-content:center;min-width:40px;min-height:40px;border-radius:9999px;transition:background-color .2s ease,color .2s ease,transform .15s ease;}
:where(.header-icon-search,.header-icon-account,.header-icon-minicart):hover,:where(.header-icon-search,.header-icon-account,.header-icon-minicart):focus-visible{background-color:#F0FDFA;color:#0D9488;transform:scale(1.06);}
:where(.header-icon-search,.header-icon-account,.header-icon-minicart):active{transform:scale(.97);}
:where(.header-counter){background-color:#0D9488;color:#fff;font-weight:600;box-shadow:0 0 0 2px #fff;}
@media (max-width:1024px){
  :where(.header-icon-search,.header-icon-account,.header-icon-minicart),:where(.header-main) button[aria-controls],:where(.header-main) [aria-label*="menu" i],:where(.header-main) [aria-label*="navigation" i]{min-width:44px;min-height:44px;}
  :where(.header-main) [class*="logo"] img{max-height:44px;width:auto;}
}
@media (prefers-reduced-motion:reduce){
  :where(.header-main) nav a,:where(.header-main) nav a::after,:where(.header-icon-search,.header-icon-account,.header-icon-minicart),:where(.header-main) nav a svg{transition:none!important;}
  :where(.header-icon-search,.header-icon-account,.header-icon-minicart):hover{transform:none;}
}
