* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F5F5F5;
    padding: 20px;
}

.category-secondStat-container {
    max-width: 1450px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.category-secondStat-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: transparent;
    z-index: 0;
}
.category-secondStat-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(18, 37, 56, 0.5);
    z-index: 0;
}

.category-secondStat-geometric-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    z-index: 1;
}

.category-secondStat-geo-circle {
    position: absolute;
    border: 1px solid #fff;
    border-radius: 50%;
    animation: secondStat-pulse 8s ease-in-out infinite;
}

.category-secondStat-geo-circle:nth-child(1) {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.category-secondStat-geo-circle:nth-child(2) {
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

.category-secondStat-geo-circle:nth-child(3) {
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes secondStat-pulse {

    0%,
    100% {
        opacity: 0.08;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.15;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.category-secondStat-diamond-ornament {
    position: absolute;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    animation: secondStat-rotateDiamond 10s linear infinite;
    z-index: 2;
}

.category-secondStat-diamond-ornament:nth-child(1) {
    top: 60px;
    left: 60px;
}

.category-secondStat-diamond-ornament:nth-child(2) {
    top: 60px;
    right: 60px;
    animation-delay: 2.5s;
}

.category-secondStat-diamond-ornament:nth-child(3) {
    bottom: 60px;
    left: 60px;
    animation-delay: 5s;
}

.category-secondStat-diamond-ornament:nth-child(4) {
    bottom: 60px;
    right: 60px;
    animation-delay: 7.5s;
}

@keyframes secondStat-rotateDiamond {

    0%,
    100% {
        transform: rotate(45deg);
    }

    50% {
        transform: rotate(135deg);
    }
}

.category-secondStat-vertical-divider {
    position: absolute;
    width: 1px;
    height: 60%;
    top: 20%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
    z-index: 1;
}

.category-secondStat-vertical-divider:nth-child(1) {
    left: 25%;
    animation: secondStat-fadeInOut 6s ease-in-out infinite;
}

.category-secondStat-vertical-divider:nth-child(2) {
    right: 25%;
    animation: secondStat-fadeInOut 6s ease-in-out infinite 3s;
}

@keyframes secondStat-fadeInOut {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.5;
    }
}

.category-secondStat-fog {
    position: absolute;
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(18, 37, 56, 0.7) 10%);
    animation: secondStat-fogMove 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes secondStat-fogMove {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-25%);
    }
}

.category-secondStat-header-content {
    text-align: center;
    z-index: 10;
    position: relative;
    max-width: 900px;
    padding: 0 40px;
}

.category-secondStat-pre-title {
    letter-spacing: 8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    opacity: 0;
    animation: secondStat-textFadeIn 1.2s ease forwards 0.5s;
    font-weight: 400;
}

@keyframes secondStat-textFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-secondStat-title {
    font-weight: 700;
    letter-spacing: 18px;
    margin-bottom: 20px;
    opacity: 0;
    animation: secondStat-titleReveal 1.5s ease forwards 0.8s;
    color: #fff;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3),
    0 5px 20px rgba(0, 0, 0, 0.8);
    position: relative;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

@keyframes secondStat-titleReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
        letter-spacing: 30px;
    }

    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 18px;
    }
}

.category-secondStat-accent-line {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    margin: 35px auto;
    position: relative;
    opacity: 0;
    animation: secondStat-lineExpand 1.5s ease forwards 1.1s;
}

.category-secondStat-accent-line::before,
.category-secondStat-accent-line::after {
    content: '';
    position: absolute;
    top: -6px;
    width: 12px;
    height: 12px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
    background: transparent;
}

.category-secondStat-accent-line::before {
    left: -20px;
}

.category-secondStat-accent-line::after {
    right: -20px;
}

@keyframes secondStat-lineExpand {
    from {
        opacity: 0;
        width: 0;
    }

    to {
        opacity: 1;
        width: 200px;
    }
}

.category-secondStat-description {
    line-height: 2;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    opacity: 0;
    animation: secondStat-textFadeIn 1.2s ease forwards 1.4s;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 1px;
}

