*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --orange: #FF8E01;
    --orange-dark: #9b5601;
    --orange-mid: #d87802;
    --light-orange: #f4f0ea;
    --orange-light: #fdf0ea;
    --white: #ffffff;
    --off-white: #fafaf8;
    --gray-50: #f7f7f5;
    --gray-100: #eeede9;
    --gray-300: #d2d0ca;
    --gray-500: #8a8880;
    --gray-700: #4a4844;
    --text: #1e1d1a;
    --ease: cubic-bezier(0.23, 1, 0.32, 1);
    --success-green: #198754;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
    padding-top: 80px;
    text-align: justify;
}

header,
footer {
    width: 100%;
    max-width: 100%;
}

#loader {
    position: fixed;
    inset: 0;
    background: var(--orange);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999;

    transition: opacity 0.4s ease, visibility 0.4s;
}

#loader.hide {
    opacity: 0;
    visibility: hidden;
}

/* spinner moderno */
.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--orange-dark);
    border-top: 5px solid var(--orange-light);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: var(--gray-50)
}

::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 3px
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.serif {
    font-family: 'Playfair Display', serif
}

/* TOPBAR */
.topbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 10px;
    background: var(--orange);
    z-index: 1001;
    transition: transform .3s ease;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 10px;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    transition: all .3s ease;
}

.topbar.hide {
    transform: translateY(-100%);
}

.navbar.scrolled {
    top: 0;
    box-shadow: 0 2px 24px rgba(0, 0, 0, .2)
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px
}

.logo {
    max-width: 200px;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 2px
}

.nav-center a,
.nav-drop>button {
    font-size: .84rem;
    font-weight: 400;
    color: var(--gray-700);
    padding: 8px 13px;
    border-radius: 6px;
    letter-spacing: .01em;
    transition: background .18s, color .18s;
    display: flex;
    align-items: center;
    gap: 4px
}

.nav-center a:hover,
.nav-drop>button:hover {
    background: var(--orange-light);
    color: var(--orange)
}

.nav-drop {
    position: relative
}

.nav-drop>button svg {
    width: 11px;
    height: 11px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform .22s
}

.nav-drop:hover>button svg {
    transform: rotate(180deg)
}

.drop-menu {
    position: absolute;
    top: calc(100%+10px);
    left: 0;
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 10px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, .1);
    padding: 6px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px) scale(.98);
    transition: all .22s var(--ease);
    z-index: 1003;
}

.nav-drop:hover .drop-menu {
    opacity: 1;
    pointer-events: all;
    transform: none
}

.drop-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    font-size: .82rem;
    color: var(--gray-700);
    border-radius: 6px;
    transition: background .15s, color .15s
}

.drop-menu a:hover {
    background: var(--orange-light);
    color: var(--orange)
}

.drop-menu a svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    flex-shrink: 0;
    opacity: .5
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px
}

.btn-ghost {
    font-size: .82rem;
    color: var(--gray-700);
    margin-top: 2px;
    padding: 10px 20px;
    border-radius: 100px;
    border: 1.5px solid var(--gray-300);
    transition: border-color .2s, color .2s;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.btn-ghost:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(232, 80, 10, .3)
}

.btn-orange {
    background: var(--orange);
    color: white;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .02em;
    transition: background .22s, transform .2s, box-shadow .2s;
    text-align: center;
}

.btn-orange:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(232, 80, 10, .3)
}

.btn-orange svg {
    width: 15px;
    height: 15px;
    stroke: white;
    fill: none;
    stroke-width: 2.5
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .02em;
    transition: background .22s, transform .2s, box-shadow .2s;
    text-align: center;
}

.btn-whatsapp:hover {
    background: #1ebc57;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, .3);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 32px;
    height: 32px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);

    margin: 4px 0;
    border-radius: 2px;

    transition: 0.3s ease;
}

.hamburger.active {
    transform: scale(0.9);
}

/* HERO */
.hero {
    background: var(--off-white);
    min-height: 92dvh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.hero-right img {
    position: absolute;
    width: 65%;
    top: 20px;
    right: -30px;
}

.hero-left {
    z-index: 2
}

.hero-left strong {
    color: var(--orange);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-light);
    border: 1px solid rgba(232, 80, 10, .2);
    border-radius: 100px;
    padding: 6px 14px 6px 10px;
    margin-bottom: 24px
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--orange);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hero-badge span {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--orange)
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    font-weight: 700;
    line-height: 1;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -.02em
}

