:root {
    --color-ink: #171717;
    --color-ink-soft: #666b73;
    --color-surface: #ffffff;
    --color-surface-alt: #eef1f4;
    --color-line: rgba(17, 17, 17, 0.08);
    --color-accent: #ff6000;
    --color-accent-deep: #e85b05;
    --color-accent-soft: #f1b202;
    --color-footer: #12151b;
    --shadow-soft: 0 20px 60px rgba(17, 17, 17, 0.08);
    --shadow-card: 0 24px 50px rgba(17, 17, 17, 0.16);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 14px;
    --content-width: 1440px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: linear-gradient(180deg, #f8f9fb 0%, #f1f3f6 52%, #e8ecf1 100%);
    color: var(--color-ink);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    padding-top: 86px;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0;
    color: var(--color-ink-soft);
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: var(--color-ink);
    letter-spacing: 0;
}

.container,
.container-fluid {
    width: 100%;
}

.container {
    max-width: var(--content-width);
}

.btn-primary {
    background: var(--color-accent);
    border: 1px solid var(--color-accent);
    border-radius: 999px;
    color: #ffffff;
    font-weight: 600;
    padding: 0.9rem 1.6rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary:hover {
    background: var(--color-accent-deep);
    border-color: var(--color-accent-deep);
    box-shadow: 0 14px 28px rgba(255, 96, 0, 0.24);
    transform: translateY(-2px);
}

.navbar-premium {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(17, 17, 17, 0.05);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.04);
    left: 0;
    padding: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    z-index: 1050;
}

.navbar-premium.scrolled {
    box-shadow: 0 16px 40px rgba(17, 17, 17, 0.08);
}

.navbar-premium__inner {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    margin: 0 auto;
    max-width: var(--content-width);
    padding: 1rem 1.6rem;
    width: 100%;
}

.navbar-premium.scrolled .navbar-premium__inner {
    padding-bottom: 0.8rem;
    padding-top: 0.8rem;
}

.navbar-premium__brand {
    align-items: center;
    display: inline-flex;
    margin: 0;
    padding: 0;
}

.navbar-premium__brand-mark {
    align-items: center;
    background: var(--color-accent);
    border-radius: 16px;
    display: inline-flex;
    justify-content: center;
    min-height: 48px;
    padding: 0.6rem 0.95rem;
}

.logo-navbar {
    height: auto;
    max-height: 28px;
    width: 210px;
}

.navbar-premium__collapse {
    flex: 1 1 100%;
    flex-basis: 100%;
    order: 3;
}

.navbar-premium .navbar-nav {
    align-items: flex-start;
    gap: 0.2rem;
    width: 100%;
}

.navbar-premium .nav-link {
    color: #50555c !important;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    position: relative;
    transition: color 0.2s ease;
}

.navbar-premium .nav-link:hover,
.navbar-premium .nav-link:focus {
    color: var(--color-ink) !important;
}

.navbar-premium .nav-link::after {
    background: var(--color-accent);
    border-radius: 999px;
    bottom: 0.45rem;
    content: "";
    height: 2px;
    left: 1rem;
    opacity: 0;
    position: absolute;
    right: 1rem;
    transform: scaleX(0.35);
    transform-origin: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.navbar-premium .nav-link:hover::after,
.navbar-premium .nav-link:focus::after,
.navbar-premium .show > .nav-link::after {
    opacity: 1;
    transform: scaleX(1);
}

.navbar-premium .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 18px;
    box-shadow: 0 28px 40px rgba(17, 17, 17, 0.1);
    margin-top: 0.85rem;
    min-width: 250px;
    padding: 0.6rem;
}

.navbar-premium .dropdown-item {
    border-radius: 12px;
    color: #4f545b;
    font-size: 0.92rem;
    padding: 0.75rem 0.9rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.navbar-premium .dropdown-item:hover,
.navbar-premium .dropdown-item:focus {
    background: rgba(255, 106, 0, 0.08);
    color: var(--color-ink);
    transform: translateX(4px);
}

.navbar-premium__utilities {
    align-items: center;
    display: flex;
    gap: 0.75rem;
    margin-left: auto;
    order: 2;
}

.lang-toggle {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 999px;
    color: #4f545b;
    display: inline-flex;
    gap: 0.6rem;
    justify-content: center;
    min-width: 104px;
    padding: 0.35rem 0.5rem 0.35rem 0.4rem;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lang-toggle:hover,
.lang-toggle:focus {
    background: #ffffff;
    border-color: rgba(17, 17, 17, 0.22);
    color: var(--color-ink);
    box-shadow: 0 10px 20px rgba(17, 17, 17, 0.08);
    transform: translateY(-1px);
}

.lang-toggle__track {
    background: rgba(17, 17, 17, 0.08);
    border-radius: 999px;
    display: inline-flex;
    height: 34px;
    padding: 3px;
    position: relative;
    width: 58px;
}

.lang-toggle__thumb {
    align-items: center;
    background: #111111;
    border-radius: 999px;
    box-shadow: 0 8px 16px rgba(17, 17, 17, 0.15);
    display: inline-flex;
    height: 28px;
    justify-content: center;
    left: 3px;
    position: absolute;
    top: 3px;
    transition: transform 0.24s ease;
    width: 28px;
}

.lang-toggle--en .lang-toggle__thumb {
    transform: translateX(24px);
}

.lang-toggle__label {
    color: #111111;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    min-width: 1.9rem;
    text-align: center;
}

.lang-flag {
    border-radius: 999px;
    display: inline-block;
    height: 14px;
    overflow: hidden;
    position: relative;
    width: 14px;
}

.lang-flag--pe {
    background: linear-gradient(90deg, #d91023 0 33.33%, #ffffff 33.33% 66.66%, #d91023 66.66% 100%);
}

.lang-flag--us {
    background:
        linear-gradient(180deg,
            #b22234 0 7.69%,
            #ffffff 7.69% 15.38%,
            #b22234 15.38% 23.07%,
            #ffffff 23.07% 30.76%,
            #b22234 30.76% 38.45%,
            #ffffff 38.45% 46.14%,
            #b22234 46.14% 53.83%,
            #ffffff 53.83% 61.52%,
            #b22234 61.52% 69.21%,
            #ffffff 69.21% 76.9%,
            #b22234 76.9% 84.59%,
            #ffffff 84.59% 92.28%,
            #b22234 92.28% 100%);
}

.lang-flag--us::before {
    background: #3c3b6e;
    border-top-left-radius: 999px;
    content: "";
    height: 57%;
    left: 0;
    position: absolute;
    top: 0;
    width: 52%;
}

.navbar-premium .navbar-toggler {
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 14px;
    padding: 0.45rem 0.65rem;
}

.navbar-premium .navbar-toggler:focus {
    box-shadow: none;
}

.navbar-premium .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(17,17,17,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.home-page {
    background: var(--color-surface);
}

.home-hero {
    padding: 0 1rem 2.75rem;
}

.home-hero__frame {
    border-radius: 0 0 34px 34px;
    box-shadow: var(--shadow-soft);
    margin: 0 auto;
    max-width: 1760px;
    overflow: hidden;
    position: relative;
}

.home-hero__carousel,
.home-hero__slide {
    min-height: clamp(190px, 27vw, 460px);
}

.home-hero__media {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-soft) 100%);
    min-height: clamp(190px, 27vw, 460px);
    position: relative;
}

.home-hero__media img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.home-hero__media::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0) 38%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.home-hero .carousel-control-prev,
.home-hero .carousel-control-next {
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    bottom: 1.5rem;
    display: inline-flex;
    height: 48px;
    justify-content: center;
    left: auto;
    opacity: 0.7;
    top: auto;
    transition: all 0.3s ease;
    width: 48px;
}

.home-hero .carousel-control-prev:hover,
.home-hero .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transform: translateY(-2px);
}

.home-hero .carousel-control-prev {
    right: 4.9rem;
}

.home-hero .carousel-control-next {
    right: 1.5rem;
}

.home-hero .carousel-indicators {
    bottom: 1.9rem;
    justify-content: flex-start;
    left: 2rem;
    margin: 0;
    right: auto;
}

.home-hero .carousel-indicators [data-bs-target] {
    background-color: rgba(255, 255, 255, 0.7);
    border: 0;
    border-radius: 999px;
    height: 6px;
    margin-right: 0.45rem;
    opacity: 1;
    width: 30px;
}

.home-hero .carousel-indicators .active {
    background-color: #ffffff;
}

.home-categories {
    background: linear-gradient(180deg, #fbfbfc 0%, #f0f3f7 100%);
    padding: 1rem 0 0;
    position: relative;
}

.home-categories .container {
    max-width: 1580px;
}

.home-categories::before {
    background: radial-gradient(circle at top center, rgba(255, 96, 0, 0.08), transparent 52%);
    content: "";
    height: 300px;
    left: 50%;
    pointer-events: none;
    position: absolute;
    top: -80px;
    transform: translateX(-50%);
    width: min(100%, 1200px);
}

.home-section-heading {
    margin: 0 auto 2.5rem;
    max-width: 860px;
    padding: 0 1.5rem;
    text-align: center;
}

.home-section-heading__eyebrow {
    color: var(--color-accent);
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.home-section-heading h1,
.home-section-heading h2 {
    color: var(--color-ink) !important;
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 700;
    margin-bottom: 0.85rem;
}

.home-section-heading p {
    font-size: 1.02rem;
    margin: 0 auto;
    max-width: 720px;
}

.home-category-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0 0.6rem;
}

.home-category-card {
    background: #0f1115;
    border-radius: 6px;
    isolation: isolate;
    min-height: clamp(500px, 40vw, 620px);
    overflow: hidden;
    position: relative;
    box-shadow: none;
}

.home-category-card::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.14) 45%, rgba(0, 0, 0, 0.32) 100%);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.home-category-card__image {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    width: 100%;
}

.home-category-card:hover .home-category-card__image {
    transform: scale(1.04);
}

.home-category-card__content {
    align-items: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    inset: 0;
    justify-content: flex-start;
    padding: 2.35rem 1.5rem 2rem;
    position: absolute;
    text-align: center;
    z-index: 2;
}

.home-category-card__tag {
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 500;
}

.home-category-card__title {
    color: #ffffff;
    font-size: clamp(2rem, 2.6vw, 3rem);
    font-weight: 700;
    line-height: 1.06;
    max-width: 100%;
    text-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.home-category-card__description {
    color: rgba(255, 255, 255, 0.8);
    max-width: 80%;
    text-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.home-category-card__actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 0.25rem;
}

.home-category-card__link {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
}

.home-category-card__link::after {
    color: var(--color-accent);
    content: "›";
    font-size: 1.15rem;
    margin-left: 0.4rem;
}

.home-category-card__link:hover {
    color: #ffffff;
}

/* HOME OFFERS CAROUSEL */
.home-offers {
    background: #1a1a1a;
    padding: 3.5rem 0;
    position: relative;
}

.home-offers .home-section-heading__eyebrow {
    color: var(--color-accent);
}

.home-offers .home-section-heading h1,
.home-offers .home-section-heading h2 {
    color: #ffffff !important;
}

.home-offers .home-section-heading p {
    color: #e0e0e0;
}

.home-offers .container {
    max-width: 1580px;
}

.home-offers-grid {
    display: flex;
    position: relative;
    padding: 0 0.6rem;
}

.carousel.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel.carousel-fade .carousel-item.active {
    opacity: 1;
}

.offers-slide-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
}

.home-offer-card {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 6px;
    isolation: isolate;
    min-height: clamp(420px, 35vw, 540px);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.home-offer-card__overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.4) 100%);
    inset: 0;
    position: absolute;
    z-index: 1;
}

