:root {
    --solvy-blue: #0d6efd;
    --solvy-blue-dark: #0b5ed7;
    --accent: #0d9488;
    --accent-hover: #0f766e;
    --solvy-bg: #f8fafc;
    --solvy-text: #0f172a;
    --navbar-height: 72px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--solvy-text);
    background: #fff;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Layout */
.section-padding {
    padding: 2.5rem 0;
}

@media (min-width: 992px) {
    .section-padding {
        padding: 4rem 0;
    }
}

.bg-alt {
    background: var(--solvy-bg);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.section-title {
    font-weight: 700;
    font-size: 1.75rem;
}

@media (min-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
}

.section-heading p {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* Header */
.header-spacer {
    height: var(--navbar-height);
}

.navbar {
    backdrop-filter: blur(8px);
}

.navbar .navbar-brand {
    letter-spacing: 0.04em;
}

.navbar .nav-link {
    font-weight: 500;
    margin: 0 8px;
    color: var(--solvy-text) !important;
    position: relative;
    transition: color 0.2s;
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.2s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 100%;
}

.navbar .nav-link.active {
    color: var(--accent) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--solvy-blue);
    border-color: var(--solvy-blue);
}

.btn-primary:hover {
    background-color: var(--solvy-blue-dark);
    border-color: var(--solvy-blue-dark);
}

.btn-outline-primary {
    color: var(--solvy-blue);
    border-color: var(--solvy-blue);
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--solvy-blue);
    border-color: var(--solvy-blue);
}

.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.btn-accent:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
}

.btn-outline-accent {
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline-accent:hover {
    color: #fff;
    background: var(--accent);
    border-color: var(--accent);
}

.btn-outline-success:hover {
    color: #fff;
}

/* Hero (index) */
.hero-home {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: calc(100vh - var(--navbar-height));
}

.hero-home .carousel,
.hero-home .carousel-inner,
.hero-home .carousel-item {
    height: 100%;
}

.hero-home .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* About sections (home + about page) */
.about-page {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 55%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 15;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
    padding-left: 0;
    padding-right: 0;
}

.hero-overlay-inner {
    padding-bottom: 1rem;
    width: 100%;
    display: block;
}

.hero-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.35rem;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
    max-width: 420px;
}

.btn-hero {
    background: var(--accent);
    border: none;
    color: #fff;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
}

.btn-hero:hover {
    background: var(--accent-hover);
    color: #fff;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .hero-overlay {
        padding-bottom: 4rem;
    }
}

/* Mobile: keep CTA button above slider dots and fully visible */
@media (max-width: 767.98px) {
    .header-spacer {
        height: 88px;
    }

    .hero-home {
        min-height: auto;
    }

    .hero-home .carousel,
    .hero-home .carousel-inner,
    .hero-home .carousel-item {
        height: auto;
    }

    .hero-home .carousel-item img {
        height: auto;
    }

    /* Smaller logo on mobile */
    .navbar-brand img {
        width: 85px;
        height: auto;
    }

    .section-padding {
        padding: 2rem 0;
    }

    main.section-padding.distributors-page {
        margin-top: 19px;
    }

    main.section-padding.about-page {
        margin-top: 19px;
    }

    main.section-padding.terms-page {
        margin-top: 19px;
    }

    main.section-padding.privacy-page {
        margin-top: 19px;
    }

    .hero-overlay {
        padding-bottom: 4.5rem;
        padding-left: var(--bs-gutter-x, 12px);
        padding-right: var(--bs-gutter-x, 12px);
    }

    .hero-overlay-inner {
        padding-left: var(--bs-gutter-x, 12px);
        padding-right: var(--bs-gutter-x, 12px);
        padding-bottom: 0.5rem;
    }

    .btn-hero {
        display: inline-block;
        min-width: 140px;
        text-align: center;
    }
}

/* Desktop: overlay content slightly more spacing */
@media (min-width: 992px) {
    .hero-overlay {
        padding-bottom: 4.5rem;
    }

    .hero-overlay-inner {
        max-width: 560px;
    }
}

/* Carousel indicators below overlay */
.hero-home .carousel-indicators {
    bottom: 1.5rem;
}

.hero-home .carousel-indicators [data-bs-target] {
    width: 9px;
    height: 9px;
    border-radius: 999px;
}

/* About (index) */
.stat-box {
    background: #f1f5f9;
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.stat-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stat-desc {
    font-size: 0.875rem;
    color: #64748b;
}

.about-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
}

