.cms-home-coming header.page-header, .cms-home-coming footer.page-footer { display: none !important; }
.custom-readmore-btn {
    background-color: #15803D !important;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    margin-top: 16px;
}
.custom-readmore-btn:hover {
    background-color: #00a650 !important;
}
.line-clamp-custom {
    display: -webkit-box;
    -webkit-line-clamp: 7; /* Change this number to adjust how many lines show initially */
    -webkit-box-orient: vertical;  
    overflow: hidden;
}


/* ── Global & Theme Overrides ── */
* {
    color: #fff;
}

body#html-body {
    background: #000;
    color: #fff;
}

.bg-green.top-bar {
    width: 100%;
    background: #15803D;
}

.bg-green.top-bar .container.mx-auto.flex.justify-center.items-center.gap-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 0;
    color: #fff;
}

div#header {
    background: #000;
    border: 0;
}

button#menu-cart-icon span {
    background: #15803D;
}

footer.page-footer {
    border: 0;
}

footer.page-footer .bg-gray-100.border-t.border-gray-300.pb-16 {
    background: #000;
    border: 0;
}

footer.page-footer .bg-surface.border-t.border-b.border-gray-300 {
    display: none;
}

nav[aria-labelledby="customer-menu"],
nav.relative[aria-label="Main menu"] ul[x-show="open"] {
    background: #15803D;
}

dialog#cart-drawer {
    background: #000;
}

/* Hover States */
.hover\:bg-gray-100:hover {
    background: #000;
}

.hover\:border-primary:hover {
    border-color: #15803D;
}

/* ── Hero Wrap (Shared) ── */
.hero-wrap * {
    box-sizing: border-box;
}

.hero-wrap {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* ── Features Bar ── */
.hero-features-bar {
    display: flex;
    flex-wrap: wrap;
}

.hero-feature {
    flex: 1 1 200px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 28px;
    text-decoration: none;
    transition: background 0.2s;
}

.hero-feature:last-child {
    border-right: none;
}

.hero-feature:hover {
    background: #222;
}

.hero-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border: 1px solid #333;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.hero-feature-icon svg {
    width: 22px;
    height: 22px;
}

.hero-feature-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hero-feature-title {
    font-size: 14px;
    font-weight: 700;
    color: #e8e8e8;
    letter-spacing: 0.02em;
    margin: 0;
}

.hero-feature-sub {
    font-size: 12px;
    color: #777;
    margin: 0;
}

/* ── Shop by Category ── */
.sbc-item span {
    font-size: 16px;
    margin-top: 0;
}
.sbc-section {
    background: #111;
    padding: 44px 24px 52px;
    width: 100%;
}

.sbc-heading {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 32px;
    letter-spacing: 0.01em;
}

.sbc-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
}

.sbc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
}

.sbc-thumb {
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.sbc-thumb img {
    width: 100%;
    object-fit: cover;
}

.sbc-item:hover .sbc-thumb {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.5);
}

.sbc-label {
    font-size: 13px;
    color: #ccc;
    text-align: center;
    font-weight: 500;
}

/* ── Utilities ── */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.fh-wrap * { box-sizing: border-box; }
.fh-wrap {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #0d0d0d;
    color: #fff;
}

/* ── Section header ── */
.fh-sec-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.fh-sec-title {
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}
.fh-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #111;
    border: 1px solid #333;
    color: #ccc;
    font-size: 12px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}