.home-offer-card__content {
    align-items: flex-start;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    inset: 0;
    justify-content: flex-end;
    padding: 2rem 1.75rem;
    position: absolute;
    text-align: left;
    z-index: 2;
}

.home-offer-card__label {
    color: var(--color-accent);
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-offer-card__title {
    color: #ffffff;
    font-size: clamp(1.6rem, 2.2vw, 2.4rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.home-offer-card__desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    max-width: 90%;
    text-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.home-offer-card__prices {
    align-items: center;
    display: flex;
    gap: 1rem;
    margin: 0.7rem 0;
}

.home-offer-card__price-original {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.home-offer-card__price-sale {
    color: var(--color-accent);
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 6px 16px rgba(255, 96, 0, 0.4);
}

.home-offer-card__cta {
    align-items: center;
    background: var(--color-accent);
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: 600;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.75rem 1.4rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.home-offer-card__cta:hover {
    background: var(--color-accent-deep);
    box-shadow: 0 10px 20px rgba(255, 96, 0, 0.3);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Carousel controls styling */
.home-offers .carousel-control-prev,
.home-offers .carousel-control-next {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    height: 3rem;
    opacity: 0.6;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    width: 3rem;
}

.home-offers .carousel-control-prev:hover,
.home-offers .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.35);
    opacity: 1;
}

.home-offers .carousel-control-prev-icon,
.home-offers .carousel-control-next-icon {
    background-color: transparent !important;
    padding: 0;
}

/* Remove duplicate styles - handled in new carousel styles */
@media (max-width: 1024px) {
    .home-offers__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .home-offers .carousel-control-prev,
    .home-offers .carousel-control-next {
        height: 45px;
        width: 45px;
        left: 15px;
    }

    .home-offers .carousel-control-next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .home-offers {
        padding: 2rem 0;
    }

    .home-offers__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .home-offers__card {
        min-height: auto;
        padding: 1rem;
    }

    .home-offers__image {
        height: 150px;
        margin-bottom: 0.75rem;
    }

    .home-offers__image img {
        max-height: 150px;
    }

    .home-offers__product-name {
        font-size: 1rem;
    }

    .home-offers__description {
        font-size: 0.8rem;
    }

    .home-offers__prices {
        gap: 0.75rem;
        padding: 0.75rem 0;
    }

    .home-offers__original-price {
        font-size: 0.85rem;
    }

    .home-offers__discount-price {
        font-size: 1.3rem;
    }

    .home-offers__discount-badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
    }

    .home-offers .carousel-control-prev,
    .home-offers .carousel-control-next {
        height: 40px;
        width: 40px;
        left: 10px;
    }

    .home-offers .carousel-control-next {
        right: 10px;
    }

    .home-offers .carousel-indicators button {
        height: 10px;
        width: 10px;
    }

    .home-offers .carousel-indicators button.active {
        width: 24px;
    }
}

/* Carousel Offers Styles */
#offersCarousel {
    position: relative;
}

.home-offers .carousel-inner {
    border-radius: 12px;
    overflow: visible;
}

.home-offers__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 1rem 0;
}

.home-offers__card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    min-height: 380px;
    position: relative;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-offers__card:hover {
    box-shadow: 0 8px 24px rgba(255, 96, 0, 0.2);
    transform: translateY(-4px);
    border-color: rgba(255, 96, 0, 0.3);
}

.home-offers__discount-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--color-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 4px 12px rgba(255, 96, 0, 0.4);
    white-space: nowrap;
    z-index: 10;
}

.home-offers__image {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    height: 200px;
}

.home-offers__image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 200px;
}

.home-offers__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.home-offers__product-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.home-offers__description {
    font-size: 0.85rem;
    color: #cccccc;
    margin: 0;
    line-height: 1.4;
}

.home-offers__prices {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.home-offers__original-price {
    font-size: 0.95rem;
    color: #aaaaaa;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    font-weight: 600;
}

.home-offers__discount-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-accent);
    text-shadow: 0 2px 8px rgba(255, 96, 0, 0.2);
}

