/* =====================================================
   SAFERIDE CARS
   FINAL WEBSITE CSS
===================================================== */

:root {
    --red: #e53935;
    --red-dark: #c62828;
    --black: #08090b;
    --dark: #101216;
    --dark-2: #15171c;
    --card: #17191e;
    --white: #ffffff;
    --text: #eeeeee;
    --muted: #9da1aa;
    --border: rgba(255,255,255,.09);
    --wa: #25d366;
    --green: #19b866;
    --sold: #e53935;
    --max: 1200px;
}


/* =====================================================
   RESET
===================================================== */

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


html {
    scroll-behavior: smooth;
}


body {
    background: var(--black);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}


img {
    display: block;
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


/* =====================================================
   NAV
===================================================== */

#nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 5%;

    transition: .3s ease;
}


#nav.scrolled {
    background: rgba(8,9,11,.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}


.logo {
    display: flex;
    align-items: center;
    gap: 9px;

    font-family: 'Syne', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -.04em;
}


.logo span,
.ft-logo span {
    color: var(--red);
}


.logo-dot {
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(229,57,53,.7);
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}


.nav-links > li > a:not(.nav-wa) {
    font-size: .86rem;
    color: #d2d4d8;
    transition: color .2s ease;
}


.nav-links > li > a:hover {
    color: var(--white);
}


.nav-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 17px;

    background: var(--wa);
    color: #07140b;

    border-radius: 6px;

    font-size: .82rem;
    font-weight: 700;

    transition: transform .2s ease;
}


.nav-wa:hover {
    transform: translateY(-2px);
}


.nav-wa svg {
    width: 17px;
    height: 17px;
}


.hamburger {
    display: none;

    border: 0;
    background: none;

    cursor: pointer;

    flex-direction: column;
    gap: 5px;
}


.hamburger span {
    width: 25px;
    height: 2px;
    background: white;
}


.mob-nav {
    display: none;
}


/* =====================================================
   HERO
===================================================== */

#home {
    position: relative;
    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(229,57,53,.13),
            transparent 35%
        ),
        var(--black);
}


.hero-bg {
    position: absolute;
    inset: 0;

    opacity: .12;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.04),
            transparent
        );
}


.hero-vline {
    position: absolute;
    top: 0;
    right: 15%;
    width: 1px;
    height: 100%;

    background: rgba(255,255,255,.05);
}


.hero-inner {
    position: relative;
    z-index: 2;

    width: min(var(--max), 90%);
    margin: auto;

    padding-top: 90px;
}


.hero-tag {
    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--muted);

    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .14em;
}


.hero-tag-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--red);
}


.hero-inner h1 {
    margin-top: 22px;

    max-width: 850px;

    font-family: 'Syne', sans-serif;

    font-size: clamp(3.2rem, 7vw, 6.8rem);

    line-height: .94;

    letter-spacing: -.065em;
}


.red {
    color: var(--red);
}


.hero-sub {
    max-width: 640px;

    margin-top: 28px;

    color: var(--muted);

    font-size: 1rem;
    line-height: 1.8;
}


.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;

    margin-top: 32px;
}


.btn {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 0 21px;

    border-radius: 5px;

    font-size: .84rem;
    font-weight: 700;

    transition: .2s ease;
}


.btn-wa {
    background: var(--wa);
    color: #061009;
}


.btn-wa:hover {
    transform: translateY(-2px);
}


.btn-ghost {
    border: 1px solid rgba(255,255,255,.2);
    color: white;
}


.btn-ghost:hover {
    background: rgba(255,255,255,.06);
}


.hero-stats {
    display: flex;
    gap: 45px;

    margin-top: 65px;
}


.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
}


.stat-lbl {
    margin-top: 2px;

    color: var(--muted);

    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .12em;
}


/* =====================================================
   TRUST BAR
===================================================== */

.trust-bar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background: #0d0f12;
}


.trust-item {
    min-height: 74px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border-right: 1px solid var(--border);

    color: #c6c8cc;

    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}


.trust-item:last-child {
    border-right: 0;
}


.trust-item svg {
    width: 19px;
    height: 19px;

    color: var(--red);
}