.fh-view-all:hover { background: #1e1e1e; color: #fff; }

/* ── Product grid ── */
.fh-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.fh-prod-card {
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s;
    padding: 20px;
}
.fh-prod-card:hover { border-color: #3d3d3d; }
.fh-prod-img-wrap {
    position: relative;
    background: #fff;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}
.fh-prod-img-wrap img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}
.fh-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    line-height: 1.4;
}
.fh-badge-bestseller { background: #1f8b3c; color: #fff; }
.fh-badge-discount    { background: #e53935; color: #fff; }
.fh-prod-body {
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}
.fh-prod-brand { font-size: 12px; color: #888; font-weight: 500; }
.fh-prod-name  { font-size: 16px; color: #ddd; line-height: 1.4; flex: 1; }
.fh-prod-price { font-size: 18px; font-weight: 700; color: #fff; margin-top: 4px; }
.fh-prod-price-orig {
    font-size: 12px;
    color: #666;
    text-decoration: line-through;
    margin-left: 6px;
    font-weight: 400;
}
.fh-prod-btn {
    display: block;
    width: 100%;
    background: #1f8b3c;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 9px 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s;
    box-sizing: border-box;
}
.fh-prod-btn:hover { background: #27a34a; color: #fff; }

/* ── Sections padding ── */
.fh-bs-section     { padding: 32px 24px; }
.fh-offers-section { padding: 32px 24px; }

/* ── Trending Collection ── */
.fh-trending-section {
    padding: 36px 24px 40px;
}
.fh-trending-title {
    text-align: center;
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 28px;
}
.fh-trending-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
}
.fh-trend-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
}
.fh-trend-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    padding: 12px;
}
.fh-trend-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.fh-trend-item:hover .fh-trend-circle {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.5);
}
.fh-trend-label {
    font-size: 16px;
    color: #ccc;
    text-align: center;
    font-weight: 500;
}
nav.breadcrumbs.bg-surface.shadow-sm {
    background: #111;
}
.product-info-main .card {
    background: #000;
    border: 0;
}
select {
    border: 0;
    outline: 0;
    color: #000;
}
.products.wrapper form {
    background: #000;
    border: 1px solid #3c3c3c;
}
.fh3-wrap * { box-sizing: border-box; }
.fh3-wrap {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #0d0d0d;
    color: #fff;
}
 
/* ── Shared section header ── */
.fh3-sec-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.fh3-sec-title {
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}
.fh3-view-all {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #111;
    border: 1px solid #333;
    color: #ccc;
    font-size: 11px;
    font-weight: 500;
    padding: 6px 13px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}
.fh3-view-all:hover { background: #1e1e1e; color: #fff; }
 
/* ════════════════════════════
   OUR BRANDS
════════════════════════════ */
.fh3-brands-section {
    background: #1a3a1e;
    padding: 50px 24px;
}
.fh3-brands-grid {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 4px;
}
.fh3-brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}
.fh3-brand-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    padding: 22px;
}
.fh3-brand-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.fh3-brand-item:hover .fh3-brand-circle {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.5);
}
 
/* ════════════════════════════
   NEW ARRIVALS
════════════════════════════ */
.fh3-na-section {
    padding: 28px 24px;
}
.fh3-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.fh3-prod-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s;
}
.fh3-prod-card:hover { border-color: #3d3d3d; }
.fh3-prod-img-wrap {
    position: relative;
    background: #fff;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}
.fh3-prod-img-wrap img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}
.fh3-badge-discount {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 4px;
    background: #e53935;
    color: #fff;
}
.fh3-prod-body {
    padding: 11px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}
.fh3-prod-brand { font-size: 12px; color: #888; font-weight: 500; }
.fh3-prod-name  { font-size: 16px; color: #ddd; line-height: 1.4; flex: 1; }
.fh3-prod-price { font-size: 18px; font-weight: 700; color: #fff; margin-top: 3px; }
.fh3-prod-price-orig {
    font-size: 11px; color: #666;
    text-decoration: line-through;
    margin-left: 5px; font-weight: 400;
}
.fh3-prod-btn {
    display: block;
    width: calc(100% - 22px);
    margin: 0 11px 11px;
    background: #1f8b3c;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 8px 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s;
}
.fh3-prod-btn:hover { background: #27a34a; color: #fff; }
 
/* ════════════════════════════
   TESTIMONIALS
════════════════════════════ */
.fh3-testimonials-section {
    padding: 44px 24px 52px;
}
.fh3-test-heading {
    text-align: center;
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
}
.fh3-test-subtext {
    text-align: center;
    font-size: 16px;
    color: #777;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}
.fh3-test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}
.fh3-test-card {
    background: #141414;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 20px;
}
.fh3-test-stars {
    color: #f5a623;
    font-size: 15px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.fh3-test-quote-icon {
    float: right;
    width: 28px;
    height: 28px;
    background: #1a3a1e;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    margin-bottom: 6px;
}
.fh3-test-quote-icon svg { width: 14px; height: 14px; }
.fh3-test-text {
    font-size: 16px;
    color: #bbb;
    line-height: 1.75;
    margin-bottom: 16px;
    clear: both;
}
.fh3-test-author { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.fh3-test-role   { font-size: 16px; color: #666; }
 .fh4-wrap * { box-sizing: border-box; }
.fh4-wrap {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #0d0d0d;
    color: #fff;
}
 
/* ════════════════════════════
   FOLLOWER GALLERY
════════════════════════════ */
.fh4-gallery-section {
    padding: 36px 0 44px;
}
.fh4-gallery-heading {
    text-align: center;
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 6px;
    letter-spacing: 0.01em;
}
.fh4-gallery-sub {
    text-align: center;
    font-size: 16px;
    color: #888;
    margin-bottom: 24px;
}
.fh4-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.fh4-gallery-item {
    overflow: hidden;
    position: relative;
    background: #fff;
    display: block;
    text-decoration: none;
    padding: 15px;
    padding-bottom: 60px;
}
.fh4-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s;
}
.fh4-gallery-item:hover img { transform: scale(1.06); }
.fh4-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(31, 139, 60, 0.35);
    opacity: 0;
    transition: opacity 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fh4-gallery-overlay svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}
.fh4-gallery-item:hover .fh4-gallery-overlay { opacity: 1; }
.fh4-gallery-overlay { display: none !important; }
 
/* ════════════════════════════
   FAQ ACCORDION
════════════════════════════ */
.fh4-faq-section {
    background: #022D12;
    padding: 52px 32px 60px;
}
.fh4-faq-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
}
.fh4-faq-subtext {
    text-align: center;
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.fh4-faq-list {
    max-width: 720px;
    margin: 0 auto;
}
.fh4-faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.fh4-faq-item:first-child {
    border-top: 1px solid rgba(255,255,255,0.1);
}
.fh4-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    cursor: pointer;
    gap: 16px;
    list-style: none;
    user-select: none;
}
.fh4-faq-question-text {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}
.fh4-faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}
.fh4-faq-icon svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    transition: transform 0.3s;
}
.fh4-faq-item.is-open .fh4-faq-icon {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}
.fh4-faq-item.is-open .fh4-faq-icon svg { transform: rotate(45deg); }
.fh4-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease;
}
.fh4-faq-answer-inner {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    padding-bottom: 18px;
}
.fh4-faq-item.is-open .fh4-faq-answer { max-height: 300px; }
 
.container-large { 
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* footer  */
.fhf * { box-sizing: border-box; }
.fhf {
    background: #0d0d0d;
    font-family: 'Segoe UI', Arial, sans-serif;
    border-top: 2px solid #1a3a1e;
}
 
/* ── Main grid ── */
.fhf-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 56px 48px 44px;
    max-width: 1200px;
    margin: 0 auto;
}
 
/* ── Brand column ── */
.fhf-logo {
    max-width: 200px;
    margin-bottom: 18px;
    text-decoration: none;
    display: inline-block;
}
.fhf-tagline {
    font-size: 16px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 210px;
}
.fhf-socials {
    display: flex;
    gap: 10px;
}
.fhf-social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: transparent;
    transition: border-color 0.2s, background 0.2s;
}
.fhf-social-btn:hover {
    border-color: #4ecb71;
    background: rgba(78,203,113,0.08);
}
.fhf-social-btn svg {
    width: 17px;
    height: 17px;
    fill: #888;
    transition: fill 0.2s;
}
.fhf-social-btn:hover svg { fill: #4ecb71; }
 
/* ── Link columns ── */
.fhf-col-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 18px;
    letter-spacing: 0.01em;
}
.fhf-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.fhf-links li a {
    font-size: 16px;
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}
.fhf-links li a:hover { color: #4ecb71; }
 
/* ── Contact column ── */
.fhf-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.fhf-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.fhf-contact-icon {
    width: 18px;
    min-width: 18px;
    margin-top: 2px;
}
.fhf-contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: #4ecb71;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.fhf-contact-text {
    font-size: 16px;
    color: #888;
    line-height: 1.55;
}
.fhf-contact-text a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}
.fhf-contact-text a:hover { color: #4ecb71; }
 
/* ── Bottom bar ── */
.fhf-bar {
    border-top: 1px solid #1e1e1e;
    padding: 18px 48px;
    text-align: center;
}
.fhf-copy {
    color: #D1D5DC;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.15px;
}
div#search-content {
    background: #111;
    border: 0;
    padding: 30px 0;
}
input#search {
    color: #000;
}
.input-group.relative.grow kbd {
    display: none;
}
button.btn.btn-primary {
    background: #15803D;
}
.card {
    background: #000;
}
input {
    color: #000;
}
span[x-html="message.text"] {
    color: #000;
}
span[x-html="message.text"] a {
    color: #111;
}
button.text-gray-600.hover\:text-black svg.stroke-current {
    color: #000;
}
svg.stroke-current path {
    color: #000;
}
.message.success {
    border-color: #15803D;
}
a.btn.btn-primary {
    background: #15803D;
}