.home-offers .carousel-indicators {
    position: absolute;
    bottom: 20px;
    display: none !important;
    gap: 0.8rem;
    justify-content: center;
    width: 100%;
    z-index: 10;
}

.home-offers .carousel-indicators button {
    background-color: rgba(255, 255, 255, 0.4) !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 1 !important;
    padding: 0;
}

.home-offers .carousel-indicators button.active {
    background-color: var(--color-accent) !important;
    border-color: var(--color-accent) !important;
    width: 28px;
    border-radius: 6px;
    opacity: 1 !important;
}

.home-offers .carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.6) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
}

.home-offers .carousel-control-prev,
.home-offers .carousel-control-next {
    position: absolute;
    background: rgba(255, 96, 0, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    height: 50px;
    width: 50px;
    opacity: 0.9;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
}

.home-offers .carousel-control-prev {
    left: 20px;
}

.home-offers .carousel-control-next {
    right: 20px;
}

.home-offers .carousel-control-prev:hover,
.home-offers .carousel-control-next:hover {
    background: var(--color-accent);
    border-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    box-shadow: 0 4px 16px rgba(255, 96, 0, 0.4);
}

.home-offers .carousel-control-prev-icon,
.home-offers .carousel-control-next-icon {
    background-image: none !important;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-offers .carousel-control-prev-icon::before {
    content: "❮";
    font-size: 18px;
    color: white;
    font-weight: bold;
}

.home-offers .carousel-control-next-icon::before {
    content: "❯";
    font-size: 18px;
    color: white;
    font-weight: bold;
}

/* Responsive carousel offers */
@media (max-width: 1024px) {
    .home-offers__card {
        gap: 1.5rem;
        padding: 1.5rem;
        min-height: 300px;
    }

    .home-offers__image {
        flex: 0 0 35%;
    }

    .home-offers__product-name {
        font-size: clamp(1.2rem, 2vw, 1.8rem);
    }

    .home-offers__discount-price {
        font-size: 1.6rem;
    }

    .home-offers__original-price {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .home-offers__card {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        min-height: auto;
    }

    .home-offers__image {
        flex: none;
        width: 100%;
        max-height: 250px;
    }

    .home-offers__image img {
        max-height: 250px;
    }

    .home-offers__content {
        gap: 0.75rem;
    }

    .home-offers__product-name {
        font-size: 1.3rem;
    }

    .home-offers__description {
        font-size: 0.9rem;
    }

    .home-offers__prices {
        gap: 1rem;
        padding: 1rem 0;
    }

    .home-offers__discount-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .home-offers .carousel-control-prev,
    .home-offers .carousel-control-next {
        height: 2.2rem;
        width: 2.2rem;
    }
}

.site-footer {
    background: var(--color-footer);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    margin-top: 5rem;
    padding: 4.25rem 0 1.6rem;
    position: relative;
}

.site-footer::before {
    background: linear-gradient(90deg, rgba(255, 96, 0, 0.18) 0%, rgba(255, 96, 0, 0) 38%, rgba(255, 96, 0, 0.12) 100%);
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.site-footer__inner {
    padding: 0 1.5rem;
}

.site-footer__grid {
    column-gap: 2rem;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(0, 1fr));
    row-gap: 2.5rem;
}

.site-footer__brand {
    max-width: 360px;
}

.site-footer__brand-mark {
    align-items: center;
    background: var(--color-accent);
    border-radius: 18px;
    display: inline-flex;
    justify-content: center;
    margin-bottom: 1.35rem;
    padding: 0.9rem 1rem;
}

.site-footer__logo {
    width: 210px;
}

.site-footer__brand p,
.site-footer__column p,
.site-footer__column span,
.site-footer__column a {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer__column h3 {
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.site-footer__links,
.site-footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.site-footer__links a:hover,
.site-footer__contact-list a:hover {
    color: var(--color-accent);
}

.site-footer__contact-list strong {
    color: #ffffff;
    display: inline-block;
    font-weight: 600;
    margin-right: 0.3rem;
}

.site-footer__social-block {
    margin-top: 1.5rem;
}

.site-footer__social-title {
    color: #ffffff;
    display: block;
    font-size: 0.86rem;
    font-weight: 600;
    margin-bottom: 0.9rem;
}

.site-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.site-footer__socials a {
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    width: 42px;
}

.site-footer__socials a:hover {
    background: var(--color-accent);
    color: #ffffff;
    transform: translateY(-2px);
}

.site-footer__bottom {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2.6rem;
    padding-top: 1.4rem;
}

.site-footer__bottom p {
    color: rgba(255, 255, 255, 0.56);
}

.site-footer__bottom-links {
    color: rgba(255, 255, 255, 0.56);
    display: inline-flex;
    gap: 1.3rem;
}

.section-title {
    margin-bottom: 3rem;
    text-align: center;
}

.fondo_orange {
    background-color: var(--color-accent) !important;
    color: #ffffff;
}

.text_naranja,
.text_azul {
    color: var(--color-accent) !important;
}

.text_negro {
    color: var(--color-ink) !important;
}

.bg-dark-premium {
    background: var(--color-footer);
    color: #ffffff;
}

.fondo {
    background-color: var(--color-surface-alt);
}

.fondo_azul {
    background-color: var(--color-surface-alt);
}

/* INDUSTRY SOLUTIONS SECTION */
.home-industry-solutions {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px;
    padding: 5rem 1rem;
    position: relative;
}

.home-industry-solutions::before {
    background: linear-gradient(135deg, rgba(255, 96, 0, 0.02) 0%, rgba(18, 21, 27, 0.3) 50%, rgba(18, 21, 27, 0.25) 100%);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 0;
}

.home-industry-solutions__overlay {
    background: linear-gradient(180deg, rgba(18, 21, 27, 0.4) 0%, rgba(18, 21, 27, 0.2) 50%, rgba(18, 21, 27, 0.4) 100%);
    inset: 0;
    position: absolute;
    z-index: 1;
}

.home-industry-solutions__content {
    margin: 0 auto;
    max-width: 1580px;
    position: relative;
    z-index: 2;
}

.home-industry-solutions .home-section-heading {
    margin-bottom: 4rem;
}

.home-industry-solutions .home-section-heading__eyebrow {
    color: var(--color-accent);
}

.home-industry-solutions .home-section-heading h2 {
    color: #ffffff !important;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.home-industry-solutions .home-section-heading p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.home-industry-solutions__grid {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 16px 40px rgba(0, 0, 0, 0.2);
}

.industry-card {
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 3.5rem 2.5rem;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.industry-card::before {
    background: linear-gradient(135deg, rgba(255, 96, 0, 0.08) 0%, transparent 100%);
    content: "";
    inset: 0;
    opacity: 0;
    position: absolute;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.industry-card:not(:last-child)::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.04) 50%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 50%;
    position: absolute;
    right: 0;
    top: 25%;
    width: 0.5px;
    z-index: 3;
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-4px);
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-card__icon-wrapper {
    align-items: center;
    background: rgba(255, 96, 0, 0.1);
    border: 1px solid rgba(255, 96, 0, 0.25);
    border-radius: 18px;
    display: flex;
    height: 100px;
    justify-content: center;
    transition: all 0.35s ease;
    width: 100px;
}

.industry-card:hover .industry-card__icon-wrapper {
    background: rgba(255, 96, 0, 0.2);
    border-color: rgba(255, 96, 0, 0.5);
    box-shadow: 0 0 25px rgba(255, 96, 0, 0.15);
    transform: scale(1.08);
}

.industry-card__icon {
    color: var(--color-accent);
    height: 54px;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.35s ease;
    width: 54px;
}

.industry-card:hover .industry-card__icon {
    filter: drop-shadow(0 0 10px rgba(255, 96, 0, 0.3));
}

.industry-card__title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin: 0;
    transition: all 0.35s ease;
}

.industry-card:hover .industry-card__title {
    color: var(--color-accent);
}

.industry-card__desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    margin: 0;
    transition: all 0.35s ease;
}

.industry-card:hover .industry-card__desc {
    color: rgba(255, 255, 255, 0.9);
}

.industry-card__link {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-deep) 100%);
    border-radius: 999px;
    color: #ffffff;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
    padding: 0.75rem 1.6rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.industry-card__link::after {
    content: " →";
    margin-left: 0.5rem;
    transition: margin-left 0.35s ease;
}

.industry-card__link:hover {
    box-shadow: 0 10px 25px rgba(255, 96, 0, 0.3);
    transform: translateY(-2px);
}

.industry-card__link:hover::after {
    margin-left: 1rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .home-industry-solutions {
        padding: 4rem 1rem;
    }

    .industry-card {
        padding: 3rem 2rem;
        gap: 1.25rem;
    }

    .industry-card__icon-wrapper {
        height: 90px;
        width: 90px;
    }

    .industry-card__icon {
        height: 48px;
        width: 48px;
    }

    .industry-card__title {
        font-size: 1.3rem;
    }

    .home-industry-solutions .home-section-heading h2 {
        font-size: clamp(2rem, 3.5vw, 3rem);
    }
}

@media (max-width: 991.98px) {
    .home-industry-solutions__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .industry-card {
        padding: 2.5rem 1.75rem;
    }

    .industry-card:not(:last-child)::after {
        display: none;
    }

    .industry-card:nth-child(2)::after {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.06) 50%, rgba(255, 255, 255, 0) 100%);
        height: 1px;
        position: absolute;
        right: auto;
        top: auto;
        width: 60%;
        bottom: 0;
        left: 20%;
        width: 60%;
        display: block;
    }

    .home-industry-solutions {
        min-height: auto;
        padding: 3.5rem 1rem;
    }
}