.hero h1 em {
    font-style: italic;
    color: var(--orange)
}

.hero p {
    font-size: .97rem;
    color: var(--gray-500);
    line-height: 1.75;
    max-width: 440px;
    margin-bottom: 36px
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hero-trust {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-100);
    flex-wrap: wrap
}

#hero-img{
   position: absolute;
   z-index: 50;

   max-width: 550px;
   top: 60px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    color: var(--gray-500)
}

.trust-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 2
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px
}

.pill {
    background: var(--orange-light);
    color: var(--orange);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .04em;
    padding: 5px 12px;
    border-radius: 100px
}

/* SECTION HEADER */
.section-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--orange);
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -.02em;
}

.section-sub {
    font-size: .9rem;
    color: var(--gray-500);
    margin-top: 10px;
    line-height: 1.7;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.title-line {
    width: 40px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    margin: 14px auto 0;
}

.info-strip {
  background: #fff;
  padding: 30px 0;
  border-bottom: 1px solid var(--gray-300);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.info-col {
  text-align: center;
  padding: 0 20px;
}

.info-col h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.info-col p {
  font-size: 0.95rem;
  color: var(--gray-500);
}

.info-col.bordered {
  border-left: 1px solid var(--gray-300);
  border-right: 1px solid var(--gray-300);
}

/* CAROUSEL */
.carousel-section {
    background: var(--white);
    padding: 80px 0;
}

.carousel-section .sec-head {
    text-align: center;
    margin-bottom: 48px;
}

.carousel-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform .6s var(--ease);
}

.slide {
    min-width: 100%;
    overflow: hidden;
}

.slide-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 440px;
}

.slide-img {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9rem;
    user-select: none;
    max-width: 500px;
    max-height: 500px;
}

.slide-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slide-content {
    padding: 56px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
    text-align: left;
}

.slide-tag {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px
}

.slide-tag::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--orange);
    border-radius: 1px
}

.slide-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -.02em
}

.slide-content h2 em {
    font-style: italic;
    color: var(--orange)
}

.slide-content p {
    font-size: .88rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 24px;
    text-align: justify;
}

.slide-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 26px
}

.price-from {
    font-size: .78rem;
    color: var(--gray-500);
    text-decoration: line-through
}

.price-main {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--orange)
}

.price-suf {
    font-size: .78rem;
    color: var(--gray-500)
}

.car-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px
}

.car-btn {
    width: 42px;
    height: 42px;
    margin: 5px;
    background: var(--white);
    border: 1.5px solid var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, border-color .2s, transform .2s
}

.car-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.05)
}

.car-btn:hover svg {
    stroke: white
}

.car-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--gray-700);
    fill: none;
    stroke-width: 2;
    transition: stroke .2s
}

.car-dots {
    display: flex;
    gap: 6px;
}

.c-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-500);
    cursor: pointer;
    transition: background .25s, width .25s;
    border: none
}

.c-dot.active {
    background: var(--orange);
    width: 24px;
    border-radius: 4px
}

/* PRODUCTS */
.home-page .products {
    padding: 80px 0;
    background: var(--off-white);
}

.products-page .products {
    padding: 30px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 20px;
    margin-top: 48px
}

.p-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-300);
    transition: transform .2s var(--ease), box-shadow .3s, border-color .3s;
    cursor: pointer;
    position: relative
}

.p-card:hover {
    box-shadow: 0 20px 48px rgba(0, 0, 0, .2);
    transform: translateY(-6px) !important;
}

.p-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--orange);
    color: white;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 100px;
    z-index: 2
}

.p-img {
    height: 180px;
    background: var(--orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem
}

.p-body {
    padding: 16px 18px 18px
}

.p-name {
    font-size: .87rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 10px;
    text-align: left;

    min-height: 30px;
}

.p-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange)
}

.p-price small {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .75rem;
    font-weight: 400;
    color: var(--gray-500);
    margin-left: 2px
}

.p-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-300)
}

.p-link {
    font-size: .76rem;
    color: var(--orange);
    font-weight: 600;
    align-items: center;
    gap: 4px;
    transition: gap .2s
}

