/* ==============================
   BASE RESET & GLOBALS
============================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #111;
    line-height: 1.6;
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

[data-aos] {
    will-change: transform, opacity;
}

a:hover, .btn-link:hover {
    text-decoration: none !important;
}

img {
    max-width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

img:hover {
    transform: scale(1.03);
}

.mainbox * {
    font-family: 'Poppins', sans-serif;
}

/* ==============================
   CONTAINER
============================== */
.container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 991px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 575px) {
    .container {
        padding: 0 1rem;
    }
}

/* ==============================
   TYPOGRAPHY
============================== */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(1.75rem, 5vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 4vw, 2rem); }

/* ==============================
   CAROUSEL ICON
============================== */
.carousel-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.carousel-icon img {
    max-width: 80px;
}

/* ==============================
   TOP BANNER — oculto en móvil/tablet
============================== */
.top-banner {
    width: 100%;
    background: #c40000;
    padding: 16px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    font-style: italic;
    text-align: center;
    line-height: 1.4;
    max-width: 900px;
}

.banner-star {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 2px rgba(0,0,0,.35));
}

/* Ocultar banner en tablet y móvil */
@media (max-width: 991px) {
    .top-banner {
        display: none;
    }
}

/* ==============================
   HERO SECTION
============================== */
.hero-stretchers {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1200px;
    min-height: 580px;
    margin: 0 auto;
    background-color: #fff;
    overflow: hidden;
}

.hero-content {
    flex: 1 1 50%;
    padding: 5rem 3rem 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.05;
}

.hero-stretchers h1 span {
    display: inline-block;
}

.hero-content p {
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-top: 1rem;
    text-transform: uppercase;
    color: #671513;
}

.hero-image {
    flex: 1 1 50%;
    background-image: url('./images/autoclaves/img16.jpg');
    background-size: cover;
    background-position: center;
    min-height: 300px;
}

.dp-arrow-wrap {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.dp-arrow-bounce {
    display: block;
    animation: dpArrowFloat 1.8s ease-in-out infinite;
}

@keyframes dpArrowFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(12px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(10px); }
}

/* Tablet */
@media (max-width: 991px) {
    .hero-stretchers {
        flex-direction: column;
        min-height: auto;
        max-width: 100%;
    }

    .hero-content {
        flex: none;
        padding: 3rem 2rem;
        text-align: center;
        align-items: center;
    }

    .dp-arrow-wrap {
        justify-content: center;
    }

    .hero-image {
        flex: none;
        width: 100%;
        min-height: 280px;
        height: 280px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .hero-content {
        padding: 2.5rem 1.25rem;
    }

    .hero-image {
        height: 220px;
        min-height: 220px;
    }
}

/* ==============================
   HOSPITAL STRETCHER SECTION
============================== */
.hospital-stretcher-section {
    background: #efefef;
    padding: 60px 0;
}

.hospital-gallery {
    width: 100%;
}

.hospital-gallery .main-image {
    width: 100%;
    overflow: hidden;
    border-radius: 6px;
}

.hospital-gallery .main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hospital-gallery .thumb-row {
    margin-top: 0;
}

.hospital-gallery .thumb-image {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.hospital-gallery .thumb-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.hospital-stretcher-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2.5rem;
    height: 100%;
}

.hospital-stretcher-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 300;
    line-height: 1.1;
    color: #4c4c4c;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.hospital-stretcher-text p {
    font-size: 1rem;
    line-height: 1.75;
    color: #4a4a4a;
}