@media (max-width: 768px) {
    .home-industry-solutions {
        padding: 3rem 1rem 3.5rem;
    }

    .home-industry-solutions .home-section-heading {
        margin-bottom: 2.5rem;
    }

    .home-industry-solutions .home-section-heading h2 {
        font-size: clamp(1.8rem, 3vw, 2.5rem);
    }

    .home-industry-solutions__grid {
        grid-template-columns: 1fr;
    }

    .industry-card {
        padding: 2rem 1.5rem;
        gap: 1rem;
    }

    .industry-card:nth-child(2)::after {
        display: none;
    }

    .industry-card:not(:last-child)::after {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.06) 50%, rgba(255, 255, 255, 0) 100%);
        height: 1px;
        position: absolute;
        right: 5%;
        top: auto;
        width: 90%;
        bottom: 0;
        left: 5%;
        display: block;
    }

    .industry-card__icon-wrapper {
        height: 80px;
        width: 80px;
    }

    .industry-card__icon {
        height: 44px;
        width: 44px;
    }

    .industry-card__title {
        font-size: 1.15rem;
    }

    .industry-card__desc {
        font-size: 0.85rem;
    }

    .industry-card__link {
        padding: 0.65rem 1.4rem;
        font-size: 0.85rem;
    }
}

@media (min-width: 1200px) {
    .navbar-premium__brand {
        flex: 0 0 auto;
        order: 1;
    }

    .navbar-premium__collapse {
        display: flex !important;
        flex: 1 1 auto;
        flex-basis: auto;
        justify-content: center;
        margin-left: 1.4rem;
        order: 2;
    }

    .navbar-premium .navbar-nav {
        align-items: center;
        width: auto;
    }

    .navbar-premium__utilities {
        flex: 0 0 auto;
        margin-left: auto;
        order: 3;
    }
}

@media (max-width: 1199.98px) {
    body {
        padding-top: 84px;
    }

    .navbar-premium__inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .navbar-premium__collapse {
        background: rgba(8, 10, 14, 0.94) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        margin-top: 0.7rem;
        padding-top: 0.75rem;
    }

    .navbar-premium__collapse .navbar-nav .nav-link,
    .navbar-premium__collapse .navbar-premium__category-link {
        color: rgba(255, 255, 255, 0.76) !important;
    }

    .navbar-premium .dropdown-menu {
        border: 0;
        box-shadow: none;
        margin-top: 0;
        padding-left: 0.6rem;
        padding-right: 0;
    }
}

@media (max-width: 991.98px) {
    .home-category-grid {
        grid-template-columns: 1fr;
    }

    .home-categories .container {
        max-width: var(--content-width);
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 82px;
    }

    .navbar-premium__inner {
        gap: 0.75rem;
        padding-bottom: 0.9rem;
        padding-top: 0.9rem;
    }

    .logo-navbar {
        max-height: 24px;
        width: 170px;
    }

    .navbar-premium__brand-mark {
        min-height: 42px;
        padding: 0.55rem 0.8rem;
    }

    .lang-toggle {
        min-width: 96px;
        padding-right: 0.45rem;
    }

    .home-hero {
        padding-left: 0;
        padding-right: 0;
    }

    .home-hero__frame {
        border-radius: 0 0 22px 22px;
    }

    .home-hero .carousel-control-prev,
    .home-hero .carousel-control-next {
        bottom: 1rem;
        height: 42px;
        width: 42px;
    }

    .home-hero .carousel-control-prev {
        right: 4rem;
    }

    .home-hero .carousel-control-next {
        right: 1rem;
    }

    .home-hero .carousel-indicators {
        bottom: 1.3rem;
        left: 1rem;
    }

    .home-section-heading {
        margin-bottom: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .home-category-grid {
        gap: 0.85rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .home-category-card {
        min-height: 420px;
    }

    .home-category-card__actions {
        justify-content: center;
    }

    .site-footer {
        margin-top: 4rem;
        padding-top: 3.5rem;
    }

    .site-footer__inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }

.site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

.navbar-premium__nav-item {
    position: relative;
}

.navbar-premium__nav-group {
    align-items: center;
    display: flex;
}

.navbar-premium__category-link {
    padding-right: 0.35rem !important;
}

.navbar-premium__dropdown-toggle {
    align-items: center;
    background: transparent;
    border: 0;
    color: #50555c;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    padding: 0 0.75rem 0 0.1rem;
}

.navbar-premium__dropdown-toggle::after {
    margin-left: 0;
}

.navbar-premium__dropdown-toggle:hover,
.navbar-premium__dropdown-toggle:focus {
    color: var(--color-ink);
}

.navbar-premium .is-active > .nav-link,
.navbar-premium .is-active .navbar-premium__category-link,
.navbar-premium .show .navbar-premium__category-link {
    color: var(--color-ink) !important;
}

.navbar-premium .is-active > .nav-link::after,
.navbar-premium .is-active .navbar-premium__category-link::after,
.navbar-premium .show .navbar-premium__category-link::after {
    opacity: 1;
    transform: scaleX(1);
}

.category-page {
    background:
        radial-gradient(circle at top left, rgba(255, 123, 0, 0.1), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f7f8 100%);
    min-height: 100vh;
    padding: 1rem 0 2.5rem;
}

.category-hero {
    padding: 0.4rem 0 0.2rem;
}

.category-hero__inner {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 28px;
    box-shadow: 0 18px 44px rgba(17, 17, 17, 0.06);
    padding: 1.55rem 1.65rem;
}

.category-breadcrumbs {
    color: #7c8188;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.92rem;
    gap: 0.45rem;
    margin-bottom: 0.95rem;
}

.category-breadcrumbs a {
    color: var(--color-accent);
}

.category-hero__eyebrow {
    display: none;
}

.category-hero__copy h1 {
    font-size: clamp(2rem, 3.4vw, 3.3rem);
    line-height: 1.06;
    margin: 0 0 0.55rem;
}

.category-hero__copy p {
    color: #5d646d;
    font-size: 1rem;
    margin: 0;
    max-width: 720px;
}

.category-hero__meta {
    display: none;
}

.category-stat {
    display: none;
}

.category-shell {
    padding-bottom: 2.5rem;
}

.category-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 1rem 0 1.15rem;
}

.category-chip {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 17, 17, 0.11);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.04);
    color: #444b55;
    display: inline-flex;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 0.72rem 1rem;
    transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.category-chip:hover {
    border-color: rgba(255, 96, 0, 0.3);
    box-shadow: 0 12px 28px rgba(255, 96, 0, 0.1);
    color: #1b1d22;
}