.category-secondStat-dust-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.category-secondStat-dust {
    position: absolute;
    width: 1px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: secondStat-dustFloat 20s infinite linear;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.category-secondStat-dust:nth-child(1) {
    left: 15%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.category-secondStat-dust:nth-child(2) {
    left: 25%;
    animation-delay: 3s;
    animation-duration: 22s;
}

.category-secondStat-dust:nth-child(3) {
    left: 35%;
    animation-delay: 6s;
    animation-duration: 20s;
}

.category-secondStat-dust:nth-child(4) {
    left: 45%;
    animation-delay: 2s;
    animation-duration: 24s;
}

.category-secondStat-dust:nth-child(5) {
    left: 55%;
    animation-delay: 5s;
    animation-duration: 19s;
}

.category-secondStat-dust:nth-child(6) {
    left: 65%;
    animation-delay: 8s;
    animation-duration: 21s;
}

.category-secondStat-dust:nth-child(7) {
    left: 75%;
    animation-delay: 4s;
    animation-duration: 23s;
}

.category-secondStat-dust:nth-child(8) {
    left: 85%;
    animation-delay: 7s;
    animation-duration: 17s;
}

@keyframes secondStat-dustFloat {
    0% {
        bottom: -5%;
        opacity: 0;
        transform: translateX(0);
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        bottom: 105%;
        opacity: 0;
        transform: translateX(100px);
    }
}

.category-secondStat-ink-drop {
    position: absolute;
    top: -10%;
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3));
    animation: secondStat-inkFall 8s ease-in infinite;
    z-index: 1;
}

.category-secondStat-ink-drop:nth-child(1) {
    left: 18%;
    animation-delay: 0s;
}

.category-secondStat-ink-drop:nth-child(2) {
    left: 45%;
    animation-delay: 3s;
}

.category-secondStat-ink-drop:nth-child(3) {
    left: 72%;
    animation-delay: 6s;
}

.category-secondStat-ink-drop:nth-child(4) {
    left: 88%;
    animation-delay: 2s;
}

@keyframes secondStat-inkFall {
    0% {
        height: 0;
        top: -10%;
        opacity: 0;
    }

    20% {
        height: 150px;
        opacity: 0.6;
    }

    100% {
        top: 110%;
        height: 150px;
        opacity: 0;
    }
}

.category-secondStat-hero {
    margin-bottom: 50px;
    background: linear-gradient(135deg, #212534 0%, #2a3a4a 100%);
    padding: 80px 40px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    border: none;
}

.category-secondStat-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(93, 220, 255, 0.15) 0%, transparent 70%);
    animation: secondStat-hero-rotate 20s linear infinite;
}

.category-secondStat-hero::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(60, 103, 227, 0.1) 0%, transparent 70%);
    animation: secondStat-hero-rotate-reverse 15s linear infinite;
}