/* =====================================================
   SECTIONS
===================================================== */

section {
    padding: 105px 5%;
}


.sec-head {
    max-width: 700px;
    margin-bottom: 42px;
}


.sec-head.c {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


.sec-tag {
    color: var(--red);

    font-size: .7rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .16em;
}


.sec-h {
    margin-top: 10px;

    font-family: 'Syne', sans-serif;

    font-size: clamp(2rem, 4vw, 3.4rem);

    line-height: 1.05;

    letter-spacing: -.045em;
}


.sec-p {
    margin-top: 16px;

    color: var(--muted);

    font-size: .92rem;
    line-height: 1.8;
}


.rule {
    width: 45px;
    height: 3px;

    margin-top: 19px;

    background: var(--red);
}


.rule.c {
    margin-left: auto;
    margin-right: auto;
}


/* =====================================================
   FILTER
===================================================== */

.filter-bar {
    width: min(var(--max), 100%);
    margin: 0 auto 35px;

    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}


.fbtn {
    border: 1px solid var(--border);

    background: transparent;
    color: var(--muted);

    padding: 9px 15px;

    border-radius: 4px;

    cursor: pointer;

    font-size: .74rem;
    font-weight: 600;

    transition: .2s ease;
}


.fbtn:hover,
.fbtn.on {
    background: var(--red);
    border-color: var(--red);
    color: white;
}


/* =====================================================
   CAR GRID
===================================================== */

.cars-grid {
    width: min(var(--max), 100%);
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 22px;

    align-items: stretch;
}


.car-card {
    min-width: 0;

    display: flex;
    flex-direction: column;

    background: var(--card);

    border: 1px solid var(--border);

    border-radius: 8px;

    overflow: hidden;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}


.car-card:hover {
    transform: translateY(-5px);

    border-color: rgba(229,57,53,.4);

    box-shadow:
        0 15px 45px rgba(0,0,0,.3);
}


/* =====================================================
   CAR IMAGE
===================================================== */

.car-img {
    position: relative;

    height: 225px;

    overflow: hidden;

    background: #0b0c0e;
}


.car-card-link {
    display: block;

    width: 100%;
    height: 100%;
}


.car-img img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .45s ease;
}


.car-card:hover .car-img img {
    transform: scale(1.045);
}


/* =====================================================
   STATUS BADGE
===================================================== */

.car-status {
    position: absolute;

    top: 14px;
    left: 14px;

    z-index: 5;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 102px;
    min-height: 34px;

    padding: 7px 13px;

    border-radius: 5px;

    font-size: .72rem;
    font-weight: 800;

    letter-spacing: .08em;

    color: white;

    box-shadow:
        0 5px 18px rgba(0,0,0,.35);

    border: 1px solid rgba(255,255,255,.25);
}


.car-status.s-avail {
    background: #159957;

    box-shadow:
        0 5px 20px rgba(21,153,87,.35);
}


.car-status.s-sold {
    background: #d62828;

    box-shadow:
        0 5px 20px rgba(214,40,40,.35);
}


.car-yr {
    position: absolute;

    right: 12px;
    bottom: 12px;

    padding: 5px 9px;

    background: rgba(0,0,0,.75);

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 4px;

    color: white;

    font-size: .7rem;
    font-weight: 700;
}


/* =====================================================
   CAR BODY
===================================================== */

.car-body {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 20px;
}


.car-make {
    color: var(--red);

    font-size: .68rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .12em;
}


.car-name {
    margin-top: 3px;

    color: white;

    font-family: 'Syne', sans-serif;

    font-size: 1.35rem;
    line-height: 1.15;

    font-weight: 700;
}


.car-price {
    margin-top: 12px;

    color: white;

    font-family: 'Syne', sans-serif;

    font-size: 1.5rem;
    font-weight: 800;
}


.car-specs {
    display: flex;
    flex-wrap: wrap;

    gap: 6px;

    margin-top: 13px;
}


.spec {
    padding: 5px 8px;

    background: rgba(255,255,255,.045);

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 3px;

    color: #b8bbc1;

    font-size: .65rem;
    font-weight: 500;
}