.category-chip.is-active {
    background: #17191f;
    border-color: #17191f;
    box-shadow: 0 16px 30px rgba(17, 25, 31, 0.16);
    color: #ffffff;
}

.category-subgrid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
    justify-content: start;
    margin-bottom: 1.4rem;
}

.category-subcard {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 17, 17, 0.09);
    border-radius: 22px;
    box-shadow: 0 16px 36px rgba(17, 17, 17, 0.06);
    color: inherit;
    display: block;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-subcard:hover {
    box-shadow: 0 24px 48px rgba(17, 17, 17, 0.1);
    transform: translateY(-4px);
}

.category-subcard.is-active {
    border-color: rgba(255, 106, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 106, 0, 0.14);
}

.category-subcard__image {
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 146, 62, 0.12) 0%, rgba(255, 255, 255, 0.52) 100%);
    display: flex;
    height: 165px;
    justify-content: center;
    padding: 0.95rem;
}

.category-subcard__image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.category-subcard__body {
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    padding: 0.95rem 1rem 1.05rem;
}

.category-subcard__body h2 {
    font-size: 1rem;
    line-height: 1.35;
    margin: 0;
}

.category-subcard__body span {
    display: none;
}

.category-toolbar {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    margin: 1.55rem 0 1rem;
}

.category-search {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.11);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.05);
    display: flex;
    gap: 0.7rem;
    min-width: min(100%, 430px);
    padding: 0.95rem 1.05rem;
}

.category-search i {
    color: var(--color-accent);
}

.category-search input {
    background: transparent;
    border: 0;
    flex: 1;
    outline: none;
}

.category-toolbar__right {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.category-toolbar__count {
    color: #5d646d;
    font-weight: 600;
}

.category-sort {
    align-items: center;
    display: flex;
    gap: 0.7rem;
}

.category-sort label {
    color: #5d646d;
    font-size: 0.92rem;
    font-weight: 600;
    margin: 0;
}

.category-sort select {
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.11);
    border-radius: 14px;
    color: #111111;
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.04);
    min-height: 50px;
    padding: 0 0.95rem;
}

.category-product-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.category-product-card {
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.06);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-product-card:hover {
    box-shadow: 0 24px 48px rgba(17, 17, 17, 0.1);
    transform: translateY(-4px);
}

.category-product-card__media {
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 139, 40, 0.14) 0%, rgba(255, 255, 255, 0.48) 100%);
    border-bottom: 1px solid rgba(17, 17, 17, 0.07);
    display: flex;
    height: 196px;
    justify-content: center;
    padding: 0.8rem;
}

.category-product-card__media img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.category-product-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0.92rem 0.95rem 1rem;
}

.category-product-card__tag {
    color: var(--color-accent);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.category-product-card__body h2 {
    font-size: 1.02rem;
    line-height: 1.35;
    margin: 0;
}

.category-product-card__body h2 a {
    color: #141414;
}

.category-product-card__body h2 a:hover {
    color: var(--color-accent);
}

.category-product-card__body p {
    color: #666d75;
    margin: 0;
}

.category-product-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.15rem;
}

.category-product-card__button,
.category-product-card__ghost {
    display: inline-flex;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0;
}

.category-product-card__button {
    display: none;
}

.category-product-card__ghost {
    background: transparent;
    color: var(--color-accent);
}

.category-empty {
    background: rgba(255, 255, 255, 0.92);
    border: 1px dashed rgba(17, 17, 17, 0.14);
    border-radius: 24px;
    margin-top: 1rem;
    padding: 2rem 1.4rem;
    text-align: center;
}

.category-empty h2 {
    font-size: 1.35rem;
    margin: 0 0 0.55rem;
}

.category-empty p {
    color: #626a73;
    margin: 0;
}

.category-empty--hidden {
    display: none;
}

.product-page {
    background:
        radial-gradient(circle at top left, rgba(255, 123, 0, 0.1), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f7f8 100%);
    min-height: 100vh;
}

.product-shell {
    padding-bottom: 2.6rem;
    padding-top: 1.15rem;
}

.product-breadcrumbs {
    color: #6b727b;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.95rem;
    gap: 0.45rem;
    margin-bottom: 1.2rem;
}

.product-breadcrumbs a {
    color: var(--color-accent);
    font-weight: 600;
}

.product-detail-layout {
    align-items: start;
    display: grid;
    gap: 2.35rem;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.product-gallery-panel {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.product-gallery {
    align-items: start;
    display: grid;
    gap: 0.95rem;
    grid-template-columns: 68px minmax(0, 1fr);
}

.product-gallery__thumbs {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.product-thumb {
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.04);
    display: inline-flex;
    height: 68px;
    justify-content: center;
    padding: 0.35rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    width: 68px;
}

.product-thumb:hover {
    border-color: rgba(255, 96, 0, 0.4);
    box-shadow: 0 12px 24px rgba(255, 96, 0, 0.1);
    transform: translateY(-2px);
}

.product-thumb.is-active {
    border-color: var(--color-accent);
    box-shadow: 0 14px 26px rgba(255, 96, 0, 0.14);
}

.product-thumb img {
    border-radius: 12px;
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.product-gallery__stage {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.07);
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.05);
    padding: 0.9rem;
}

.product-stage {
    align-items: center;
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 72%);
    border: 1px solid rgba(255, 162, 63, 0.14);
    border-radius: 24px;
    cursor: zoom-in;
    display: flex;
    justify-content: center;
    min-height: 500px;
    overflow: hidden;
    padding: 1.25rem;
    position: relative;
}

.product-stage .main_img {
    cursor: zoom-in;
    display: block;
    height: auto;
    max-height: 450px;
    max-width: 100%;
    object-fit: contain;
    transform: translate3d(0, 0, 0) scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.28s ease, filter 0.28s ease;
    will-change: transform;
    width: auto;
}

.product-stage.is-peeking .main_img {
    filter: saturate(1.02);
    transform: translate3d(var(--stage-pan-x, 0), var(--stage-pan-y, 0), 0) scale(1.09);
    transform-origin: var(--stage-origin-x, 50%) var(--stage-origin-y, 50%);
}

.product-stage__zoom {
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
    color: #171717;
    display: inline-flex;
    height: 46px;
    justify-content: center;
    position: absolute;
    right: 1rem;
    top: 1rem;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    width: 46px;
    z-index: 2;
}

.product-stage:hover .product-stage__zoom {
    border-color: rgba(255, 96, 0, 0.4);
    box-shadow: 0 14px 30px rgba(255, 96, 0, 0.12);
    color: var(--color-accent);
    transform: translateY(-1px);
}

.product-stage__zoom:hover {
    border-color: rgba(255, 96, 0, 0.4);
    color: var(--color-accent);
}

.product-copy-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.07);
    border-radius: 26px;
    box-shadow: 0 18px 38px rgba(17, 17, 17, 0.05);
    padding: 1.35rem 1.45rem;
}

.product-copy-card h2 {
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
}

.product-copy-card p {
    color: #59606a;
    font-size: 0.98rem;
    line-height: 1.9;
}

.product-summary {
    padding: 0.65rem 0.15rem 0.5rem;
}

.product-summary__eyebrow {
    color: var(--color-accent);
    display: inline-block;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 0.85rem;
    text-transform: uppercase;
}

.product-summary__title-row {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 0.7rem;
}