.about-card-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.about-list li {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.about-list .bi {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.text-accent {
    color: var(--accent);
}

/* Product cards (index: link wrapper; products: full card with actions) */
.product-card-link {
    color: inherit;
    text-decoration: none;
    display: block;
}

.product-card-link:hover {
    color: inherit;
}

.product-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card-link:hover .product-card,
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
    border-color: rgba(13, 148, 136, 0.25);
}

.product-card-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    padding: 1.25rem;
}

.product-card-image img {
    max-height: 160px;
    width: auto;
    object-fit: contain;
}

.product-card-body {
    padding: 1.25rem;
}

.product-card-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.product-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-card-desc {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.75rem;
    line-height: 1.45;
}

.product-card-cta {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.product-card-link:hover .product-card-cta {
    color: var(--accent-hover);
}

/* Products page: card with buttons */
.product-card-full .product-card-body {
    display: flex;
    flex-direction: column;
}

.product-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-top: auto;
}

.product-card-actions .btn-accent {
    flex: 1;
    min-width: 100px;
}

@media (max-width: 767.98px) {
    .product-card-image {
        height: 160px;
        padding: 1rem;
    }

    .product-card-image img {
        max-height: 120px;
    }

    .product-card-body {
        padding: 1rem;
    }

    .product-card-title {
        font-size: 1rem;
    }
}

/* Products listing page */
.products-page {
    padding-top: calc(var(--navbar-height) + 2rem);
    padding-bottom: 3rem;
}

.products-page-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.products-page-heading {
    max-width: 520px;
}

@media (max-width: 767.98px) {
    .products-page {
        padding-top: calc(64px + 1.5rem);
    }

    .products-page-header {
        margin-bottom: 1.5rem;
    }
}

/* Legacy card classes (if used elsewhere) */
.product-image-wrap {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    padding: 1rem;
}

.badge.bg-soft-primary {
    background: rgba(13, 148, 136, 0.12);
}

/* Industries (index) */
.industry-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    height: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.industry-card:hover {
    border-color: rgba(13, 148, 136, 0.35);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.industry-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(13, 148, 136, 0.1);
    color: var(--accent);
    border-radius: 10px;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.industry-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.industry-desc {
    font-size: 0.875rem;
    color: #64748b;
}

/* Industries page hero */
.industry-hero {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-hero-gradient {
    background: linear-gradient(135deg, #0f766e 0%, #134e4a 50%, #0f172a 100%);
}

.industry-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.industry-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.industry-hero-gradient .industry-hero-overlay {
    background: transparent;
}

.industry-hero:not(.industry-hero-gradient) .industry-hero-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(13, 148, 136, 0.4) 100%);
}

.industry-hero-overlay .container {
    padding: 2rem 1rem;
}

.industry-hero .section-title {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
    .industry-hero {
        min-height: 260px;
    }
}

/* Legacy industry box (industries.html) */
.industry-box {
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e2e8f0;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.industry-box:hover {
    border-color: rgba(13, 148, 136, 0.35);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

/* CTA section */
.cta-section {
    background: linear-gradient(135deg, #0f766e 0%, #134e4a 100%);
    color: #fff;
}

.cta-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.cta-link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-link:hover {
    color: #fff;
}

/* Contact (index) */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
}

.contact-list li {
    margin-bottom: 0.5rem;
}

.contact-list a,
.contact-list li {
    color: var(--solvy-text);
}

.contact-list a:hover {
    color: var(--accent);
}

.contact-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
}

.contact-card-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-card .form-control,
.contact-card .form-select {
    border-radius: 8px;
}

.contact-card .form-control:focus,
.contact-card .form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 148, 136, 0.2);
}

/* Contact page */
.contact-details-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.contact-details-card .contact-list a {
    color: var(--solvy-text);
    font-weight: 500;
}

.contact-details-card .contact-list a:hover {
    color: var(--accent);
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(13, 148, 136, 0.1);
    color: var(--accent);
    font-size: 1.15rem;
    flex-shrink: 0;
}

/* Footer */
.footer-section {
    background: #0f172a;
}

.footer-link {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: #fff;
}

.footer-links li {
    margin-bottom: 0.25rem;
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1040;
    transition: transform 0.15s, background 0.15s;
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    background: #1ebe5b;
    color: #fff;
}

@media (max-width: 575.98px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        right: 14px;
        bottom: 14px;
    }
}

/* Product detail page */
.product-detail-page {
    padding-top: calc(var(--navbar-height) + 2rem);
    padding-bottom: 3rem;
}

/* Modern product detail layout - uses same container class */
.product-detail-page .product-detail-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: none;
    background: transparent;
    padding: 0;
    object-fit: contain;
}