/* Tablet */
@media (max-width: 991px) {
    .hospital-stretcher-section {
        padding: 40px 0;
    }

    .hospital-stretcher-text {
        padding-left: 0;
        padding-top: 2rem;
        text-align: center;
        align-items: center;
    }

    .hospital-gallery .main-image img {
        height: 300px;
    }

    .hospital-gallery .thumb-image img {
        height: 140px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hospital-gallery .main-image img {
        height: 230px;
    }

    .hospital-gallery .thumb-image img {
        height: 110px;
    }

    .hospital-stretcher-text h2 {
        font-size: 1.5rem;
    }

    .hospital-stretcher-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .hospital-gallery .main-image img {
        height: 200px;
    }

    .hospital-gallery .thumb-image img {
        height: 90px;
    }
}

/* ==============================
   REFURB PROCESS
============================== */
.refurb-process {
    text-align: center;
    padding: 60px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.refurb-process h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-style: italic;
    margin-bottom: 40px;
    color: #222;
}

.refurb-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.refurb-step {
    width: 190px;
    flex-shrink: 0;
}

.refurb-step img {
    width: 100%;
    height: 260px;
    border-radius: 4px;
    object-fit: cover;
}

.refurb-step p {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 10px;
    color: #333;
    letter-spacing: 0.5px;
}

/* Tablet */
@media (max-width: 991px) {
    .refurb-grid {
        gap: 16px;
    }

    .refurb-step {
        width: calc(33.333% - 16px);
        min-width: 140px;
    }

    .refurb-step img {
        height: 200px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .refurb-step {
        width: calc(50% - 10px);
    }

    .refurb-step img {
        height: 170px;
    }
}

@media (max-width: 400px) {
    .refurb-step {
        width: 100%;
        max-width: 300px;
    }

    .refurb-step img {
        height: 200px;
    }
}

/* ==============================
   REFURB BENEFITS
============================== */
.refurb-benefits {
    padding: 60px 20px;
    background-color: #e8e8e8;
}

/* Override del container reutilizado en gallery */
.refurb-benefits > .refurb-benefits-container,
.stretcher-gallery > .refurb-benefits-container {
    max-width: 1300px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.refurb-benefits-container {
    max-width: 1300px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.left-text {
    flex: 0 0 220px;
}

.left-text h2 {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-style: italic;
    color: #222;
    line-height: 1.2;
}

.center-image {
    flex: 1 1 280px;
    max-width: 380px;
    text-align: center;
}

.center-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.right-benefits {
    flex: 1 1 300px;
    max-width: 420px;
}

.right-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.right-benefits li {
    margin-bottom: 14px;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #333;
}

.right-benefits strong {
    color: #111;
}

/* Tablet — apila verticalmente sin huecos */
@media (max-width: 991px) {
    .refurb-benefits {
        padding: 40px 20px;
    }

    .refurb-benefits-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .left-text {
        flex: none;
        width: 100%;
    }

    .center-image {
        flex: none;
        width: 100%;
        max-width: 360px;
    }

    .right-benefits {
        flex: none;
        width: 100%;
        max-width: 560px;
        text-align: left;
    }

    .right-benefits ul {
        padding: 0 10px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .right-benefits {
        max-width: 100%;
    }

    .right-benefits li {
        font-size: 0.85rem;
    }

    .center-image {
        max-width: 100%;
    }
}

/* ==============================
   TUT HERO SPLIT
============================== */
.tut-hero {
    background: #5e5e5e;
}

.tut-hero .row {
    min-height: 420px;
}

.tut-hero-left {
    background: #5e5e5e;
    display: flex;
    align-items: center;
    padding: 70px 60px;
}

.tut-hero-content {
    max-width: 540px;
}

.tut-hero-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.tut-hero-subtitle {
    color: #ddd;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.tut-hero-left p {
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 12px;
}

.tut-hero-right {
    background: #5e5e5e;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
}

.tut-hero-right img {
    max-width: 100%;
    object-fit: contain;
}

/* Tablet */
@media (max-width: 991px) {
    .tut-hero-left {
        padding: 50px 24px;
        text-align: center;
    }

    .tut-hero-content {
        margin: 0 auto;
        max-width: 100%;
    }

    .tut-hero-subtitle {
        letter-spacing: 1.5px;
    }

    .tut-hero-right {
        padding: 10px 40px 40px;
    }

    .tut-hero-right img {
        max-width: 70%;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .tut-hero-left {
        padding: 40px 16px;
    }

    .tut-hero-right {
        padding: 0 30px 30px;
    }

    .tut-hero-right img {
        max-width: 80%;
    }
}

/* ==============================
   TUT WHY SECTION
============================== */
.tut-why {
    background: #efefef;
    padding: 80px 0;
}

.tut-why-title {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 300;
    margin-bottom: 16px;
    text-align: center;
}

.tut-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.tut-feature {
    border-bottom: 1px solid #ccc;
    padding-bottom: 14px;
    transition: transform 0.3s ease;
}

.tut-feature:hover {
    transform: translateY(-4px);
}

.tut-feature:last-child {
    border-bottom: none;
}

.tut-feature h6 {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
    color: #222;
}

.tut-feature p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

.tut-machine {
    max-width: 85%;
    margin: 0 auto;
    display: block;
}

.tut-why-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

.tut-thumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.tut-thumbs img {
    width: 90px;
    height: auto;
    border-radius: 4px;
}

.tut-btn {
    display: inline-block;
    background: #c40000;
    color: #fff;
    padding: 11px 20px;
    margin: 5px;
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: background 0.3s;
}

.tut-btn:hover {
    background: #e00000;
    color: #fff;
}

/* Tablet */
@media (max-width: 991px) {
    .tut-why {
        padding: 50px 0;
    }

    .tut-features {
        text-align: center;
        gap: 16px;
    }

    .tut-feature {
        border-bottom: 1px solid #ddd;
        padding-bottom: 12px;
    }

    .tut-thumbs img {
        width: 75px;
    }

    .tut-why-text {
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .tut-why {
        padding: 40px 0;
    }

    .tut-btn {
        display: block;
        text-align: center;
        margin: 6px auto;
        max-width: 220px;
        letter-spacing: 1px;
    }

    .tut-thumbs img {
        width: 62px;
    }
}

@media (max-width: 480px) {
    .tut-thumbs img {
        width: 50px;
    }

    .tut-machine {
        max-width: 70%;
    }
}

/* ==============================
   STRETCHER GALLERY (product types)
============================== */
.stretcher-gallery {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.stretcher-header h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 300;
    color: #111;
    margin-bottom: 36px;
}

.stretcher-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 18px;
    max-width: 1300px;
    margin: 0 auto;
}

.stretcher-card {
    width: 100%;
    text-align: center;
}

.stretcher-card h3 {
    font-size: 0.72rem;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
}

.stretcher-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.check-button {
    display: inline-block;
    padding: 7px 11px;
    border: 2px solid #ba1e1e;
    color: #ba1e1e;
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.8px;
    border-radius: 4px;
    transition: 0.3s;
    white-space: nowrap;
}

.check-button:hover {
    background-color: #ba1e1e;
    color: #fff;
}

/* Large desktop */
@media (max-width: 1400px) {
    .stretcher-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablet */
@media (max-width: 991px) {
    .stretcher-gallery {
        padding: 40px 16px;
    }

    .stretcher-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .stretcher-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .check-button {
        font-size: 0.7rem;
        padding: 6px 8px;
        letter-spacing: 0.4px;
    }
}

/* Small mobile */
@media (max-width: 360px) {
    .stretcher-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stretcher-card h3 {
        font-size: 0.6rem;
    }
}

/* ==============================
   CATALOG SECTION
============================== */
.catalog {
    padding: 60px 20px;
    text-align: center;
}

.catalog-header h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 300;
    margin-bottom: 8px;
}

.catalog-header p {
    font-size: 0.82rem;
    letter-spacing: 2px;
    margin-bottom: 28px;
    color: #555;
}

.search-bar {
    position: relative;
    display: inline-block;
    margin-bottom: 36px;
    width: 100%;
    max-width: 380px;
}

.search-bar input {
    padding: 10px 40px 10px 14px;
    border: 2px solid #111;
    border-radius: 24px;
    font-size: 0.88rem;
    outline: none;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Product Carousel */
.product-carousel {
    width: 88%;
    margin: 0 auto;
    padding: 16px 0;
}

.product-carousel .slick-list {
    padding: 12px 0;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 18px 14px;
    margin: 0 8px;
    text-align: center;
    transition: transform 0.3s ease;
    min-height: 420px;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    max-width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 4px;
    margin: 0 auto 12px;
}

.product-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 4px 0;
    color: #111;
    line-height: 1.3;
}

.product-condition {
    font-size: 0.8rem;
    color: #777;
    margin: 4px 0;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin: 8px 0 12px;
}

.view-btn {
    padding: 7px 14px;
    border: 1.5px solid #ba1e1e;
    color: #ba1e1e;
    text-decoration: none;
    font-size: 0.8rem;
    border-radius: 5px;
    display: inline-block;
    transition: 0.3s;
}

.view-btn:hover {
    background-color: #ba1e1e;
    color: #fff;
}

/* Custom arrows */
.custom-arrows {
    text-align: center;
    margin-top: 8px;
}

.slick-prev-custom,
.slick-next-custom {
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    color: #222;
    border: none;
    padding: 6px 12px;
    margin: 0 4px;
    cursor: pointer;
    border-radius: 4px;
    transition: color 0.2s;
}

.slick-prev-custom:hover,
.slick-next-custom:hover {
    color: #ba1e1e;
}

.slick-prev:before, .slick-next:before {
    color: #333;
}

.slick-dots li button:before {
    font-size: 12px;
}

/* Tablet */
@media (max-width: 991px) {
    .catalog {
        padding: 40px 16px;
    }

    .product-carousel {
        width: 96%;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .catalog-header p {
        letter-spacing: 1px;
    }

    .product-card {
        margin: 0 5px;
        min-height: auto;
        padding: 14px 10px;
    }

    .slick-prev-custom,
    .slick-next-custom {
        font-size: 30px;
        padding: 4px 8px;
    }
}

/* ==============================
   PAGINATION
============================== */
.pagination {
    margin-top: 24px;
    font-size: 1.1rem;
}

.pagination span {
    margin: 0 8px;
    font-size: 36px;
    cursor: pointer;
}

/* ==============================
   VIDEO POPUP
============================== */
.container-md {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    cursor: pointer;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon svg {
    fill: #fff;
    width: 28px;
    height: 28px;
}

.popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup iframe {
    width: 60%;
    height: 60%;
    border: none;
}

.popup.show {
    display: flex;
}

@media (max-width: 767px) {
    .popup iframe {
        width: 96%;
        height: 50%;
    }
}

/* ==============================
   UNIVERSAL VIEWER (LIGHTBOX)
============================== */
.viewer-open {overflow-x: hidden;}
section {overflow: hidden;}
.universal-viewer {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.universal-viewer.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.universal-viewer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(4px);
}

.universal-viewer__content {
    position: relative;
    z-index: 2;
    width: min(95vw, 1200px);
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.universal-viewer__media {
    width: 100%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.universal-viewer__media img,
.universal-viewer__media video {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
    object-fit: contain;
    background: #000;
}

.universal-viewer__close {
    position: absolute;
    top: -6px;
    right: 2px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    transition: transform 0.2s, background 0.2s;
}

.universal-viewer__close:hover {
    background: rgba(255,255,255,0.24);
    transform: scale(1.06);
}

[data-lightbox] {
    cursor: zoom-in;
}

@media (max-width: 767px) {
    .universal-viewer__content {
        width: 100vw;
        padding: 12px;
    }

    .universal-viewer__close {
        position: fixed;
        top: 12px;
        right: 12px;
    }

    .universal-viewer__media img,
    .universal-viewer__media video {
        max-height: 80vh;
        border-radius: 8px;
    }
}

/* ==============================
   SCROLL TO TOP BUTTON
============================== */
.dp-scroll-top-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #bf0c04;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(200,0,0,0.3);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(14px) scale(0.9);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.25s;
}

.dp-scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.dp-scroll-top-btn:hover {
    background: #c80000;
    transform: translateY(-2px) scale(1.04);
}

.dp-scroll-top-btn:active {
    transform: scale(0.97);
}

.dp-scroll-top-btn:focus {
    outline: none;
}

@media (max-width: 767px) {
    .dp-scroll-top-btn {
        width: 44px;
        height: 44px;
        right: 12px;
        bottom: 12px;
    }
}

/* ==============================
   FOOTER
============================== */
.footer-promo {
    display: flex;
    justify-content: space-around;
    padding: 4rem 2rem;
    background-color: #191919;
    color: #fff;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    max-width: 240px;
    margin-bottom: 1rem;
}

.footer-left h2 {
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.quote-btn {
    display: inline-block;
    margin: 1rem 0;
    padding: 0.7rem 1.4rem;
    border: 2px solid #fff;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.quote-btn:hover {
    background-color: #fff;
    color: #000;
}

.footer-right {
    max-width: 300px;
    font-size: 0.95rem;
}

.footer-right a {
    color: #fff;
    text-decoration: underline;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-right p {
    margin: 1rem 0;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    color: #fff;
    font-size: 1.8rem;
}

@media (max-width: 767px) {
    .footer-promo {
        flex-direction: column;
        padding: 2.5rem 1.5rem;
        gap: 1.5rem;
    }

    .footer-right {
        max-width: 100%;
    }
}