.car-desc {
    display: -webkit-box;

    margin-top: 14px;

    color: var(--muted);

    font-size: .76rem;
    line-height: 1.55;

    overflow: hidden;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;

    max-height: calc(1.55em * 5);
}


/* =====================================================
   CARD FOOTER / BUTTONS
===================================================== */

.car-foot {
    margin-top: auto;
    padding-top: 17px;
}


.car-actions {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 8px;

    width: 100%;
}


.details-sm,
.wa-sm {
    min-width: 0;

    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    padding: 0 10px;

    border-radius: 4px;

    font-size: .72rem;
    font-weight: 700;

    white-space: nowrap;

    transition: .2s ease;
}


.details-sm {
    background: rgba(255,255,255,.07);

    border: 1px solid rgba(255,255,255,.12);

    color: white;
}


.details-sm:hover {
    background: rgba(255,255,255,.13);
}


.wa-sm {
    background: var(--wa);

    color: #061009;
}


.wa-sm:hover {
    filter: brightness(1.08);
}


.wa-sm svg {
    width: 16px;
    height: 16px;

    flex: 0 0 auto;
}


.car-note {
    display: flex;
    align-items: center;
    gap: 5px;

    margin-top: 10px;

    color: #92969e;

    font-size: .66rem;
}


.car-note svg {
    width: 13px;
    height: 13px;

    flex: 0 0 auto;
}


/* =====================================================
   EMPTY STOCK
===================================================== */

.empty-stock {
    grid-column: 1 / -1;

    padding: 70px 20px;

    text-align: center;

    border: 1px dashed var(--border);
}


.empty-stock-title {
    font-family: 'Syne', sans-serif;

    font-size: 1.4rem;
    font-weight: 700;
}


.empty-stock p {
    margin-top: 7px;

    color: var(--muted);
}


/* =====================================================
   WHY
===================================================== */

#why {
    background: #0d0f12;
}


.why-grid {
    width: min(var(--max), 100%);
    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 15px;
}


.why-card {
    padding: 27px;

    background: var(--card);

    border: 1px solid var(--border);

    border-radius: 7px;
}


.why-ico {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 17px;

    background: rgba(229,57,53,.1);

    border: 1px solid rgba(229,57,53,.25);

    color: var(--red);

    border-radius: 5px;

    font-weight: 800;
}


.why-h {
    font-family: 'Syne', sans-serif;

    font-size: 1rem;
    font-weight: 700;
}


.why-p {
    margin-top: 8px;

    color: var(--muted);

    font-size: .78rem;
    line-height: 1.7;
}


/* =====================================================
   ABOUT
===================================================== */

#about {
    width: min(var(--max), 100%);
    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 75px;

    align-items: center;
}


.ab-imgs {
    position: relative;

    min-height: 500px;
}


.ab-main {
    width: 78%;
    height: 420px;

    object-fit: cover;

    border-radius: 5px;
}


.ab-sm {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 43%;
    height: 210px;

    object-fit: cover;

    border: 7px solid var(--black);

    border-radius: 5px;
}


.ab-badge {
    position: absolute;

    left: 30px;
    bottom: 28px;

    padding: 15px 19px;

    background: var(--red);

    border-radius: 4px;

    text-align: center;
}


.ab-num {
    font-family: 'Syne', sans-serif;

    font-size: 1.7rem;
    font-weight: 800;
}


.ab-lbl {
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}


.about-text {
    color: var(--muted);

    font-size: .9rem;
    line-height: 1.8;

    margin-bottom: 13px;
}


.ab-list {
    list-style: none;

    margin-top: 22px;
}


.ab-list li {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 11px;

    color: #c8cbd0;

    font-size: .78rem;
}


.ab-chk {
    width: 20px;
    height: 20px;

    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(25,184,102,.13);

    border-radius: 50%;

    color: var(--green);

    font-size: .7rem;
    font-weight: 800;
}


.about-btn {
    margin-top: 18px;
}


/* =====================================================
   CONTACT
===================================================== */

#contact {
    background: #0d0f12;
}


.ct-wrap {
    width: min(var(--max), 100%);
    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;
}


.info-cards {
    display: grid;
    gap: 10px;
}