.product-summary h1 {
    flex: 1 1 auto;
    font-size: clamp(2.15rem, 4vw, 3.15rem);
    line-height: 1.04;
    margin: 0;
}

.product-whatsapp-inline {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(37, 211, 102, 0.34);
    border-radius: 999px;
    color: #159a49;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 0.92rem;
    font-weight: 700;
    gap: 0.5rem;
    justify-content: center;
    min-height: 42px;
    padding: 0 0.95rem;
    white-space: nowrap;
}

.product-whatsapp-inline:hover {
    border-color: rgba(37, 211, 102, 0.55);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.12);
    color: #0f8f42;
}

.product-summary__lead {
    color: #5b616b;
    font-size: 1rem;
    line-height: 1.75;
    margin: 0;
    max-width: 560px;
}

.product-summary__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

.product-fact {
    background: rgba(17, 17, 17, 0.02);
    border: 1px solid rgba(17, 17, 17, 0.07);
    border-radius: 999px;
    color: #424853;
    display: inline-flex;
    gap: 0.35rem;
    padding: 0.62rem 0.9rem;
}

.product-fact strong {
    color: #171717;
}

.product-summary__divider {
    background: rgba(17, 17, 17, 0.1);
    height: 1px;
    margin: 1.25rem 0 1.1rem;
    width: 100%;
}

.product-feature-list {
    display: grid;
    gap: 0.78rem;
    max-width: 620px;
}

.product-feature {
    align-items: flex-start;
    color: #2e3641;
    display: flex;
    gap: 0.75rem;
    line-height: 1.78;
}

.product-feature__bullet {
    background: var(--color-accent);
    border-radius: 999px;
    flex: 0 0 auto;
    height: 8px;
    margin-top: 0.7rem;
    width: 8px;
}

.product-download {
    align-items: center;
    background: rgba(255, 96, 0, 0.12);
    border: 2px solid rgba(255, 96, 0, 0.3);
    border-radius: 18px;
    color: var(--color-accent);
    display: flex;
    gap: 0.8rem;
    margin-top: 1.45rem;
    max-width: 520px;
    min-height: 58px;
    padding: 0.95rem 1.05rem;
    transition: all 0.3s ease;
}

.product-download:hover {
    background: rgba(255, 96, 0, 0.25);
    border-color: rgba(255, 96, 0, 0.6);
    color: var(--color-accent);
    box-shadow: 0 4px 12px rgba(255, 96, 0, 0.15);
}

.product-summary__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.15rem;
}

.product-social {
    align-items: center;
    background: rgba(255, 96, 0, 0.15);
    border: 2px solid rgba(255, 96, 0, 0.35);
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(255, 96, 0, 0.1);
    color: var(--color-accent);
    display: inline-flex;
    height: 46px;
    justify-content: center;
    width: 46px;
    transition: all 0.3s ease;
}

.product-social:hover {
    background: rgba(255, 96, 0, 0.25);
    border-color: rgba(255, 96, 0, 0.6);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(255, 96, 0, 0.25);
}

.product-lightbox {
    align-items: center;
    background: rgba(10, 12, 16, 0.76);
    backdrop-filter: blur(4px);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 2rem 3.25rem 1.25rem;
    position: fixed;
    z-index: 9999;
}

.product-lightbox__dialog {
    align-items: center;
    display: grid;
    gap: 1rem;
    justify-items: center;
    position: relative;
    width: min(1380px, 94vw);
}

.product-lightbox__viewport {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 72vh;
    overflow: hidden;
    position: relative;
    touch-action: none;
    width: 100%;
}

.product-lightbox__image {
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
    cursor: zoom-in;
    max-height: min(74vh, 980px);
    max-width: min(78vw, 1120px);
    object-fit: contain;
    transform-origin: center center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    user-select: none;
    -webkit-user-drag: none;
    will-change: transform;
}

.product-lightbox.is-zoomed .product-lightbox__image {
    cursor: grab;
}

.product-lightbox.is-dragging .product-lightbox__image {
    cursor: grabbing;
    transition: none;
}

.product-lightbox__nav {
    align-items: center;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 999px;
    color: #171717;
    display: inline-flex;
    height: 54px;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    width: 54px;
    z-index: 1;
}

.product-lightbox__nav:hover {
    color: var(--color-accent);
    transform: translateY(-50%) scale(1.04);
}

.product-lightbox__nav--prev {
    left: 0;
}

.product-lightbox__nav--next {
    right: 0;
}

.product-lightbox__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    width: 100%;
}

.product-lightbox__thumb {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    display: inline-flex;
    height: 84px;
    overflow: hidden;
    padding: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    width: 84px;
}

.product-lightbox__thumb:hover {
    transform: translateY(-2px);
}

.product-lightbox__thumb.is-active {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(255, 96, 0, 0.2);
}

.product-lightbox__thumb img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.product-lightbox__hint {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
    margin: 0;
    text-align: center;
}

.product-lightbox__close {
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 999px;
    color: #171717;
    display: inline-flex;
    height: 48px;
    justify-content: center;
    position: fixed;
    right: 1.5rem;
    top: 1.35rem;
    transition: color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    width: 48px;
    z-index: 2;
}

.product-lightbox__close:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
    color: var(--color-accent);
    transform: scale(1.05);
}

.contact-page {
    background:
        radial-gradient(circle at top left, rgba(255, 123, 0, 0.14), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f6f7fb 100%);
    min-height: 100vh;
}

.contact-hero {
    margin: 0 auto;
    max-width: var(--content-width);
    padding: 1rem 1.2rem 0;
}

.contact-hero img {
    border-radius: 30px;
    box-shadow: 0 24px 55px rgba(17, 17, 17, 0.12);
    display: block;
    width: 100%;
}

.contact-shell {
    padding: 2rem 0 2.5rem;
}

.contact-header {
    margin: 0 auto 1.6rem;
    max-width: 760px;
    text-align: center;
}

.contact-header__eyebrow {
    color: var(--color-accent);
    display: inline-block;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin-bottom: 0.85rem;
    text-transform: uppercase;
}

.contact-header h1 {
    font-size: clamp(2.1rem, 3.4vw, 3.5rem);
    margin: 0 0 0.65rem;
}

.contact-header p {
    color: #5d646d;
    margin: 0;
}

.contact-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    justify-items: center;
}

.contact-info-card {
    display: none;
}

.contact-info-card,
.contact-form-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 28px;
    box-shadow: 0 22px 50px rgba(17, 17, 17, 0.08);
    padding: 1.6rem;
}

.contact-info-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.3rem;
}

.contact-info-list article {
    background: #f7f8fb;
    border-radius: 18px;
    padding: 1rem 1.05rem;
}

