* {
    box-sizing: border-box;
}

:root {
    --primary-color: #0d6efd;
    --accent-color: #20c997;
    --background-color: #f7f9fc;
    --font-family: 'Manrope', 'Segoe UI', sans-serif;

    --surface-bg: #f7f9fc;
    --surface-card: #ffffff;
    --surface-soft: #edf2f8;
    --text-color: #1d2735;
    --muted-color: #5e6878;
    --border-color: #d8e1ed;

    --radius-md: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 8px 24px rgba(14, 24, 39, 0.08);
    --container-width: min(1400px, 95%);
    --hero-title-color: #f8fbff;
    --hero-subtitle-color: #eaf0fb;
    --hero-eyebrow-color: color-mix(in srgb, var(--accent-color) 45%, #ffffff);
    --hero-text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-family);
    background: var(--background-color);
    color: var(--text-color);
    line-height: 1.65;
}

a {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: var(--container-width);
    margin: 0 auto;
}

.text-muted {
    color: var(--muted-color);
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--border-color);
    background: color-mix(in srgb, var(--surface-card) 90%, transparent);
    backdrop-filter: blur(8px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
}

.logo img {
    height: 56px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 16px;
}

.nav-quick-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-quick-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.84rem;
    font-weight: 700;
    background: var(--surface-card);
}

.nav-count-badge {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    line-height: 1;
    background: var(--primary-color);
    color: #fff;
}

.nav-item {
    position: relative;
}

.nav-link-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.submenu-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 4px;
    line-height: 1;
    cursor: pointer;
}

.submenu-arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-color);
    border-bottom: 2px solid var(--text-color);
    transform: rotate(45deg);
    transition: transform 0.18s ease;
}

.has-submenu.is-open > .nav-link-row .submenu-arrow {
    transform: rotate(225deg);
}

.sub-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    list-style: none;
    margin: 0;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--surface-card);
    box-shadow: var(--shadow-sm);
    z-index: 30;
}

.sub-nav .sub-nav {
    top: 0;
    left: 100%;
}

.has-submenu:hover > .sub-nav,
.has-submenu:focus-within > .sub-nav {
    display: block;
}

.sub-nav .nav-item {
    margin: 0;
}

.sub-nav .nav-link {
    display: block;
    padding: 6px 8px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
}

.nav-link[aria-current="page"],
.nav-link:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--surface-card);
    width: 42px;
    height: 42px;
    padding: 0;
}

.nav-toggle-bar {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--text-color);
}

.hero {
    padding: 108px 0 96px;
    border-bottom: 1px solid var(--border-color);
}

.hero h1 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.1;
    color: var(--hero-title-color);
    text-shadow: var(--hero-text-shadow);
}

.eyebrow {
    margin: 0 0 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--hero-eyebrow-color);
    text-shadow: var(--hero-text-shadow);
}

.hero-subtitle {
    margin: 0;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: var(--hero-subtitle-color);
    text-shadow: var(--hero-text-shadow);
}

.site-main {
    padding: 28px 0 44px;
}

.section {
    padding: 56px 0;
}

.page-section {
    background: transparent;
}

.content-default-footer {
    margin-top: 1.25rem;
    padding: 1rem 1.125rem;
    border: 1px solid color-mix(in srgb, var(--primary-color) 22%, var(--border-color));
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.08);
}

.content-footer-line {
    margin: 0 0 0.65rem;
    color: var(--text-color);
    line-height: 1.62;
}

.content-footer-line:last-child {
    margin-bottom: 0;
}

.content-default-footer a {
    color: var(--primary-color);
    font-weight: 700;
    text-underline-offset: 2px;
}

.content-default-footer a:hover {
    color: color-mix(in srgb, var(--primary-color) 82%, #001a52);
}

.content-default-footer .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.56rem 0.95rem;
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
}

.content-default-footer .btn-success {
    background: #25d366;
    border-color: #20bc59;
    color: #fff;
}