.p-link:hover {
    gap: 8px;
    font-weight: 1000;
    font-size: .8rem;
}

.p-link svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5
}

.p-add {
    width: 30px;
    height: 30px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s;
    flex-shrink: 0
}

.p-add:hover {
    background: var(--orange-dark);
    transform: scale(1.12)
}

.p-add svg {
    width: 13px;
    height: 13px;
    stroke: white;
    fill: none;
    stroke-width: 3
}

.p-img {
    height: 180px;
    background: #fafafa;
}

.p-img img {
    object-fit: contain;
    padding: 20px;
}

.prev,
.next {
    display: none;
}

.product-modal{
    position: fixed;
    inset: 0;

    padding: 24px;

    overflow-y: auto;

    background: rgba(0,0,0,.65);
    backdrop-filter: blur(4px);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    pointer-events: none;

    transition: .25s;

    z-index: 9999;
}

.product-modal.show{
    opacity: 1;
    pointer-events: all;
}

.product-modal-box{
    width: 100%;
    max-width: 820px;

    max-height: calc(100vh - 48px);

    overflow-y: auto;

    background: #fff;

    border-radius: 28px;

    position: relative;
}

.product-modal-box{
    scrollbar-width: none;
}

.product-modal-box::-webkit-scrollbar{
    display:none;
}

.product-modal.show .product-modal-box{
    transform: translateY(0);
}

.modal-header{
    height: 78px;

    background: var(--orange);

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 28px;
}

.modal-header h3{
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
}

.modal-close{
    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: var(--orange-light);

    color: var(--text);

    cursor: pointer;

    transition: .2s;
}

.modal-close:hover{
    background: var(--light-orange);
    transform: rotate(90deg);
}

.modal-body{
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 36px;

    padding: 34px;
}

.modal-img{
    background: var(--off-white);

    border-radius: 22px;

    padding: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 320px;
}

.modal-img img{
    width: 120%;
    max-height: 330px;
    object-fit: contain;
}

.modal-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-title{
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 18px;
    text-align: left;

    color: var(--black);
}

.modal-price{
    color: var(--orange);

    font-size: 1.4rem;
    font-weight: 800;

    margin-bottom: 20px;
}

.modal-desc{
    color: var(--gray-500);
    font-size: .98rem;
}

.modal-beneficios {
    color: var(--gray-500);
    margin: 18px 0;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-comp {
    font-size: 0.8rem;
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-500);
}

.modal-warning{
    margin: 0 34px 34px;

    background:
    linear-gradient(
        180deg,
        #fff7f0,
        #fff1e6
    );

    border: 1px solid rgba(255,152,0,.15);

    color: #b96a1b;

    font-size: .8rem;
    line-height: 1.7;

    padding: 18px 20px;

    border-radius: 18px;
}

#cta-produtos {
    background: var(--orange);
    background-image: url(../img/pattern-radial.png);
    background-size: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px 20px;
    min-height: 330px;
    min-width: 200px;

}

#cta-produtos:hover {
    background-color: var(--orange-dark);
}

#cta-produtos p {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
}

#cta-produtos span {
    font-size: .8rem;
    font-weight: 500;
    color: var(--orange-light);
    margin-bottom: 22px;
    line-height: 1.6;
}

.cta-btn {
    background: white;
    color: var(--orange);
    padding: 10px 22px;
    border-radius: 100px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .02em;
    transition: background .22s, transform .2s, box-shadow .2s;
    text-align: center;
}

/* CATEGORIES */
.cats {
    padding: 80px 0;
    background: var(--white)
}

.cats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px
}

.cat-card {
    border-radius: 16px;
    padding: 32px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .2s var(--ease), box-shadow .3s;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.cat-card::after{
    content:'';
    position:absolute;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.72) 0%,
        rgba(0,0,0,.45) 35%,
        rgba(0,0,0,.15) 65%,
        rgba(0,0,0,.05) 100%
    );

    z-index:0;
    
}

.cat-card > *{
    position:relative;
    z-index:1;
}

.cat-card:hover {
    box-shadow: 0 10px 48px rgba(0, 0, 0, .5);
    transform: translateY(-6px) !important;
}

.cat-card:hover .cat-arrow {
    transform: translateX(4px)
}