.info-card {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 18px;

    background: var(--card);

    border: 1px solid var(--border);

    border-radius: 6px;
}


.info-ico {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    background: rgba(229,57,53,.1);

    color: var(--red);

    border-radius: 5px;

    font-weight: 800;
}


.info-lbl {
    color: var(--muted);

    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}


.info-val {
    margin-top: 2px;

    color: white;

    font-size: .84rem;
}


.hours-box {
    margin-top: 14px;

    padding: 20px;

    background: var(--card);

    border: 1px solid var(--border);

    border-radius: 6px;
}


.hours-t {
    margin-bottom: 12px;

    font-family: 'Syne', sans-serif;

    font-weight: 700;
}


.hrow {
    display: flex;
    justify-content: space-between;

    padding: 8px 0;

    border-bottom: 1px solid rgba(255,255,255,.05);

    color: var(--muted);

    font-size: .72rem;
}


.hrow:last-child {
    border-bottom: 0;
}


.hrow strong {
    color: #ddd;
}


.hrow .closed {
    color: var(--red);
}


.hrow .wa {
    color: var(--wa);
}


.wa-box {
    margin-top: 14px;

    padding: 20px;

    background: rgba(37,211,102,.07);

    border: 1px solid rgba(37,211,102,.2);

    border-radius: 6px;
}


.wa-box p {
    color: #b9c1bc;

    font-size: .76rem;

    margin-bottom: 13px;
}


.wa-full {
    min-height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--wa);

    color: #061009;

    border-radius: 4px;

    font-size: .78rem;
    font-weight: 800;
}


/* =====================================================
   ENQUIRY
===================================================== */

.enq-panel {
    padding: 30px;

    background: var(--card);

    border: 1px solid var(--border);

    border-radius: 7px;
}


.enq-h {
    font-family: 'Syne', sans-serif;

    font-size: 1.45rem;
    font-weight: 800;
}


.enq-sub {
    margin: 5px 0 22px;

    color: var(--muted);

    font-size: .75rem;
}


.frow {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;
}


.fg {
    margin-bottom: 13px;
}


.fg label {
    display: block;

    margin-bottom: 6px;

    color: #bbbfc6;

    font-size: .66rem;
    font-weight: 600;
}


.fg input,
.fg textarea,
.fg select {
    width: 100%;

    padding: 11px 12px;

    border: 1px solid rgba(255,255,255,.09);

    background: #101216;

    color: white;

    border-radius: 4px;

    outline: none;

    font-size: .76rem;

    transition: border-color .2s ease;
}


.fg input:focus,
.fg textarea:focus,
.fg select:focus {
    border-color: rgba(229,57,53,.7);
}


.fg textarea {
    min-height: 105px;

    resize: vertical;
}


.submit-wa {
    width: 100%;

    min-height: 47px;

    border: 0;

    background: var(--wa);

    color: #061009;

    border-radius: 4px;

    cursor: pointer;

    font-size: .8rem;
    font-weight: 800;

    transition: filter .2s ease;
}


.submit-wa:hover {
    filter: brightness(1.08);
}


.form-ok {
    display: none;

    padding: 20px;

    text-align: center;

    background: rgba(37,211,102,.07);

    border: 1px solid rgba(37,211,102,.2);

    border-radius: 5px;

    color: var(--wa);

    font-weight: 700;

    font-size: .85rem;
}


.form-ok span {
    display: inline-block;

    margin-top: 7px;

    color: var(--muted);

    font-size: .72rem;
    font-weight: 400;
}


/* =====================================================
   FOOTER
===================================================== */

footer {
    background: #07080a;

    border-top: 1px solid var(--border);
}


.ft-top {
    width: min(var(--max), 90%);
    margin: auto;

    padding: 65px 0;

    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 70px;
}


.ft-logo {
    font-family: 'Syne', sans-serif;

    font-size: 1.5rem;
    font-weight: 800;
}


.ft-tag {
    max-width: 350px;

    margin-top: 13px;

    color: var(--muted);

    font-size: .75rem;
    line-height: 1.7;
}


.ft-socials {
    display: flex;
    gap: 8px;

    margin-top: 20px;
}