@keyframes secondStat-hero-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes secondStat-hero-rotate-reverse {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.category-secondStat-hero-wrapper {
    display: flex;
    gap: 60px;
    position: relative;
    z-index: 1;
    align-items: center;
    animation: secondStat-hero-fade-in 1s ease-out;
}

@keyframes secondStat-hero-fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-secondStat-hero-left {
    flex: 0 0 40%;
    color: #fff;
    animation: secondStat-hero-slide-left 1s ease-out 0.2s both;
}

@keyframes secondStat-hero-slide-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.category-secondStat-hero-title {
    color: #fff;
    margin-top: 40px;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.3;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: secondStat-hero-title-glow 3s ease-in-out infinite;
    text-align: center;
}

@keyframes secondStat-hero-title-glow {

    0%,
    100% {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(93, 220, 255, 0.2);
    }

    50% {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 40px rgba(93, 220, 255, 0.4);
    }
}

.category-secondStat-hero-right {
    flex: 1;
    animation: secondStat-hero-slide-right 1s ease-out 0.4s both;
}

@keyframes secondStat-hero-slide-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.category-secondStat-hero-text-block {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.category-secondStat-hero-text {
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    text-align: justify;
    margin: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid #5ddcff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: secondStat-hero-text-fade 1s ease-out both;
}

.category-secondStat-hero-text:nth-child(1) {
    animation-delay: 0.6s;
}

.category-secondStat-hero-text:nth-child(2) {
    animation-delay: 0.8s;
}

.category-secondStat-hero-text:nth-child(3) {
    animation-delay: 1s;
}

@keyframes secondStat-hero-text-fade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-secondStat-hero-text:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: #3c67e3;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(93, 220, 255, 0.2);
}


.category-secondStat-intro,
.category-secondStat-specifications,
.category-secondStat-gallery,
.category-secondStat-installation {
    margin-bottom: 50px;
}

.category-secondStat-intro-title {
    color: #122538;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.category-secondStat-intro-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.category-secondStat-intro-text p {
    line-height: 1.9;
    color: #333;
    text-align: left;
    margin: 0;
}

.category-secondStat-section-title {
    color: #122538;
    margin-bottom: 70px;
    text-align: center;
    font-weight: bold;
    padding-bottom: 15px;
    border-bottom: 3px solid #122538;
    width: 100%;
    display: block;
}

.category-secondStat-features {
    padding: 80px 0;
    position: relative;
    margin-bottom: 50px;
}

.category-secondStat-features-container,
.category-secondStat-seealso-inner,
.category-secondStat-additional-inner,
.category-secondStat-gallery-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 0.75rem;
}

.category-secondStat-features-container {
    width: 100%;
}

.category-secondStat-features-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.category-secondStat-features-column {
    flex: 0 0 auto;
    width: 33.33333333%;
    text-align: center;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 40px;
}

.category-secondStat-features-card-details {
    width: 80%;
    margin: auto;
    position: relative;
    transition: 0.3s ease-in-out;
}

.category-secondStat-features-card-details::before {
    content: "";
    width: 190px;
    height: 380px;
    background: #F5F5F5;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) skew(-20deg, 0deg);
    z-index: 0;
    transition: 0.3s ease-in-out;
}

.category-secondStat-features-card-details:hover::before {
    background-color: #F5F5F5;
}

.category-secondStat-features-card-details h3 {
    margin-bottom: 15px;
    margin-top: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #122538;
    transition: 0.3s ease-in-out;
    position: relative;
    z-index: 10;
}

.category-secondStat-features-card-details:hover h3 {
    color: #122538;
}

.category-secondStat-features-card-details p {
    line-height: 30px;
    color: #333;
    font-weight: 400;
    margin-bottom: 30px;
    transition: 0.3s ease-in-out;
    position: relative;
    z-index: 10;
}

.category-secondStat-features-card-details:hover p {
    color: #333;
}

.category-secondStat-features-read-more-btn {
    min-width: 120px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid;
    border-radius: 20px;
    margin: auto;
    background: #fff;
    transform: translateX(-10px);
    opacity: 0;
    visibility: hidden;
    border-color: #122538;
    transition: 0.3s ease-in-out;
    text-decoration: none;
    color: #122538;
    position: relative;
    z-index: 2;
    font-weight: 600;
    padding: 0 20px;
}

.category-secondStat-features-card-details:hover .category-secondStat-features-read-more-btn {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    background: #fff;
    color: #122538;
    border-color: #122538;
}

.category-secondStat-seealso,
.category-secondStat-additional {
    margin-bottom: 50px;
    padding: 40px 0;
}

.category-secondStat-seealso {
    background: #fafafa;
    border-radius: 8px;
}