.cb1,
.cb2,
.cb3,
.cb4,
.cb5,
.cb6{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cb1 {
    background-image: url(../img/categories/skincare.webp);
}

.cb2 {
    background-image: url(../img/categories/emagrecedor.webp);
}

.cb3 {
    background-image: url(../img/categories/cabelos-barba-unhas.webp);
}

.cb4 {
    background-image: url(../img/categories/treinos.webp);
}

.cb5 {
    background-image: url(../img/categories/saude-mulher.webp);
}

.cb6 {
    background-image: url(../img/categories/vitaminas.webp);
}

.cat-desc {
    font-size: .75rem;
    font-weight: 500;
    color: var(--orange-light);
    line-height: 1.5;
    max-height: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all .3s ease;
    overflow: hidden;
    margin-bottom: 5px;
    text-align: left;
}

.cat-card h3 {
    transition: transform .3s ease;
}

.cat-card:hover h3 {
    transform: translateY(-6px);
}

.cat-card:hover .cat-desc {
    max-height: 60px;
    opacity: 1;
    transform: translateY(0);
}

.cat-num {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--orange-light);
    margin-bottom: 6px
}

.cat-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--orange-light);
    line-height: 1.2;
    margin-bottom: 12px;
    text-align: left;
}

.cat-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    font-size: .75rem;
    font-weight: 600;
    transition: transform .25s
}

.cat-arrow svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5
}

.cat-icon-top {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center
}

.cat-icon-top svg {
    width: 22px;
    height: 22px;
    stroke: rgba(255, 255, 255, .8);
    fill: none;
    stroke-width: 1.8
}

.cat-card h3,
.cat-card .cat-desc,
.cat-card .cat-num,
.cat-card .cat-arrow{
    text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

/* ABOUT */
.about{
    padding:100px 0;
    background:var(--white);
}

/* TOP STATS */
.about-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:20px;
    margin-bottom:28px;
}

.a-stat{
    background: var(--light-orange);

    border-radius:18px;

    padding:28px 24px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;
}

.a-stat strong{
    font-size:3rem;
    line-height:1;

    color:var(--orange);
    font-weight:800;
}

.a-stat span{
    margin-top:8px;

    font-size:.82rem;
    text-transform:uppercase;
    letter-spacing:.08em;

    color: var(--text);
}

.about-grid{
    display:grid;
    grid-template-columns:340px 1fr;
    gap:22px;
}

.about-cards{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.about-card{
    background: var(--light-orange);

    border-radius:18px;

    padding:24px;
}

.about-card h3{
    font-size:1rem;
    font-weight:700;

    margin-bottom:10px;

    color:var(--orange);
}

.about-card p{
    font-size:.92rem;
    line-height:1.6;

    color:var(--gray-700);
}


.about-feature{
    position:relative;

    background: var(--light-orange);

    border-radius:22px;

    overflow:hidden;

    min-height:420px;

    padding:48px;

    display:flex;
    align-items:flex-start;
}

.about-feature-content{
    position:relative;
    z-index:2;
}

.about-feature .section-label{
    color: var(--orange);
}

.about-feature h2{
    font-family:'Playfair Display',serif;

    font-size:2.3rem;
    line-height:1.05;

    margin:14px 0 18px;

    color:var(--text);
}

.about-feature p{
    font-size:1rem;
    line-height:1.8;

    color:var(--gray-700);
}

/* MAP */
.map-section {
    padding: 80px 0;
    background: var(--white);
}

.map-section .container {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: start;
}

.map-info .section-label {
    text-align: left;
}

.map-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 18px;
    text-align: left !important;
}

.map-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
    margin-bottom: 32px;
}

.map-det {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.map-det-icon {
    width: 40px;
    height: 40px;
    background: var(--orange-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.map-det-icon svg {
    width: 17px;
    height: 17px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 2;
}

.map-det h4 {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text);
    margin-bottom: 3px;
}

.map-det p,
.map-det a {
    font-size: .86rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.map-det a:hover {
    color: var(--orange);
}

.map-embed {
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    border: 1px solid var(--gray-100);
    position: relative;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .08)
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none
}

.map-badge {
    position: absolute;
    top: 16px;
    left: 75%;
    background: var(--orange);
    color: white;
    font-size: .75rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(232, 80, 10, .35);
    z-index: 10
}

.map-badge svg {
    width: 13px;
    height: 13px;
    stroke: white;
    fill: none;
    stroke-width: 2
}

/* QUOTE */
.quote-section {
    padding: 80px 0;
    background: var(--off-white)
}

.quote-wrap {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .08);
    display: grid;
    grid-template-columns: 1fr 1.5fr
}

.quote-left {
    background: var(--orange);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.quote-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 16px
}

.quote-left>p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.7
}