.contact-info-list span {
    color: #737b84;
    display: block;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.contact-info-list a,
.contact-info-list p {
    color: #171717;
    margin: 0;
}

.contact-map {
    border-radius: 22px;
    overflow: hidden;
    display: none;
}

.contact-map iframe {
    display: block;
    min-height: 340px;
    width: 100%;
}

.contact-form-card h2 {
    font-size: 1.65rem;
    margin: 0 0 0.45rem;
}

.contact-form-card {
    max-width: 600px;
    width: 100%;
}

.contact-form-card p {
    color: #606873;
    margin: 0 0 1.2rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form label {
    color: #2a2f36;
    display: grid;
    font-size: 0.94rem;
    font-weight: 600;
    gap: 0.45rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 16px;
    color: #111111;
    min-height: 52px;
    padding: 0.95rem 1rem;
}

.contact-form textarea {
    min-height: 132px;
    resize: vertical;
}

.contact-form button {
    background: var(--color-accent);
    border-radius: 16px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0.25rem;
    min-height: 54px;
    padding: 0.95rem 1.4rem;
}

.contact-form__alert {
    background: rgba(255, 106, 0, 0.08);
    border: 1px solid rgba(255, 106, 0, 0.2);
    border-radius: 16px;
    color: #8d4300;
    margin-bottom: 1rem;
    padding: 0.95rem 1rem;
}

.contact-form__message {
    border-radius: 16px;
    margin-bottom: 1rem;
    padding: 0.95rem 1rem;
    animation: slideDown 0.3s ease-out;
}

.contact-form__message--success {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #166534;
}

.contact-form__message--error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #991b1b;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1199.98px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .product-stage {
        min-height: 460px;
    }

    .product-summary {
        padding: 0.4rem 0 0.2rem;
    }

    .product-summary__title-row {
        flex-direction: column;
    }

    .product-whatsapp-inline {
        align-self: flex-start;
    }

    .category-hero__inner {
        padding: 1.35rem;
    }

    .category-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .category-search {
        min-width: 100%;
    }

    .category-toolbar__right {
        justify-content: space-between;
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .navbar-premium__nav-group {
        justify-content: space-between;
        width: 100%;
    }

    .navbar-premium__category-link {
        flex: 1 1 auto;
    }

    .category-hero {
        padding-top: 0.35rem;
    }

    .category-hero__inner {
        border-radius: 24px;
        padding: 1.2rem;
    }

    .category-chip-row {
        gap: 0.55rem;
    }

    .product-shell {
        padding-top: 0.85rem;
    }

    .product-breadcrumbs {
        font-size: 0.88rem;
    }

    .product-gallery {
        grid-template-columns: 1fr;
    }

    .product-gallery__thumbs {
        flex-direction: row;
        order: 2;
        overflow-x: auto;
        padding-bottom: 0.25rem;
    }

    .product-gallery__stage {
        order: 1;
    }

    .product-stage {
        min-height: 360px;
        padding: 0.75rem;
    }

    .product-stage .main_img {
        max-height: 320px;
    }

    .product-copy-card {
        border-radius: 24px;
        padding: 1.2rem;
    }

    .product-summary h1 {
        font-size: 2rem;
    }

    .product-summary__title-row {
        gap: 0.8rem;
    }

    .product-whatsapp-inline {
        min-height: 40px;
    }

    .product-summary__facts {
        flex-direction: column;
    }

    .product-fact {
        width: 100%;
    }

    .product-download {
        max-width: 100%;
    }

    .product-lightbox {
        padding: 1rem 0.8rem 1rem;
    }

    .product-lightbox__dialog {
        width: min(100vw, 100%);
    }

    .product-lightbox__viewport {
        min-height: 58vh;
    }

    .product-lightbox__image {
        max-height: 58vh;
        max-width: 88vw;
    }

    .product-lightbox__nav {
        height: 46px;
        width: 46px;
    }

    .product-lightbox__thumb {
        height: 68px;
        width: 68px;
    }

    .product-lightbox__close {
        right: 0.85rem;
        top: 0.85rem;
    }

    .category-subgrid,
    .category-product-grid {
        grid-template-columns: 1fr;
    }

    .category-subcard__image,
    .category-product-card__media {
        height: 210px;
    }

    .contact-shell {
        padding-top: 1.3rem;
    }

    .contact-info-card,
    .contact-form-card {
        border-radius: 24px;
        padding: 1.2rem;
    }
}

/* Dark elegant theme override */
:root {
    --color-ink: #f4f6f8;
    --color-ink-soft: #a7b0bb;
    --color-surface: #090c10;
    --color-surface-alt: #11151c;
    --color-line: rgba(255, 255, 255, 0.08);
    --color-accent: #ff6000;
    --color-accent-deep: #ff7f32;
    --color-accent-soft: #ff9a5a;
    --color-footer: #06080c;
    --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.34);
    --shadow-card: 0 30px 70px rgba(0, 0, 0, 0.42);
}

/* INDUSTRY SOLUTIONS SECTION */
.industry-solutions {
    background: #12151b;
    margin-top: 5rem;
    min-height: 600px;
    padding: 5rem 1.5rem;
    position: relative;
    width: 100%;
}

.industry-solutions__parallax {
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.industry-solutions__bg-image {
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
    will-change: transform;
}

.industry-solutions__parallax::after {
    background: linear-gradient(135deg, rgba(18, 21, 27, 0.88) 0%, rgba(18, 21, 27, 0.94) 100%);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.industry-solutions__content {
    margin: 0 auto;
    max-width: var(--content-width);
    position: relative;
    z-index: 1;
}

.industry-solutions-grid {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, 1fr);
}

.industry-solution-item {
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
    transition: background 0.35s ease, transform 0.35s ease;
}

.industry-solution-item:last-child {
    border-right: none;
}

.industry-solution-item:hover {
    background: rgba(255, 96, 0, 0.08);
    transform: translateY(-4px);
}

.industry-solution-item__icon {
    align-items: center;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-soft));
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    font-size: 2.5rem;
    height: 100px;
    justify-content: center;
    margin-bottom: 1.5rem;
    width: 100px;
}

.industry-solution-item__title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    margin: 0 0 0.75rem 0;
}

.industry-solution-item__description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
    .industry-solutions {
        min-height: auto;
        padding: 3rem 1.5rem;
    }

    .industry-solutions-grid {
        grid-template-columns: 1fr;
    }

    .industry-solution-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-right: none;
        padding: 2.5rem 1.5rem;
    }

    .industry-solution-item:last-child {
        border-bottom: none;
    }

    .industry-solution-item__icon {
        font-size: 2rem;
        height: 80px;
        width: 80px;
    }

    .industry-solution-item__title {
        font-size: 1.25rem;
    }

    .industry-solution-item__description {
        font-size: 0.9rem;
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .industry-solutions {
        margin-top: 3rem;
        min-height: auto;
        padding: 2.5rem 1rem;
    }

    .industry-solution-item {
        padding: 2rem 1.25rem;
    }

    .industry-solution-item__icon {
        font-size: 1.75rem;
        height: 70px;
        margin-bottom: 1rem;
        width: 70px;
    }

    .industry-solution-item__title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .industry-solution-item__description {
        font-size: 0.85rem;
    }
}

::selection {
    background: rgba(255, 96, 0, 0.32);
    color: #ffffff;
}