a.btn.btn-secondary {
    color: #000;
}
nav[aria-label="Mobile Main Menu"] {
    background: #000;
}

dialog.size-full.max-h-full {
    background: #000;
    color: #fff;
}

nav[aria-label="Mobile Main Menu"] ul {
    background: #000;
}

nav[aria-label="Mobile Main Menu"] ul button {
    background: #000;
}

.border-slate-200 {
    border-color: gray;
}

.border-slate-300 {
    border-color: gray;
}

nav[aria-label="Mobile Main Menu"] ul button svg {
    color: gray;
}
.message.info.empty {
    background: #000;
    border-color: gray;
}

ul#category-node-10 {
    display: none;
}

button.btn.btn-secondary {
    background: #15803D;
    outline: 0;
    border: 0;
}


/* Category pages */

/* Transform the page title into a full banner */
.catalog-category-view .page-main .container {
    background-image: url('/media/wysiwyg/categories/category-top-banner.png');
    background-size: cover;
    background-position: center;
    max-width: 100%;
    background-repeat: no-repeat;
    width: 100% !important;
    min-height: 220px; /* Adjust this to make the banner taller or shorter */
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #4ED581; /* Bright green color */
    font-style: italic;
    font-size: 3.5rem !important; /* Makes it large like the screenshot */
    font-weight: 700 !important;
    text-align: center;
    margin: 0;
    padding: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.catalog-category-view h1.page-title[data-ui-id="page-title-wrapper"] {
    color: #4ED581; /* Bright green color */
    font-style: italic;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.catalog-category-view .page-main {
    margin-top: 0;
}

.catalog-category-view .column.main .message.info.empty {
    margin-top: 100px;
    margin-bottom: 100px;
}

.catalog-product-view .container.flex.flex-col.md\:flex-row.flex-wrap {
    display: none;
}


nav[aria-label="Products view mode"] {
    visibility: hidden;
}

button.action.sorter-action.sort-asc {
    display: none;
}

select option {
    display: block;
    width: 100%;
    color: #141414;
}

section#product-list .toolbar-sorter.sorter label {
    margin: 0;
}


section#product-list .toolbar-sorter.sorter {
    width: 100%;
}