.quote-left button {
    display: none;
}

.q-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 32px
}

.q-step {
    display: flex;
    align-items: flex-start;
    gap: 14px
}

.q-num {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0
}

.q-step-text h4 {
    font-size: .85rem;
    font-weight: 600;
    color: white
}

.q-step-text p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .6);
    margin-top: 2px;
    line-height: 1.5
}

.q-left-foot {
    margin-top: auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .15)
}

.q-left-foot p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.5
}

.q-left-foot strong {
    color: white
}

.quote-right {
    padding: 48px 44px
}

.quote-right h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px
}

.quote-right .sub {
    font-size: .85rem;
    color: var(--gray-500);
    margin-bottom: 32px
}

.steps-ind {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 32px
}

.s-step {
    display: flex;
    align-items: center;
    gap: 8px
}

.s-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    border: 2px solid var(--gray-300);
    color: var(--gray-300);
    transition: .3s;
    flex-shrink: 0
}

.s-step.active .s-num {
    background: var(--orange);
    border-color: var(--orange);
    color: white
}

.s-step.done .s-num {
    background: var(--orange-light);
    border-color: var(--orange);
    color: var(--orange)
}

.s-lbl {
    font-size: .75rem;
    color: var(--gray-300);
    font-weight: 500;
    transition: .3s
}

.s-step.active .s-lbl {
    color: var(--orange);
    font-weight: 600
}

.s-step.done .s-lbl {
    color: var(--orange)
}

.s-line {
    flex: 1;
    height: 2px;
    background: var(--gray-300);
    margin: 0 8px;
    min-width: 20px;
    transition: .3s
}

.s-line.done {
    background: var(--orange)
}

.form-panel {
    display: none;
    animation: fadeIn .35s ease
}

.form-panel.active {
    display: block
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.f-group {
    margin-bottom: 16px
}

.f-group label {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 6px
}

.f-group input,
.f-group textarea,
.f-group select {
    width: 100%;
    background: var(--gray-50);
    border: 1.5px solid var(--gray-100);
    border-radius: 10px;
    padding: 12px 15px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .87rem;
    color: var(--text);
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
}

.f-group input:focus,
.f-group textarea:focus,
.f-group select:focus {
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(232, 80, 10, .1)
}

.f-group textarea {
    resize: vertical;
    min-height: 90px
}

.file-upload {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.file-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    max-width: fit-content;

    padding: 12px 16px;
    border-radius: 12px;

    background: var(--orange);
    color: var(--orange-light) !important;

    cursor: pointer;
    transition: 0.3s;
}

.file-label:hover {
    background-color: var(--orange-dark);
    box-shadow: 0 4px 12px rgba(232, 80, 10, 0.35);
}

.file-name {
    font-size: 12px;
    color: var(--gray-700);
}

.file-label.uploaded {
    background: var(--success-green);
    color: var(--off-white);
}

.file-label.uploaded i {
    color: var(--off-white);
}

.filter-search {
    position: relative;
    margin: 2%;
}

.filter-search input {
    width: 100%;
    padding: 14px 16px 14px 44px;

    border-radius: 14px;
    border: 1px solid #e5e7eb;

    background: #fff;
    font-family: inherit;
    font-size: 14px;

    transition: 0.25s ease;
}

.filter-search i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 16px;
}

.filter-search input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 142, 1, 0.15);
}

.filter-search input::placeholder {
    color: #9ca3af;
}

.filter-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.cat-pill {
    background: var(--gray-50);
    border: 1.5px solid var(--gray-100);
    color: var(--gray-700);
    font-size: .78rem;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 100px;
    cursor: pointer;
    transition: all .2s
}

.cat-pill:hover {
    border-color: var(--orange);
    color: var(--orange)
}