.category-secondStat-seealso-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.category-secondStat-seealso-card {
    flex: 1 1 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    min-height: 260px;
    padding: 32px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-secondStat-seealso-card:hover {
    border-color: #122538;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.category-secondStat-seealso-card__title,
.category-secondStat-additional-card__title {
    margin: 0 0 16px;
    color: #122538;
    font-weight: 700;
    line-height: 1.2;
    flex-shrink: 0;
}

.category-secondStat-seealso-card__desc,
.category-secondStat-additional-card__desc {
    margin: 0 0 20px;
    color: #333;
    line-height: 1.5;
    flex: 1;
    min-height: 0;
}

.category-secondStat-seealso-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 10px 20px;
    min-height: 40px;
    background: #122538;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

.category-secondStat-seealso-card__btn:hover {
    background: #1a3550;
}

.category-secondStat-additional {
    background: #fff;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.category-secondStat-additional-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.category-secondStat-additional-card {
    flex: 1 1 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    min-height: 260px;
    padding: 32px;
    background: #F5F5F5;
    border-radius: 6px;
    border-left: 4px solid #122538;
    transition: background 0.2s ease, border-left-color 0.2s ease;
}

.category-secondStat-additional-card:hover {
    background: #eeeeee;
    border-left-color: #1a3550;
}

.category-secondStat-additional-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 10px 20px;
    min-height: 40px;
    background: transparent;
    color: #122538;
    border: 2px solid #122538;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

.category-secondStat-additional-card__btn:hover {
    background: #122538;
    color: #fff;
}

.category-secondStat-specs-content {
    background-color: #F5F5F5;
    border-radius: 5px;
    overflow-x: auto;
}

.category-secondStat-specs-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    margin: 0;
}

.category-secondStat-specs-table th {
    background-color: #122538;
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: bold;
    border: 1px solid #122538;
}

.category-secondStat-specs-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    color: #333;
    line-height: 1.6;
}

.category-secondStat-specs-table tr:nth-child(even) {
    background-color: #F5F5F5;
}

.category-secondStat-specs-table tr:nth-child(odd) {
    background-color: #fff;
}

.category-secondStat-specs-table tr:hover {
    background-color: #e8e8e8;
    transition: background-color 0.3s ease;
}

.category-secondStat-products {
    margin-bottom: 50px;
    position: relative;
    min-height: 600px;
}