.product-info a.product-item-link {
    color: #818181;
    text-align: left;
}

.product-info .py-1.mx-auto {
    display: none;
}

.product-info button.btn.btn-primary.text-sm.me-auto {
    width: 100%;
    border-radius: 20px;
}

.product-info .flex.flex-wrap.gap-2 {
    display: none;
}

section#messages .messages.container {
    background: transparent;
    min-width: unset;
    min-height: unset;
    width: auto !important;
}

.messages.container span {
    font-size: 16px;
}

.puroduct-info-added .page-title.text-3xl.font-bold {
    order: 1;
    font-weight: 500;
    color: #A8A8A8;
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 10px;
}

.puroduct-info-added nav.breadcrumbs.bg-surface.shadow-sm {
    background: transparent;
    order: 0;
}

.puroduct-info-added .hidden {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.puroduct-info-added .price-box.price-final_price {
    order: 2;
}

.puroduct-info-added nav.breadcrumbs.bg-surface.shadow-sm .container {
    padding: 0;
}

.puroduct-info-added .flex.mt-4.justify-end {
    display: none;
}

.product-description.not-prose.descrption-added div {
    padding-left: 0;
    padding-right: 0;
}

.product-description.not-prose.descrption-added > div {
    border-top: 1px solid #373737;
}

.products.wrapper .item.product.product-item.card.card-interactive {
    background: #000;
    border: 1px solid #3c3c3c;
}

.card {
    border: 1px solid #3c3c3c;
}

button.filter-options-title.flex.justify-between.items-center.cursor-pointer.text-start.border-gray-300.w-full.border-b.pb-4 {
    border-bottom: 1px solid #3c3c3c;
}

.product-info.flex.flex-col.grow .me-auto {
    margin: 0 auto;
}

.btn:is(:active,.is-active,[aria-current=page],[aria-current=true]) {
    border-color: #15803D;
    background-color: #15803D;
    color: #fff !important;
}

a.btn.btn-secondary svg {
    color: #000;
}

a.btn.btn-secondary svg path {
    color: #000;
}

.snap-marker[aria-current=true] {
    background-color: #15803D;
}

div#filters-content {
    background: #000;
}

.bg-white {
    background: #000;
}

.filter-current.bg-white.border.border-gray-300 {
    border: 1px solid #3c3c3c;
    border-radius: 5px;
}