.cat-pill.sel {
    background: var(--orange-light);
    border-color: var(--orange);
    color: var(--orange);
    font-weight: 600
}

.form-nav {
    display: flex;
    gap: 12px;
    margin-top: 24px
}

.btn-next {
    background: var(--orange);
    color: white;
    padding: 12px 28px;
    border-radius: 100px;
    font-size: .85rem;
    font-weight: 600;
    transition: background .2s, transform .2s
}

.btn-next:hover:not(:disabled) {
    background: var(--orange-dark);
    transform: translateY(-1px)
}

.btn-next:disabled {
    opacity: .45;
    cursor: not-allowed
}

.btn-prev {
    background: var(--gray-50);
    color: var(--gray-700);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: .85rem;
    font-weight: 500;
    border: 1.5px solid var(--gray-100);
    transition: border-color .2s, color .2s
}

.btn-prev:hover {
    border-color: var(--orange);
    color: var(--orange)
}

.success-panel {
    display: none;
    text-align: center;
    padding: 40px 20px
}

.success-panel.active {
    display: block;
    animation: fadeIn .5s ease
}

.success-icon {
    width: 72px;
    height: 72px;
    background: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px
}

.success-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--orange-light);
    fill: none;
    stroke-width: 2.5
}

.success-panel h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px
}

.success-panel p {
    font-size: .88rem;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 380px;
    margin: 0 auto 24px
}

/* FAQ */
.faq-strip {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-300)
}

.faq-strip .container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.faq-item {
    border: 1.5px solid var(--gray-300);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s
}

.faq-item.open {
    border-color: rgba(232, 80, 10, .2)
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    background: var(--white);
    transition: background .2s
}

.faq-item.open .faq-q {
    background: var(--orange-light)
}

.faq-q span {
    font-size: .87rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4
}

.faq-q svg {
    width: 18px;
    height: 18px;
    stroke: var(--gray-300);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    transition: transform .3s, stroke .2s
}

.faq-item.open .faq-q svg {
    transform: rotate(45deg);
    stroke: var(--orange)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease)
}

.faq-item.open .faq-a {
    max-height: 200px
}

.faq-a p {
    padding: 0 20px 16px;
    font-size: .84rem;
    color: var(--gray-500);
    line-height: 1.7
}

/* WA */
.wa-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    background: #25d366;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popIn .5s var(--ease) 1s both;
    transition: background .22s, transform .2s, box-shadow .2s !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.95);
    transition:
        opacity 0.35s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.35s;
}

.wa-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.wa-btn:hover {
    transform: translateY(-6px) !important;
    background-color: #1da54f;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(.4)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.wa-btn:hover {
    transform: translateY(-6px);
    background-color: #1da54f;
}

.wa-btn svg {
    width: 26px;
    height: 26px;
    fill: white
}

/* FOOTER */
footer {
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.footer-clean {
    background: linear-gradient(180deg, #1a1a1a, #111);
    color: #aaa;
    padding: 30px 0 10px;
}

.footer-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.bordered {
    border-left: 1px solid #2a2a2a;
    padding-left: 40px;
}

.footer-col h4 {
    color: var(--orange);
    font-size: .85rem;
    margin-bottom: 16px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: .8rem;
    color: #bbb;
}

.info-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.8;
}

.social-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.social-grid a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.social-grid svg {
    width: 24px;
    height: 24px;
    fill: var(--off-white);
}

.social-grid a:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.footer-right {
    text-align: justify;
    align-items: center;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 14px;
}

.footer-text {
    font-size: .85rem;
    line-height: 1.6;
    color: #bbb;
    max-width: 280px;
}

.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 14px;
    text-align: center;
    font-size: .75rem;
    color: #666;
}

.footer-bottom a {
    color: var(--orange);
    font-weight: 600;
}

.footer-center .footer-title {
    align-self: flex-start;
    text-align: left;

}

.footer-center .social-icons {
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-right {
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: justify;
}

.footer-modal{
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,.7);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    pointer-events: none;

    transition: .25s;
    z-index: 99999;
}

.footer-modal.show{
    opacity: 1;
    pointer-events: all;
}

.footer-modal-box{
    width: calc(100% - 32px);
    max-width: 520px;

    background: var(--text);
    border-radius: 24px;

    padding: 28px;

    position: relative;
}