/* image container styling */
.product-detail-page .product-detail-gallery {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.06) 0%, rgba(0, 123, 255, 0.03) 100%);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* responsive improvements */
@media (max-width: 767.98px) {
    .product-detail-page #product-detail>.product-detail .product-detail-gallery {
        position: relative;
        top: 0;
        margin-top: 2rem;
        /* space above image when it's below content */
        margin-bottom: 0;
        padding: 1.5rem;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .product-detail-page .product-detail-content {
        padding: 0 1rem;
    }

    .product-detail-page .product-detail-title {
        font-size: 1.75rem;
    }

    .product-detail-page .product-tagline {
        font-size: 1rem;
    }

    .product-detail-page .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    /* Ensure fixed navbar has breathing room on small screens */
    .navbar {
        padding-left: 0.6rem;
        padding-right: 0.6rem;
    }

    /* keep container padded as well so content doesn't touch edges */
    .navbar .container {
        padding-left: 0.6rem;
        padding-right: 0.6rem;
    }

    /* move the toggler slightly away from the right edge */
    .navbar-toggler {
        margin-right: 0.5rem;
    }

    /* small left offset for logo image so it's not flush */
    .navbar .navbar-brand img {
        margin-left: 0.25rem;
    }
}

/* content wrapper default for mobile */
.product-detail-page #product-detail>.product-detail {
    display: block;
}

.product-detail-page #product-detail>.product-detail .product-detail-gallery {
    position: relative;
    top: auto;
    margin: 0 auto 1.5rem;
    max-width: 80%;
}

/* desktop layout: use grid to place gallery on right spanning header & body */
@media (min-width: 992px) {

    /* Desktop redesign: clearer left content column and compact right image column */
    .product-detail-page #product-detail>.product-detail {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    /* Desktop: show two cards side-by-side: left = image card, right = details card */
    .product-detail-page #product-detail>.product-detail .product-detail-content {
        display: grid;
        /* enlarge left column so image appears big on desktop */
        grid-template-columns: min(520px, 48%) 1fr;
        /* left: large image card, right: details */
        grid-auto-rows: auto;
        gap: 1rem 1.25rem;
        align-items: start;
        background: transparent;
        padding: 0;
    }

    .product-detail-page #product-detail>.product-detail .product-detail-header {
        grid-column: 2 / 3;
        /* header goes into right/details column */
        grid-row: 1 / 2;
        padding: 0 1rem 0 0;
    }

    /* header spacing: keep title and category together */
    .product-detail-page #product-detail>.product-detail .product-detail-header {
        margin-bottom: 1rem;
    }

    .product-detail-page #product-detail>.product-detail .product-detail-gallery {
        grid-column: 1 / 2;
        /* image card on the left */
        grid-row: 1 / span 2;
        /* span both header and body rows to be a standalone card */
        margin: 0;
        padding: 1rem;
        /* slightly larger padding for big image */
        max-width: 100%;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: start;
        /* align to top */
        background: linear-gradient(135deg, rgba(13, 110, 253, 0.03), rgba(0, 123, 255, 0.01));
        border-radius: 14px;
        box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    }

    .product-detail-page #product-detail>.product-detail .product-detail-body {
        grid-column: 2 / 3;
        /* details in right column */
        grid-row: 2 / 3;
        padding: 0 1rem 0 0;
    }

    /* constrain desktop image height */
    .product-detail-page #product-detail>.product-detail .product-detail-gallery .product-detail-image {
        /* Make image fill the left card for a bigger look on desktop */
        max-width: 100%;
        max-height: 520px;
        width: auto;
        height: auto;
        display: block;
        margin: 0 auto;
        object-fit: contain;
    }

    /* Make details area appear like a card */
    .product-detail-page #product-detail>.product-detail .product-detail-header,
    .product-detail-page #product-detail>.product-detail .product-detail-body {
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
        padding: 1rem 1.25rem;
    }

    /* Make left content visually structured: keep it compact and readable */
    .product-detail-page #product-detail>.product-detail .product-detail-header .product-detail-title {
        font-size: 2rem;
        margin-bottom: 0.25rem;
    }

    .product-detail-page #product-detail>.product-detail .product-detail-body {
        font-size: 0.95rem;
        color: #475569;
    }

    /* tighten overall content padding on desktop so top/bottom spacing is reduced */
    .product-detail-page #product-detail>.product-detail .product-detail-content {
        padding: 1rem 1.25rem;
    }
}

.product-detail-page #product-detail>.product-detail .product-detail-content {
    min-width: 0;
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
}

.product-detail-page #product-detail>.product-detail .product-detail-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.product-detail-page .product-detail-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.25;
    color: var(--solvy-blue);
}

.product-detail-page .product-tagline {
    font-size: 1.125rem;
    font-weight: 500;
    color: #475569;
    margin-bottom: 1rem;
}

.product-detail-page .product-detail-lead {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1rem;
}