.category-secondStat-products-wrapper {
    box-shadow: 0px 0px 100px 25px rgba(0, 0, 0, 0.2);
    height: 440px;
    position: relative;
    width: 840px;
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.category-secondStat-products-wrapper--centered {
    position: relative;
    margin: 50px auto 0;
}

.category-secondStat-products-carousel {
    transition: none;
    height: 440px;
    width: 840px;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    max-width: 100%;
    border-radius: 8px;
}

.category-secondStat-product-card {
    transition: all 500ms ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    z-index: 10;
    border-radius: 8px;
    pointer-events: none;
}

.category-secondStat-product-card--active {
    opacity: 1 !important;
    z-index: 20;
    pointer-events: auto;
}

.category-secondStat-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.category-secondStat-product-card--light::before {
    background: rgba(255, 255, 255, 0.1);
}

.category-secondStat-product-card--monterrey::before,
.category-secondStat-product-card--supermonterrey::before,
.category-secondStat-product-card--cascade::before,
.category-secondStat-product-card--banga::before {
    background: rgba(0, 0, 0, 0.4);
}

.category-secondStat-product-card__content {
    left: 50px;
    position: absolute;
    top: 50px;
    max-width: 500px;
    z-index: 5;
    padding: 20px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.category-secondStat-product-card--monterrey .category-secondStat-product-card__content,
.category-secondStat-product-card--supermonterrey .category-secondStat-product-card__content,
.category-secondStat-product-card--cascade .category-secondStat-product-card__content,
.category-secondStat-product-card--banga .category-secondStat-product-card__content {
    background: rgba(0, 0, 0, 0.3);
}

.category-secondStat-product-card__title {
    font-weight: 700;
    line-height: 1;
    margin-left: -4px;
    text-transform: uppercase;
}

.category-secondStat-product-card__details {
    margin-bottom: 30px;
    margin-top: 15px;
    overflow: hidden;
}

.category-secondStat-product-card__details:after {
    clear: both;
    content: '';
    display: table;
}

.category-secondStat-product-card__details-item {
    display: block;
    float: left;
    margin-right: 20px;
}

.category-secondStat-product-card__details-list {
    overflow: hidden;
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-secondStat-product-card__details-list li {
    float: left;
    margin-right: 5px;
    padding-right: 6px;
    position: relative;
}

.category-secondStat-product-card__details-list li:after {
    content: '|';
    position: absolute;
    right: 0;
}

.category-secondStat-product-card__details-list li:last-child {
    margin-right: 0;
}

.category-secondStat-product-card__details-list li:last-child:after {
    display: none;
}

.category-secondStat-product-card__description {
    max-width: 390px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-secondStat-product-card__description p {
    margin: 0;
    color: inherit;
}

.category-secondStat-product-card__price-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.category-secondStat-product-card__price {
    font-weight: 700;
    color: #122538;
    margin: 0;
}

.category-secondStat-product-card__order-btn {
    min-width: 120px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid;
    border-radius: 20px;
    background: #122538;
    border-color: #122538;
    transition: 0.3s ease-in-out;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    padding: 0 20px;
}

.category-secondStat-product-card__order-btn:hover {
    background: #1a3450;
    border-color: #1a3450;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.category-secondStat-product-card--light {
    background-color: #F5F5F5;
}

.category-secondStat-product-card--light .category-secondStat-product-card__title {
    color: #000;
}

.category-secondStat-product-card--monterrey,
.category-secondStat-product-card--supermonterrey,
.category-secondStat-product-card--cascade,
.category-secondStat-product-card--banga {
    background-color: #122538;
}

.category-secondStat-product-card--monterrey.category-secondStat-product-card--light,
.category-secondStat-product-card--supermonterrey.category-secondStat-product-card--light,
.category-secondStat-product-card--banga.category-secondStat-product-card--light {
    background-color: transparent !important;
}

.category-secondStat-product-card--monterrey .category-secondStat-product-card__title,
.category-secondStat-product-card--supermonterrey .category-secondStat-product-card__title,
.category-secondStat-product-card--cascade .category-secondStat-product-card__title,
.category-secondStat-product-card--banga .category-secondStat-product-card__title {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.category-secondStat-product-card--monterrey .category-secondStat-product-card__description,
.category-secondStat-product-card--supermonterrey .category-secondStat-product-card__description,
.category-secondStat-product-card--cascade .category-secondStat-product-card__description,
.category-secondStat-product-card--banga .category-secondStat-product-card__description {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.category-secondStat-product-card--monterrey .category-secondStat-product-card__price,
.category-secondStat-product-card--supermonterrey .category-secondStat-product-card__price,
.category-secondStat-product-card--cascade .category-secondStat-product-card__price,
.category-secondStat-product-card--banga .category-secondStat-product-card__price {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.category-secondStat-product-card--monterrey .category-secondStat-product-card__order-btn,
.category-secondStat-product-card--supermonterrey .category-secondStat-product-card__order-btn,
.category-secondStat-product-card--cascade .category-secondStat-product-card__order-btn,
.category-secondStat-product-card--banga .category-secondStat-product-card__order-btn {
    background: #fff;
    color: #122538;
    border-color: #fff;
}

.category-secondStat-product-card--monterrey .category-secondStat-product-card__order-btn:hover,
.category-secondStat-product-card--supermonterrey .category-secondStat-product-card__order-btn:hover,
.category-secondStat-product-card--cascade .category-secondStat-product-card__order-btn:hover,
.category-secondStat-product-card--banga .category-secondStat-product-card__order-btn:hover {
    background: #f5f5f5;
    border-color: #f5f5f5;
}

.category-secondStat-product-card--monterrey .category-secondStat-product-card__details-item,
.category-secondStat-product-card--supermonterrey .category-secondStat-product-card__details-item,
.category-secondStat-product-card--cascade .category-secondStat-product-card__details-item,
.category-secondStat-product-card--banga .category-secondStat-product-card__details-item {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.category-secondStat-product-card--monterrey .category-secondStat-product-card__details-list li,
.category-secondStat-product-card--supermonterrey .category-secondStat-product-card__details-list li,
.category-secondStat-product-card--cascade .category-secondStat-product-card__details-list li,
.category-secondStat-product-card--banga .category-secondStat-product-card__details-list li {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.category-secondStat-product-card--dark {
    background-color: #122538;
    color: #fff;
}

.category-secondStat-product-card--dark .category-secondStat-product-card__title {
    color: #fff;
}

.category-secondStat-product-card--dark .category-secondStat-product-card__price {
    color: #fff;
}

.category-secondStat-products-navigation {
    background-color: transparent;
    bottom: 0;
    height: 100%;
    overflow: hidden;
    position: absolute;
    right: 0;
    width: 100%;
    z-index: 30;
    pointer-events: none;
}

.category-secondStat-products-navigation__list {
    pointer-events: auto;
    transform: translateY(-50%);
    position: absolute;
    right: 14px;
    top: 50%;
    width: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-secondStat-products-navigation__list li {
    transition: all 250ms ease-in-out;
    background-color: #ccc;
    border-radius: 100%;
    cursor: pointer;
    height: 12px;
    margin: 0 auto 6px;
    width: 12px;
}

.category-secondStat-products-navigation__list li:last-child {
    margin-bottom: 0;
}

.category-secondStat-products-navigation__list li.category-is-active {
    height: 18px;
    width: 18px;
    background-color: #122538;
}

.category-secondStat-products-navigation__list li:hover {
    background-color: #bbb;
}

.category-secondStat-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.category-secondStat-gallery-item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 6px;
    background: #f0f0f0;
}

.category-secondStat-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.category-secondStat-gallery-item:hover img {
    transform: scale(1.06);
}

.category-secondStat-social {
    margin: 80px 0 50px;
    padding: 60px 0 60px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.category-secondStat-social .category-secondStat-section-title {
    margin-bottom: 50px;
}

.category-secondStat-social-list {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.category-secondStat-social-list li {
    list-style: none;
    margin: 0 5px;
}

.category-secondStat-social-list li a .fas,
.category-secondStat-social-list li a .fab {
    color: #262626;
    line-height: 80px;
    transition: 0.5s;
    padding-right: 14px;
}

.category-secondStat-social-list li a span {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 30px;
    color: #262626;
    letter-spacing: 4px;
    transition: 0.5s;
}

.category-secondStat-social-list li a {
    text-decoration: none;
    display: block;
    width: 210px;
    height: 80px;
    background: #fff;
    text-align: left;
    padding-left: 20px;
    transform: rotate(-30deg) skew(25deg) translate(0, 0);
    transition: 0.5s;
    box-shadow: -20px 20px 10px rgba(0, 0, 0, 0.5);
    position: relative;
}

.category-secondStat-social-list li a:before {
    content: '';
    position: absolute;
    top: 10px;
    left: -20px;
    height: 100%;
    width: 20px;
    background: #b1b1b1;
    transform: rotate(0deg) skewY(-45deg);
    transition: 0.5s;
}

.category-secondStat-social-list li a:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -10px;
    height: 20px;
    width: 100%;
    background: #b1b1b1;
    transform: rotate(0deg) skewX(-45deg);
    transition: 0.5s;
}

.category-secondStat-social-list li a:hover {
    transform: rotate(-30deg) skew(25deg) translate(20px, -15px);
    box-shadow: -50px 50px 50px rgba(0, 0, 0, 0.5);
}

.category-secondStat-social-list li:hover .fas,
.category-secondStat-social-list li:hover .fab {
    color: #fff;
}

.category-secondStat-social-list li:hover span {
    color: #fff;
}

.category-secondStat-social-list li:hover:nth-child(1) a,
.category-secondStat-social-list li:hover:nth-child(2) a,
.category-secondStat-social-list li:hover:nth-child(3) a,
.category-secondStat-social-list li:hover:nth-child(4) a {
    background: #122538;
}

.category-secondStat-social-list li:hover:nth-child(1) a:before,
.category-secondStat-social-list li:hover:nth-child(2) a:before,
.category-secondStat-social-list li:hover:nth-child(3) a:before,
.category-secondStat-social-list li:hover:nth-child(4) a:before {
    background: #0f1e2e;
}

.category-secondStat-social-list li:hover:nth-child(1) a:after,
.category-secondStat-social-list li:hover:nth-child(2) a:after,
.category-secondStat-social-list li:hover:nth-child(3) a:after,
.category-secondStat-social-list li:hover:nth-child(4) a:after {
    background: #1a3450;
}

@media (max-width: 768px) {
    .category-secondStat-container {
        padding: 20px;
    }

    .category-secondStat-header {
        margin: -20px -20px 30px -20px;
        min-height: 500px;
    }

    .category-secondStat-title {
        letter-spacing: 10px;
    }

    .category-secondStat-diamond-ornament {
        width: 12px;
        height: 12px;
    }

    .category-secondStat-diamond-ornament:nth-child(1),
    .category-secondStat-diamond-ornament:nth-child(2),
    .category-secondStat-diamond-ornament:nth-child(3),
    .category-secondStat-diamond-ornament:nth-child(4) {
        top: 30px;
        bottom: 30px;
        left: 30px;
        right: 30px;
    }

    .category-secondStat-diamond-ornament:nth-child(1) {
        top: 30px;
        left: 30px;
    }

    .category-secondStat-diamond-ornament:nth-child(2) {
        top: 30px;
        right: 30px;
    }

    .category-secondStat-diamond-ornament:nth-child(3) {
        bottom: 30px;
        left: 30px;
    }

    .category-secondStat-diamond-ornament:nth-child(4) {
        bottom: 30px;
        right: 30px;
    }

    .category-secondStat-header-content {
        padding: 0 20px;
    }

    .category-secondStat-hero-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .category-secondStat-hero-left,
    .category-secondStat-hero-right {
        flex: 1;
        width: 100%;
    }

    .category-secondStat-hero {
        padding: 40px 20px;
    }

    .category-secondStat-left-side,
    .category-secondStat-right-side {
        width: 100%;
        float: none;
        display: block;
    }

    .category-secondStat-products-wrapper {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 400px;
    }

    .category-secondStat-products-wrapper--centered {
        transform: none;
        left: 0;
        position: relative;
    }

    .category-secondStat-products-carousel {
        width: 100%;
        height: 400px;
        position: relative;
    }

    .category-secondStat-product-card__content {
        left: 20px;
        top: 50px;
        max-width: calc(100% - 40px);
    }

    .category-secondStat-features-column {
        flex: 0 0 auto;
        width: 50%;
        margin-bottom: 40px;
    }

    .category-secondStat-features-card-details {
        width: 90%;
    }

    .category-secondStat-seealso-card,
    .category-secondStat-additional-card {
        max-width: 100%;
    }

    .category-secondStat-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .category-secondStat-features-column {
        flex: 0 0 auto;
        width: 100%;
        margin-bottom: 20px;
    }

    .category-secondStat-features-card-details {
        width: 100%;
    }

    .category-secondStat-features-read-more-btn {
        transform: translateX(0px);
        opacity: 1;
        visibility: visible;
    }

    .category-secondStat-seealso-card,
    .category-secondStat-additional-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .category-secondStat-gallery-grid {
        grid-template-columns: 1fr;
    }

    .category-secondStat-social {
        margin: 50px 0 30px;
        padding: 40px 0;
        min-height: 150px;
    }

    .category-secondStat-social-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .category-secondStat-social-list li a {
        width: 200px;
        height: 70px;
        padding-left: 15px;
    }

    .category-secondStat-social-list li a .fas,
    .category-secondStat-social-list li a .fab {
        line-height: 70px;
        padding-right: 10px;
    }

    .category-secondStat-social-list li a span {
        top: 25px;
        letter-spacing: 2px;
    }
}