.content-default-footer .btn-success:hover {
    background: #1fb95a;
    border-color: #1aa24f;
    color: #fff;
}

.section-split {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
    gap: 30px;
}

.section-text {
    text-align: left;
    height: 100%;
}

.container.section-text,
.section-text.container {
    width: var(--container-width);
    max-width: none;
}

.section-text h2,
.content-header h1,
.card h2,
.card h3 {
    margin-top: 0;
}

.section-figure {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.section-figure img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.card,
.content-card,
.form-card,
.section-text {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.content-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.content-header {
    margin-bottom: 20px;
}

.post-card h2 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.post-meta {
    margin: 0 0 10px;
}

.post-thumb {
    width: 100%;
    display: block;
    border-radius: 0.6rem;
}

.post-thumb-link {
    display: block;
    text-decoration: none;
}

.listing-square-media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 0.6rem;
    background: linear-gradient(180deg, #f4f7fb 0%, #e9eef5 100%);
}

.listing-square-media__image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transform: translate(calc(-50% + var(--listing-offset-x, 0%)), calc(-50% + var(--listing-offset-y, 0%))) scale(var(--listing-scale, 1));
    transform-origin: center center;
}

.content-embed {
    margin: 14px 0;
}

.content-embed iframe,
.content-embed video {
    max-width: 100%;
    border-radius: 8px;
}

.content-embed audio {
    width: 100%;
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(260px, 1fr);
    gap: 20px;
    align-items: start;
}

.blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-sidebar {
    display: grid;
    gap: 14px;
}

.blog-sidebar-card {
    padding: 18px;
}

.sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.sidebar-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 4px 10px;
    text-decoration: none;
    color: var(--text-color);
    background: var(--surface-soft);
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.shop-grid {
    display: grid;
    gap: 14px;
}

.products-archive-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.shop-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface-card);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.shop-card-image {
    position: relative;
    display: block;
}

.shop-card-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.shop-card-image .listing-square-media {
    border-radius: 0;
}

.shop-card-image-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px;
    background: linear-gradient(180deg, #f4f7fb 0%, #e9eef5 100%);
    color: #586476;
    font-weight: 600;
    font-size: 0.86rem;
    letter-spacing: 0.01em;
}

.shop-card-discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: #c62828;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 4px 8px;
}

.shop-card-body {
    padding: 12px;
    display: grid;
    gap: 8px;
}

.shop-card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6px;
}

.favorite-btn {
    border: 1px solid var(--border-color);
    background: var(--surface-soft);
    color: var(--text-color);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    line-height: 1;
}

.favorite-btn.is-active {
    background: #ffe3e6;
    border-color: #ef9aa4;
    color: #b3261e;
}

.favorite-btn:disabled {
    opacity: 0.65;
    cursor: wait;
}

.shop-card-title {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.35;
}

.shop-card-seller {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted-color);
}

.shop-card-price {
    margin: 0;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
}

.shop-card-price-current {
    font-weight: 800;
    color: var(--text-color);
}