.footer-modal-box h3{
    color: var(--orange);
    margin-bottom: 24px;
}

.footer-modal-section h4{
    font-size: .9rem;
    color: var(--orange);
    margin-bottom: 10px;
}

.footer-modal-section p{
    line-height: 1.7;
    font-size: .8rem;
    color: var(--gray-300);
}

.footer-modal-section img {
    display: block;
    max-width: 60%;
    margin: 20px auto 0;
}

.info-item-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: .8rem;
    line-height: 1.7;
    color: var(--gray-300);
}

.info-item-footer svg {
    width: 18px;
    height: 18px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.8;
}

.footer-modal-close{
    position: absolute;
    top: 12px;
    right: 12px;

    width: 40px;
    height: 40px;

    border: none;
    border-radius: 50%;

    background: var(--orange);
    cursor: pointer;
}

.footer-modal-close:hover {
    background: var(--orange-dark);
    box-shadow: 0 4px 12px rgba(232, 80, 10, .35);
    transform: translateY(-2px);
}

/* ANIMATIONS */
.reveal,
.reveal-l,
.reveal-r {
    opacity: 0;
    transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.reveal {
    transform: translateY(28px)
}

.reveal-l {
    transform: translateX(-36px)
}

.reveal-r {
    transform: translateX(36px)
}

.reveal.in,
.reveal-l.in,
.reveal-r.in {
    opacity: 1;
    transform: none
}

[d="1"] {
    transition-delay: .08s
}

[d="2"] {
    transition-delay: .16s
}

[d="3"] {
    transition-delay: .24s
}

[d="4"] {
    transition-delay: .32s
}

[d="5"] {
    transition-delay: .4s
}

/* MOBILE MENU */
.mob-menu {
    position: fixed;
    top: 16px;
    right: 16px;
    padding: 3%;

    width: 65%;
    height: 73%;

    background: white;
    border-radius: 20px;

    transform: scale(0.8) translateY(-20px);
    transform-origin: top right;

    opacity: 0;
    pointer-events: none;

    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.25s ease;

    z-index: 3000;
}

.mob-menu.open {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mob-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);

    z-index: 2000;

    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.mob-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mob-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px
}

.mob-head .foto {
    max-width: 150px !important;
}

.mob-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 3.5%;
    margin: 0px 5px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.mob-close svg {
    width: 17px;
    height: 17px;
    stroke: var(--orange-light);
    fill: none;
    stroke-width: 2
}

.mob-head img {
    max-width: 150px;
}

.mob-nav-item {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-300);
    line-height: 1
}

.mob-nav-item i {
    margin-right: 10px;
}

.mob-nav a:last-child {
    border: none
}

.mob-foot {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .hero-right img{
        min-width: 600px;
    }


    .about .container {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .map-section .container {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .quote-wrap {
        grid-template-columns: 1fr
    }

    .quote-left {
        display: none
    }

    .quote-right {
        padding: 24px 20px;
    }

    .quote-section {
    padding: 48px 0;
    }

    .quote-wrap {
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0,0,0,.08);
    }

    .quote-right {
        padding: 28px 20px;
    }

    .quote-right h3 {
        font-size: 1.3rem;
        margin-bottom: 4px;
    }

    .quote-right .sub {
        font-size: .8rem;
        margin-bottom: 20px;
    }

    .steps-ind {
        margin-bottom: 24px;
    }

    .s-lbl {
        display: none;
    }

    .s-num {
        width: 32px;
        height: 32px;
        font-size: .8rem;
    }

    .steps-ind::after {
        display: none;
    }

    .f-group label {
        font-size: .7rem;
    }

    .f-group input,
    .f-group textarea,
    .f-group select {
        padding: 11px 13px;
        font-size: .85rem;
    }

    .cat-pill {
        padding: 9px 14px;
        min-height: 40px;
    }

    .btn-next,
    .btn-prev {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px;
        font-size: .9rem;
    }

    .success-panel {
        padding: 24px 12px;
    }

    .success-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 14px;
    }

    .success-panel h3 {
        font-size: 1.4rem;
    }

    .footer-top .container {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }

    .cats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .testi-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .faq-strip .container {
        grid-template-columns: 1fr
    }
}