body {
    background:
        radial-gradient(circle at top center, rgba(255, 96, 0, 0.14), transparent 28%),
        radial-gradient(circle at 82% 2%, rgba(255, 255, 255, 0.04), transparent 20%),
        linear-gradient(180deg, #05070a 0%, #0b0f14 48%, #11161c 100%);
    color: var(--color-ink);
    font-family: calibri, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

p {
    color: var(--color-ink-soft);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #f7f8fa;
}

.home-page,
.category-page,
.product-page,
.contact-page {
    background: transparent;
}

.navbar-premium {
    background: rgba(8, 10, 14, 0.84);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.navbar-premium.scrolled {
    background: rgba(8, 10, 14, 0.94);
}

.navbar-premium .nav-link,
.navbar-premium__category-link {
    color: rgba(255, 255, 255, 0.76) !important;
}

.navbar-premium .nav-link:hover,
.navbar-premium .nav-link:focus,
.navbar-premium .is-active > .nav-link,
.navbar-premium .is-active .navbar-premium__category-link,
.navbar-premium .show .navbar-premium__category-link {
    color: #ffffff !important;
}

.navbar-premium .dropdown-menu {
    background: rgba(13, 17, 23, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.34);
}

.navbar-premium .dropdown-item {
    color: rgba(255, 255, 255, 0.74);
}

.navbar-premium .dropdown-item:hover,
.navbar-premium .dropdown-item:focus {
    background: rgba(255, 96, 0, 0.14);
    color: #ffffff;
}

.navbar-premium .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.16);
}

.navbar-premium .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(244,246,248,0.92)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-premium__brand-mark,
.site-footer__brand-mark {
    box-shadow: 0 18px 38px rgba(255, 96, 0, 0.28);
}

.lang-toggle {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
}

.lang-toggle:hover,
.lang-toggle:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.lang-toggle__track {
    background: rgba(255, 255, 255, 0.08);
}

.lang-toggle__thumb {
    background: var(--color-accent);
    box-shadow: 0 10px 24px rgba(255, 96, 0, 0.3);
}

.lang-toggle__label {
    color: #f4f6f8;
}

.home-hero__frame,
.home-category-card,
.category-hero__inner,
.category-chip,
.category-subcard,
.category-search,
.category-sort select,
.category-product-card,
.category-empty,
.product-thumb,
.product-gallery__stage,
.product-copy-card,
.product-download,
.product-social,
.contact-info-card,
.contact-form-card,
.card,
.sidebar {
    background: rgba(15, 19, 25, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.26);
}

.home-hero__frame,
.category-hero__inner,
.product-copy-card,
.contact-info-card,
.contact-form-card,
.product-gallery__stage,
.card {
    backdrop-filter: blur(12px);
}

.home-hero__media::after {
    background: linear-gradient(90deg, rgba(4, 6, 9, 0.46) 0%, rgba(4, 6, 9, 0.08) 38%, rgba(4, 6, 9, 0.2) 100%);
}

.home-hero .carousel-control-prev,
.home-hero .carousel-control-next {
    background: rgba(8, 10, 14, 0.54);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.home-hero .carousel-control-prev:hover,
.home-hero .carousel-control-next:hover {
    background: rgba(255, 96, 0, 0.22);
}

.home-categories {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(8, 12, 16, 0.3) 100%);
}

.home-categories::before {
    background: radial-gradient(circle at top center, rgba(255, 96, 0, 0.14), transparent 52%);
}

.home-section-heading p,
.category-breadcrumbs,
.product-breadcrumbs,
.category-toolbar__count,
.category-sort label,
.category-hero__copy p,
.product-summary__lead,
.product-copy-card p,
.contact-header p,
.contact-form-card p {
    color: var(--color-ink-soft);
}

.home-category-card__tag,
.text_naranja {
    color: #ff9b61 !important;
}

.home-category-card__description,
.category-product-card__body p,
.category-empty p {
    color: rgba(255, 255, 255, 0.74);
}

.home-category-card__link::after {
    color: #ff9b61;
}

.category-chip {
    color: rgba(255, 255, 255, 0.78);
}

.category-chip:hover {
    border-color: rgba(255, 96, 0, 0.42);
    box-shadow: 0 14px 28px rgba(255, 96, 0, 0.12);
    color: #ffffff;
}

.category-chip.is-active {
    background: linear-gradient(135deg, rgba(255, 96, 0, 0.28) 0%, rgba(255, 96, 0, 0.12) 100%);
    border-color: rgba(255, 96, 0, 0.54);
    box-shadow: 0 18px 32px rgba(255, 96, 0, 0.18);
    color: #ffffff;
}

.category-subcard.is-active,
.category-product-card:hover,
.category-subcard:hover {
    border-color: rgba(255, 96, 0, 0.34);
}

.category-subcard__image,
.category-product-card__media,
.product-stage {
    background: linear-gradient(180deg, rgba(255, 96, 0, 0.14) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(255, 255, 255, 0.06);
}

.category-subcard__body {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.category-subcard__body h2,
.category-product-card__body h2 a,
.category-empty h2,
.product-copy-card h2,
.product-summary h1,
.product-fact strong,
.contact-header h1,
.contact-form-card h2,
.contact-info-list a,
.contact-info-list p {
    color: #f7f8fa;
}

.product-thumb:hover,
.product-thumb.is-active,
.product-stage:hover .product-stage__zoom,
.product-stage__zoom:hover,
.product-download:hover,
.product-social:hover,
.category-product-card__body h2 a:hover,
.category-product-card__ghost:hover {
    color: var(--color-accent);
}

.product-thumb,
.product-stage__zoom,
.product-social,
.product-download {
    border-color: rgba(255, 96, 0, 0.35);
}

.product-download {
    background: rgba(255, 96, 0, 0.12);
}

.product-social {
    background: rgba(255, 96, 0, 0.15);
}
.product-lightbox__nav,
.product-lightbox__close {
    background: rgba(12, 16, 22, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f4f6f8;
}

.product-whatsapp-inline {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.28);
    color: #8ef1b3;
}

.product-whatsapp-inline:hover {
    background: rgba(37, 211, 102, 0.16);
    color: #b7ffd0;
}

.product-fact {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(244, 246, 248, 0.78);
}

.product-summary__divider {
    background: rgba(255, 255, 255, 0.08);
}

.product-feature {
    color: rgba(244, 246, 248, 0.82);
}

.contact-hero img {
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-card);
}

.contact-info-list article {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-info-list span,
.contact-form label {
    color: rgba(244, 246, 248, 0.74);
}

.form-control,
.form-select,
.category-search input,
.category-sort select,
.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f4f6f8;
}

.form-control:focus,
.form-select:focus,
.category-search input:focus,
.category-sort select:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 96, 0, 0.44);
    box-shadow: 0 0 0 0.25rem rgba(255, 96, 0, 0.15);
    color: #ffffff;
}

.form-control::placeholder,
.category-search input::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(244, 246, 248, 0.42);
}

.form-select option {
    background: #11151c;
    color: #f4f6f8;
}

.btn-outline-success,
.btn-transparent {
    background: rgba(255, 96, 0, 0.08);
    border-color: rgba(255, 96, 0, 0.34);
    color: #ffffff;
}

.btn-outline-success:hover,
.btn-outline-success:focus,
.btn-transparent:hover,
.btn-transparent:focus {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #ffffff;
}

.contact-form button {
    box-shadow: 0 18px 34px rgba(255, 96, 0, 0.22);
}

.contact-form__alert {
    background: rgba(255, 96, 0, 0.12);
    border-color: rgba(255, 96, 0, 0.24);
    color: #ffc7a4;
}

.site-footer {
    background: linear-gradient(180deg, #07090d 0%, #05070a 100%);
}

.site-footer__brand p,
.site-footer__column p,
.site-footer__column span,
.site-footer__column a,
.site-footer__bottom p,
.site-footer__bottom-links {
    color: rgba(255, 255, 255, 0.66);
}

.site-footer__socials a {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.site-footer__socials a:hover {
    box-shadow: 0 14px 26px rgba(255, 96, 0, 0.22);
}

hr {
    border-color: rgba(255, 255, 255, 0.12);
    opacity: 1;
}

.border,
.border-top,
.border-end,
.border-bottom,
.border-start {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

/* Legacy public sections */
.fondo_azul {
    background: linear-gradient(135deg, #11161d 0%, #191f28 52%, rgba(255, 96, 0, 0.26) 100%) !important;
}

.bg-light {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.015) 100%) !important;
}

.sidebar {
    padding: 20px;
}

.text_azul,
.cambiar-color.clicked {
    color: var(--color-accent) !important;
}

.cambiar-color {
    color: rgba(255, 255, 255, 0.82);
}

.card {
    border-radius: 24px;
    color: var(--color-ink);
}

.card .card-title,
.card .card-text,
.card .card-body,
.card .card-body h1,
.card .card-body h2,
.card .card-body h3,
.card .card-body h4,
.card .card-body h5,
.card .card-body h6 {
    color: inherit;
}

@media (max-width: 991.98px) {
    .navbar-premium {
        background: rgba(8, 10, 14, 0.94);
    }
}

/* MOBILE MENU FIX - Ensure light text on light background */
@media (max-width: 1199.98px) {
    .navbar-premium__collapse {
        background: #ffffff !important;
    }
    
    .navbar-premium .navbar-nav .nav-link {
        color: #171717 !important;
    }
    
    .navbar-premium .navbar-nav .dropdown-item {
        color: #171717 !important;
    }
    
    .navbar-premium .navbar-nav .dropdown-item:hover,
    .navbar-premium .navbar-nav .dropdown-item:focus {
        color: #ff6000 !important;
    }
}