.shop-card-price-regular {
    color: var(--muted-color);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.shop-card-stock {
    margin: 0;
    font-size: 0.83rem;
}

.shop-card-stock.is-in {
    color: #2f7f4f;
}

.shop-card-stock.is-out {
    color: #b3261e;
}

.shop-card-actions {
    display: flex;
    justify-content: flex-start;
}

.shop-card-actions form {
    width: 100%;
}

.shop-card-actions .btn {
    width: 100%;
}

.product-page {
    display: grid;
    grid-template-columns: minmax(420px, 1.05fr) minmax(0, 1.2fr);
    gap: 26px;
    align-items: start;
}

.product-image {
    position: relative;
    padding: 12px;
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.product-detail-image {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.product-image-placeholder {
    width: 100%;
    max-width: none;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    background: linear-gradient(180deg, #f4f7fb 0%, #e9eef5 100%);
    color: #586476;
    font-weight: 600;
}

.product-info {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 20px;
}

.product-title {
    margin: 0 0 10px;
    font-size: clamp(1.75rem, 2.8vw, 2.35rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.product-info .shop-card-seller {
    margin: 0 0 10px;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--muted-color);
}

.product-stock {
    margin: 0 0 12px;
    font-size: 0.96rem;
    font-weight: 700;
}

.product-price {
    margin: 10px 0 18px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.product-price .shop-card-price-current {
    font-size: clamp(1.65rem, 2.6vw, 2.15rem);
    font-weight: 900;
    letter-spacing: -0.02em;
}

.product-price .shop-card-price-regular {
    font-size: 0.98rem;
    font-weight: 700;
}

.product-cart {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.product-cart-label {
    font-weight: 800;
    font-size: 0.95rem;
}

.product-cart-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.product-qty-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.product-qty-btn {
    min-width: 40px;
    min-height: 40px;
    padding: 0 10px;
    font-size: 1.05rem;
}

.product-cart input[type='number'] {
    width: 86px;
    min-height: 40px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: var(--surface-soft);
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.product-add-to-cart {
    min-height: 40px;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.12);
    font-size: 0.95rem;
    font-weight: 800;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.product-add-to-cart:hover:not(:disabled),
.product-add-to-cart:focus-visible:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.18);
}

.product-add-to-cart:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.product-description {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.68;
    color: var(--text-color);
}

.product-description p {
    margin: 0 0 14px;
}

.product-description ul,
.product-description ol {
    margin: 0 0 16px;
    padding-left: 1.35rem;
}

.product-description li {
    margin: 0 0 8px;
}

.product-description h2,
.product-description h3,
.product-description h4 {
    margin: 20px 0 10px;
    line-height: 1.3;
}

.product-back-link {
    margin-top: 14px;
}

.related-products {
    margin-top: 28px;
}

.related-products .shop-card-title {
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.35;
}

.related-products .shop-card-price {
    gap: 10px;
}

.related-products .shop-card-price-current {
    font-size: 1.06rem;
    font-weight: 900;
}

.related-products .shop-card-price-regular {
    font-size: 0.9rem;
    font-weight: 700;
}

.home-sections-stack {
    display: block;
}

.home-product-slider__header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-bottom: 18px;
}

.home-product-slider__track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    scroll-snap-type: x proximity;
}

.home-product-slider__item {
    flex: 0 0 min(300px, 82vw);
    scroll-snap-align: start;
}

.home-product-slider__item .shop-card {
    height: 100%;
}

.home-blog-section .post-card {
    height: 100%;
}

.home-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.home-category-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.home-category-card h3 a {
    color: inherit;
    text-decoration: none;
}

.home-category-card h3 a:hover {
    text-decoration: underline;
}

.form-input,
.form-select,
.form-textarea {
    box-sizing: border-box;
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    min-height: 46px;
    padding: 11px 14px;
    font: inherit;
    line-height: 1.45;
    color: var(--text-color);
    background: var(--surface-soft);
}

.public-pagination-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.public-pagination-summary {
    color: var(--muted-color);
}

.public-pagination-nav {
    display: flex;
    justify-content: center;
}

.public-pagination-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
}

.public-pagination-item {
    margin: 0;
}

.public-pagination-link {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-left: 0;
    background: var(--surface-card);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
}

.public-pagination-item:first-child .public-pagination-link {
    border-left: 1px solid var(--border-color);
}

.public-pagination-item.is-active .public-pagination-link {
    background: var(--surface-soft);
    color: var(--primary-color);
}

.public-pagination-item.is-gap .public-pagination-link {
    pointer-events: none;
}

.public-pagination-item.is-disabled .public-pagination-link {
    opacity: 0.45;
    pointer-events: none;
}

.form-textarea {
    min-height: 140px;
    padding-top: 12px;
    resize: vertical;
}

.form-textarea--compact {
    min-height: 96px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    display: inline-block;
    font-weight: 600;
    line-height: 1.35;
}

.form-card > h3,
.content-card > h2,
.content-card > h3 {
    margin: 0 0 16px;
}

.form-card > .text-muted,
.form-card form,
.form-card .form-feedback {
    margin-top: 0;
}

.form-card > .text-muted,
.content-card > .text-muted,
.form-feedback {
    margin-bottom: 18px;
}

.form-card form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.cta-actions {
    justify-content: flex-start;
    margin-top: 4px;
}

.contact-actions {
    margin-top: 20px;
}

.cta-actions .btn,
.contact-actions .btn {
    min-height: 46px;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

#contact-page-content-title,
#contact-details-title,
#request-quote-page-content-title,
#quote-form-title-card,
#quote-help-title {
    scroll-margin-top: 100px;
}

.site-main > .page-section:first-child {
    padding-top: 40px;
}

.site-main > .page-section + .page-section {
    padding-top: 0;
}

.site-main > .page-section .content-card p:last-child,
.site-main > .page-section .form-card p:last-child {
    margin-bottom: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    text-decoration: none;
    font-weight: 700;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.site-footer {
    background: var(--surface-soft);
    border-top: 1px solid var(--border-color);
    padding-top: 28px;
}

.footer-content {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(var(--footer-columns, 4), minmax(0, 1fr));
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column h4 {
    margin: 0 0 6px;
}

.footer-column h5 {
    margin: 6px 0;
    font-size: 0.95rem;
}

.footer-custom-html p {
    margin-top: 0;
}

.footer-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.footer-menu-item .footer-menu-list {
    margin-left: 12px;
    margin-top: 4px;
}

.footer-contact-list {
    margin: 0;
    font-style: normal;
}

.footer-contact-list p {
    margin: 0;
}

.footer-social-list {
    display: grid;
    gap: 8px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-color);
}

.footer-social-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: var(--surface-card);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
}

.footer-social-icon svg {
    width: 14px;
    height: 14px;
    display: block;
}

.footer-newsletter-form {
    display: grid;
    gap: 8px;
}

.footer-buttons {
    display: grid;
    gap: 8px;
    margin-top: 10px;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 9px 12px;
    border: 1px solid var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.footer-btn--primary {
    background: var(--primary-color);
    color: #fff;
}

.footer-btn--outline {
    background: transparent;
    color: var(--primary-color);
}

.footer-btn--light {
    background: var(--surface-card);
    color: var(--text-color);
    border-color: var(--border-color);
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid var(--border-color);
    padding: 14px 0;
    text-align: center;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 90px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: grid;
    place-items: center;
    z-index: 9996;
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
}

@media (max-width: 640px) {
    .home-product-slider__header {
        flex-direction: column;
        align-items: stretch;
    }

    .home-product-slider__item {
        flex-basis: min(280px, 84vw);
    }

    .whatsapp-float {
        right: 16px;
        bottom: 86px;
    }
}

@media (max-width: 1280px) {
    :root {
        --container-width: min(1240px, 94%);
    }

    .products-archive-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    :root {
        --container-width: min(1080px, 93%);
    }

    .products-archive-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    :root {
        --container-width: 94%;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        background: var(--surface-card);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        padding: 14px;
        margin-top: 8px;
    }

    .sub-nav {
        display: none;
        position: static;
        min-width: 100%;
        border: 0;
        box-shadow: none;
        padding: 6px 0 0 12px;
        margin-top: 4px;
    }

    .submenu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .has-submenu.is-open > .sub-nav {
        display: block;
    }

    .site-nav.is-menu-open .nav-links {
        display: flex;
    }

    .nav-inner {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .nav-quick-actions {
        width: 100%;
        justify-content: flex-end;
        order: 2;
    }

    .section-split,
    .footer-content,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .blog-layout,
    .product-page {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .products-archive-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero {
        padding: 88px 0 74px;
    }

}

@media (max-width: 700px) {
    :root {
        --container-width: 92%;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .products-archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    :root {
        --container-width: 94%;
    }

    .products-archive-grid {
        grid-template-columns: 1fr;
    }
}