.soc {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.06);

    border: 1px solid var(--border);

    border-radius: 4px;

    color: #ddd;

    font-size: .65rem;
    font-weight: 700;
}


.ft-top h4 {
    margin-bottom: 15px;

    font-family: 'Syne', sans-serif;

    font-size: .85rem;
}


.ft-links {
    list-style: none;
}


.ft-links li {
    margin-bottom: 8px;
}


.ft-links a {
    color: var(--muted);

    font-size: .72rem;

    transition: color .2s ease;
}


.ft-links a:hover {
    color: white;
}


.ft-bot {
    width: min(var(--max), 90%);
    margin: auto;

    padding: 18px 0;

    border-top: 1px solid var(--border);

    display: flex;
    justify-content: space-between;

    gap: 20px;
}


.ft-copy {
    color: #656971;

    font-size: .65rem;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 900px) {

    .nav-links {
        display: none;
    }


    .hamburger {
        display: flex;
    }


    .mob-nav {
        position: fixed;

        top: 78px;
        left: 0;

        width: 100%;

        z-index: 999;

        display: flex;

        flex-direction: column;

        padding: 15px 5%;

        background: rgba(8,9,11,.98);

        border-bottom: 1px solid var(--border);

        transform: translateY(-150%);

        transition: transform .3s ease;
    }


    .mob-nav.open {
        transform: translateY(0);
    }


    .mob-nav a {
        padding: 14px 0;

        border-bottom: 1px solid rgba(255,255,255,.05);

        font-size: .85rem;
    }


    .mob-nav .mob-wa {
        color: var(--wa);

        font-weight: 700;
    }


    .trust-bar {
        grid-template-columns: repeat(2, 1fr);
    }


    .trust-item {
        border-bottom: 1px solid var(--border);
    }


    .cars-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    #about,
    .ct-wrap {
        grid-template-columns: 1fr;
    }


    .ab-imgs {
        min-height: 430px;
    }


    .ft-top {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 600px) {

    section {
        padding: 75px 5%;
    }


    #home {
        min-height: 850px;
    }


    .hero-inner {
        padding-top: 90px;
    }


    .hero-inner h1 {
        font-size: clamp(3rem, 15vw, 5rem);
    }


    .hero-sub {
        font-size: .86rem;
    }


    .hero-stats {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 25px;

        margin-top: 45px;
    }


    .stat-num {
        font-size: 1.5rem;
    }


    .trust-bar {
        grid-template-columns: 1fr;
    }


    .trust-item {
        min-height: 58px;

        border-right: 0;
    }


    .cars-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .car-img {
        height: 235px;
    }


    .car-body {
        padding: 18px;
    }


    .car-status {
        top: 12px;
        left: 12px;

        min-width: 100px;
    }


    .car-name {
        font-size: 1.25rem;
    }


    .car-actions {
        grid-template-columns: 1fr 1fr;
    }


    .why-grid {
        grid-template-columns: 1fr;
    }


    .ab-imgs {
        min-height: 350px;
    }


    .ab-main {
        width: 82%;
        height: 310px;
    }


    .ab-sm {
        width: 45%;
        height: 155px;
    }


    .ab-badge {
        left: 15px;
        bottom: 15px;
    }


    .frow {
        grid-template-columns: 1fr;
        gap: 0;
    }


    .enq-panel {
        padding: 22px;
    }


    .ft-top {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 50px 0;
    }


    .ft-bot {
        flex-direction: column;

        gap: 5px;
    }

}


/* =====================================================
   VERY SMALL PHONES
===================================================== */

@media (max-width: 380px) {

    .hero-btns {
        flex-direction: column;
    }


    .btn {
        width: 100%;
    }


    .car-actions {
        grid-template-columns: 1fr;
    }


    .details-sm,
    .wa-sm {
        width: 100%;
    }

}








.view-all-wrap{
    text-align:center;
    margin:50px 0 10px;
}

.view-all-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 34px;
    background:#d51d25;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.view-all-btn:hover{
    background:#ef2b33;
    transform:translateY(-3px);
}

.view-all-btn span{
    transition:.3s;
}

.view-all-btn:hover span{
    transform:translateX(5px);
}