@media(max-width:768px) {

    .nav-center,
    .nav-right .btn-ghost,
    .nav-right .btn-orange {
        display: none;
    }

    .hamburger {
        display: flex;
    }


    .hero-right img {
        min-width: 525px !important;
        right: 0px;
        top: 15px;
    }

    .hero-badge, .hero-left p {
        display: none;
    }

    .hero-left {
        margin-top: 300px;
        align-items:center;
        text-align:center;
    }

    .hero-left h1 {
        font-size: 2rem;
        text-align:center;
    }

    .hero h1 br{
        display:none;
    }

    #hero-btn-right, #hero-btn-left {
       width: 100%;
       padding: 20px 32px;
       text-align: center;
       justify-content: center;

       font-size: 0.85rem;
       font-weight: 700;
    }

    #hero-btn-right {
        border: 2px solid var(--orange);
        color: var(--orange);
    }

    .slide-inner {
        grid-template-columns: 1fr;
    }

    .slide-img {
        height: 180px;
    }

    .slide-tag {
        font-size: .7rem;
    }

    .price-main {
        font-size: 1.6rem;
    }

    .slide-content {
        padding: 28px 24px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-col.bordered {
        border: none;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        padding: 20px;
    }

    .bordered {
        padding-left: 30px !important;
    }

    .carousel-mb {
        position: relative;
    }

    .products-page .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .home-page .products-grid {
        position: relative;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;

        padding: 0 60px;
        overflow-y: hidden;
        touch-action: pan-x;
    }

    .home-page .products-grid::-webkit-scrollbar {
        display: none;
    }

    .home-page .p-card {
        flex: 0 0 80%;
        scroll-snap-align: center;
    }

    .p-price {
        font-size: 1.1rem;
    }

    .track {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        gap: 16px;
    }

    .car-btn {
        top: 50%;
        z-index: 10;
        border: 1px solid var(--gray-300);
    }

    .cats-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;

        scroll-snap-type: x mandatory;
        overflow-y: hidden;

        touch-action: pan-x;
    }

    .cats-grid::-webkit-scrollbar {
        display: none;
    }

    .cat-card {
        max-width: 80%;
        flex-shrink: 0;
        min-height: 350px;

        
        padding: 28px;
        justify-content: flex-end;

        scroll-snap-align: center;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .f-row {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 20px;
    }

    .topbar .container {
        justify-content: center;
    }

    .quote-left button {
        align-items: center;
        margin-top: 15px;
        display: block;
        background-color: var(--orange-light);
        color: var(--orange);
    }

    .quote-wrap{
        display:flex;
        flex-direction:column;
    }

    .quote-left{
        display:flex;
    }

    .quote-right{
        display:none;
    }

    .quote-wrap.show-form .quote-left{
        display:none;
    }

    .quote-wrap.show-form .quote-right{
        display:block;
    }

     .about-stats{
        grid-template-columns:1fr;
    }

    .about-grid{
        grid-template-columns:1fr;
    }

    .about-feature{
        min-height:520px;
        padding:32px;
    }

    .about-feature h2{
        font-size:2.2rem;
    }

    .about-feature img{
        width:300px;

        right:-30px;
        bottom:-10px;
    }

    .q-left-foot {
        margin-top: 5px;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, .15)
    }

    .cat-pills {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .product-modal-box{
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-body{
        grid-template-columns: 1fr;
        gap: 20px;

        padding: 22px;
    }

    .modal-img{
        min-height: auto;
    }

    .modal-img img{
        max-height: 220px;
    }

    .modal-title{
        font-size: 1.45rem;
    }

    .modal-price{
        font-size: 1.2rem;
    }

    .modal-warning{
        margin: 0 22px 22px;
    }

    .footer-left,
    .footer-right {
        display: none;
    }

    .footer-center {
        border-left: none !important;
    }

    .map-badge {
        left: 56% !important;
    }

    .filter-categories {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .p-img img {
        max-width: 250px;
    }

    .filter-btn {
        white-space: nowrap;
    }

    .faq-item {
        text-align: left !important;
    }

    .footer-modal-content{
        grid-template-columns: 1fr;
        gap: 28px;

        padding: 36px 24px;
    }

    .footer-modal-divider{
        width: 100%;
        height: 1px;
    }

    .footer-modal-col h3{
        font-size: 1.25rem;
    }

}