.product-detail-page #product-detail>.product-detail .product-detail-description {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-detail-page .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.product-detail-page #product-detail>.product-detail .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #0f172a;
}

.product-detail-page .feature-item .bi {
    font-size: 1.25rem;
    color: var(--solvy-blue);
}

.product-detail-page #product-detail>.product-detail .sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.product-detail-page #product-detail>.product-detail .size-pill {
    padding: 0.5rem 1rem;
    border: 1px solid var(--solvy-blue);
    border-radius: 999px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    color: var(--solvy-blue);
}

.product-detail-page .size-pill.selected,
.product-detail-page .size-pill:hover {
    background: var(--solvy-blue);
    color: #fff;
}

.product-detail-page #product-detail>.product-detail .industries {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-detail-page .sizes-label,
.product-detail-page .industries-label,
.product-detail-page .application-block {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 0.5rem;
}

.product-detail-page .sizes-label strong,
.product-detail-page .industries-label strong,
.product-detail-page .application-block strong {
    color: #0f172a;
}

.product-detail-page #product-detail>.product-detail .industry-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #475569;
}

.product-detail-page .industry-item .bi {
    font-size: 1.25rem;
    color: var(--solvy-blue);
}

.product-detail-page #product-detail>.product-detail .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.product-detail-page #product-detail>.product-detail .btn-primary {
    background: var(--solvy-blue);
    border: none;
}

.product-detail-page .btn-primary:hover {
    background: var(--solvy-blue-dark);
}

.product-detail-page #product-detail>.product-detail .btn-secondary {
    background: #fff;
    color: var(--solvy-blue);
    border: 1px solid var(--solvy-blue);
}

.product-detail-page .btn-secondary:hover {
    background: #e7f1ff;
}

@media (max-width: 767.98px) {
    .product-detail-page .product-detail-title {
        font-size: 1.5rem;
    }

    .product-detail-page .product-detail-lead {
        font-size: 1rem;
    }
}

.product-detail {
    display: grid;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 992px) {
    .product-detail {
        grid-template-columns: 1fr 1.2fr;
        gap: 3rem;
    }
}

.product-detail-gallery {
    position: sticky;
    top: calc(var(--navbar-height) + 1rem);
}

.product-detail-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    padding: 1.5rem;
    object-fit: contain;
}

.product-detail-content {
    min-width: 0;
}

.product-detail-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.product-detail-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

.product-detail-lead {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1rem;
}

.product-detail-description {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-detail-blocks {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .product-detail-blocks {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.product-detail-block {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.product-detail-block-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.product-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #475569;
}

.product-detail-list li {
    margin-bottom: 0.4rem;
    padding-left: 1.25rem;
    position: relative;
}

.product-detail-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}

.product-meta-list li::before {
    content: none;
}

.product-meta-list li {
    padding-left: 0;
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.product-detail-actions .btn-accent {
    min-width: 140px;
}

@media (max-width: 767.98px) {
    .product-detail-page {
        padding-top: calc(64px + 1.5rem);
    }

    .product-detail-gallery {
        position: static;
    }

    .product-detail-title {
        font-size: 1.5rem;
    }
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 20px;
    z-index: 1100;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.15);
    padding: 14px 18px;
}

.cookie-banner .cookie-inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-banner .cookie-text {
    color: #334155;
    font-size: 0.9rem;
    line-height: 1.45;
    flex: 1;
    min-width: 200px;
}

.cookie-banner .cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-banner .cookie-text a:hover {
    color: var(--accent-hover);
}

.cookie-banner .cookie-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

@media (max-width: 575.98px) {
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 12px;
        padding: 12px 14px;
    }

    .cookie-banner .cookie-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .cookie-banner .cookie-text {
        min-width: 0;
    }

    .cookie-banner .cookie-actions {
        justify-content: flex-end;
    }
}

/* Utilities */
.section-padding-top {
    padding-top: 4rem;
}

@media (min-width: 992px) {
    .section-padding-top {
        padding-top: 4.5rem;
    }
}

.bg-solvy-light {
    background: var(--solvy-bg);
}

/* Mobile-friendly refinements */
@media (max-width: 767.98px) {

    /* slightly shorter navbar on phones */
    :root {
        --navbar-height: 64px;
    }

    /* hero section padding & typography scaling */
    .hero-overlay-inner {
        padding: 2.5rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .hero-label {
        font-size: 0.65rem;
    }

    /* industry hero smaller heading */
    .industry-hero-overlay .section-title {
        font-size: 1.5rem;
    }

    /* reduce all section titles a bit for phones */
    .section-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {

    /* moderate hero text on tablets */
    .hero-title {
        font-size: 2.25rem;
    }
}