/* For Manu */
/* ── DESKTOP MEGA MENU (Multi-Column Serial Flow) ── */
@media (min-width: 1024px) {

    /* ── HYVÄ MENU OVERRIDES: DESKTOP & MOBILE VISIBILITY ── */
    body .navigation.hidden[x-data="initMenuDesktop"] {
        position: unset;
    }

    body .navigation.hidden[x-data="initMenuDesktop"] .hidden {
        padding: 0 10px;
    }

    body button.group.rounded.p-1[aria-controls="category-node-10"] {
        display: none;
    }

    /* ── HEADER POSITIONING & SPACING ── */
    html body .container.flex.flex-wrap.lg\:flex-nowrap.items-center.justify-between.w-full.px-6.py-3.mx-auto.mt-0 {
        position: relative;
    }

    html body nav.relative[aria-label="Main menu"] {
        position: unset;
        width: 100%;
    }

    html body nav.relative[aria-label="Main menu"] ul.flex.justify-start.flex-wrap.gap-x-7.py-4 {
    gap: 5px;
    position: unset;
    }

    html body li.relative {
        position: unset;
    }

    /* Base Dropdown positioning */
    html body li.relative ul {
        width: 100%;
        position: absolute;
        top: 70px;
    }
    
    /* 1. The Main Dropdown Box */
    html body nav.relative[aria-label="Main menu"] ul.absolute {
        display: block; /* CRITICAL: Overrides flexbox so columns work vertically */
        padding: 40px;
        column-count: 5; /* Creates the 5 vertical columns */
        column-gap: 40px; 
        width: 100%; 
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border: 1px solid #141414;
    }

    /* 2. The List Items (Prevents breaking in half) */
    html body nav.relative[aria-label="Main menu"] ul.absolute > li {
        break-inside: avoid; /* Stops a category from jumping to the next column mid-word */
        page-break-inside: avoid;
        display: block;
        margin-bottom: 2px;
    }

    /* 3. The Links */
    html body nav.relative[aria-label="Main menu"] ul.absolute > li > a {
        font-size: 16px;
        font-weight: 400;
        display: block; /* Makes the whole row clickable, not just the text */
        transition: all 0.2s ease;
        padding: 8px 10px;
        border-radius: 4px;
    }

    /* 4. The Underline on the Top-Level Parent Link */
    html body nav.relative[aria-label="Main menu"] > ul > li:hover > a {
        border-bottom: 3px solid currentColor; /* "currentColor" naturally uses whatever text color you already have */
        padding-bottom: 4px;
    }
}








/* ── Responsive ── */
@media (max-width: 900px) {
    .fh-products-grid { grid-template-columns: repeat(2, 1fr); }
    .fh3-products-grid { grid-template-columns: repeat(2, 1fr); }
    .fh3-test-grid     { grid-template-columns: 1fr; }
    .fhf-main { grid-template-columns: 1fr 1fr; gap: 32px; padding: 40px 28px 32px; }
    .fhf-bar  { padding: 16px 28px; }
}



/* ── Responsive ── */
@media (max-width: 768px) {

.card.mb-6.puroduct-info-added {
    padding-left: 0;
    padding-right: 0;
}

.block.border.border-gray-300.bg-gray-100.p-4.md\:border-0.md\:bg-transparent.md\:py-0.md\:px-0.my-6 {
    background: #000;
    border: 1px solid #3c3c3c;
    border-radius: 5px;
}



}



/* ── Responsive Rules ── */
@media (max-width: 640px) {
    /* Features Bar */
    .hero-feature {
        flex: 1 1 100%;
        border-right: none;
        border-bottom: 1px solid #2a2a2a;
    }
    
    .hero-feature:last-child {
        border-bottom: none;
    }

    /* Shop by Category */
    .sbc-thumb {
        width: 90px;
        height: 90px;
        border-radius: 16px;
    }
    
    .sbc-label {
        font-size: 11px;
    }
}

@media (max-width: 600px) {
    .fh4-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .fh4-faq-section  { padding: 36px 20px 44px; }
}


@media (max-width: 540px) {
    .fh3-products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .fh3-brand-circle  { width: 80px; height: 80px; }
    .fh3-brands-section, .fh3-na-section, .fh3-testimonials-section { padding: 24px 16px; }
}

@media (max-width: 480px) {
    .fh-products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .fh-trend-circle  { width: 80px; height: 80px; }
    .fh-trend-label   { font-size: 14px; }
    .fh-bs-section, .fh-offers-section { padding: 24px 16px; }
    .fhf-main { grid-template-columns: 1fr; gap: 28px; padding: 32px 20px 28px; }
    .fhf-bar  { padding: 14px 20px; }
}