/* =========================================================
   ROOT
========================================================= */

:root {

    --red: #e32019;

    --red-dark: #b9140f;

    --orange: #ff5a00;

    --cream: #f4f0e9;

    --cream-light: #faf8f4;

    --cream-dark: #ebe5dc;

    --white: #ffffff;

    --black: #111111;

    --dark: #191919;

    --gray: #777777;

    --border: #e5dfd7;

}



/* =========================================================
   GENERAL
========================================================= */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: "Inter", sans-serif;

    background: var(--cream-light);

    color: var(--black);

    overflow-x: hidden;

}


body.cart-open {

    overflow: hidden;

}


a {

    text-decoration: none;

}


button {

    font-family: inherit;

}


img {

    max-width: 100%;

}


h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: "Barlow Condensed", sans-serif;

}



/* =========================================================
   HEADER
========================================================= */

.main-header {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    border-bottom: 1px solid rgba(255,255,255,.15);

}


.main-header .navbar {

    min-height: 100px;

}


.navbar-brand {

    display: flex;

    align-items: center;

    color: white;

}


.navbar-brand:hover {

    color: white;

}


.brand-fire {

    font-size: 39px;

    line-height: 1;

    margin-right: 8px;

    color: var(--red);

    filter:
        drop-shadow(0 0 15px rgba(227,32,25,.7));

}


.brand-name {

    font-family: "Barlow Condensed", sans-serif;

    font-size: 31px;

    font-weight: 800;

    letter-spacing: -1px;

}


.brand-name strong {

    color: var(--red);

}


.navbar-nav {

    gap: 3px;

}


.nav-link {

    position: relative;

    color: rgba(255,255,255,.82) !important;

    font-size: 13px;

    font-weight: 500;

    padding: 14px 12px !important;

    transition: .3s;

}


.nav-link:hover,
.nav-link.active {

    color: white !important;

}


.nav-link.active::after {

    content: "";

    position: absolute;

    bottom: 5px;

    left: 50%;

    transform: translateX(-50%);

    width: 18px;

    height: 2px;

    background: var(--red);

}



/* =========================================================
   HEADER CART
========================================================= */

.header-cart {

    height: 48px;

    padding: 0 15px;

    border: 1px solid rgba(255,255,255,.25);

    background: rgba(0,0,0,.15);

    backdrop-filter: blur(10px);

    color: white;

    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 12px;

    transition: .3s;

}


.header-cart > i {

    font-size: 18px;

}


.header-cart strong {

    width: 22px;

    height: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--red);

    color: white;

    font-size: 10px;

}


.header-cart:hover {

    background: var(--red);

    border-color: var(--red);

}



/* =========================================================
   HERO
========================================================= */

.hero-section {

    width: 100%;

    height: 100vh;

    min-height: 700px;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #111;

}


.hero-video {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(0,0,0,.52),
            rgba(0,0,0,.20),
            rgba(0,0,0,.40)
        ),

        linear-gradient(
            0deg,
            rgba(0,0,0,.45),
            transparent 50%
        );

}


.hero-content {

    position: relative;

    z-index: 5;

    width: 100%;

    max-width: 1100px;

    text-align: center;

    color: white;

    padding: 80px 20px 0;

}


.hero-small {

    display: block;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 9px;

    margin-bottom: 27px;

    opacity: .85;

}


.hero-content h1 {

    font-size: clamp(80px, 10vw, 155px);

    font-weight: 900;

    line-height: .78;

    letter-spacing: -5px;

    margin: 0;

    text-shadow:
        0 10px 40px rgba(0,0,0,.3);

}


.hero-content h1 strong {

    display: block;

    color: var(--red);

    text-shadow:
        0 5px 35px rgba(227,32,25,.40);

}


.hero-line {

    width: 60px;

    height: 2px;

    background: var(--red);

    margin: 35px auto 25px;

}


.hero-content p {

    margin: 0;

    font-size: 10px;

    letter-spacing: 5px;

    font-weight: 500;

}


.hero-content p span {

    color: var(--red);

    margin: 0 12px;

}


.hero-scroll {

    position: absolute;

    z-index: 5;

    left: 50%;

    bottom: 35px;

    transform: translateX(-50%);

    color: white;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 9px;

    font-size: 8px;

    letter-spacing: 4px;

    opacity: .75;

}


.hero-scroll:hover {

    color: white;

    opacity: 1;

}


.hero-scroll i {

    font-size: 20px;

    color: var(--red);

    animation: scrollMove 1.5s ease-in-out infinite;

}


@keyframes scrollMove {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(7px);

    }

}



/* =========================================================
   COMMON
========================================================= */

.section-label {

    display: block;

    color: var(--red);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 5px;

    margin-bottom: 20px;

}


.main-title {

    font-size: clamp(60px, 6vw, 95px);

    line-height: .82;

    letter-spacing: -3px;

    font-weight: 900;

    color: var(--black);

    margin: 0;

}


.main-title strong {

    color: var(--red);

}



/* =========================================================
   INTRO
========================================================= */

.intro-section {

    background: var(--cream-light);

    padding: 130px 0 80px;

}


.intro-description {

    max-width: 470px;

    color: var(--gray);

    line-height: 1.9;

    font-size: 14px;

}


.intro-sign {

    margin-top: 25px;

    font-size: 10px;

    letter-spacing: 3px;

    font-weight: 700;

}


.intro-sign i {

    color: var(--red);

    font-size: 20px;

    margin-right: 8px;

}



/* =========================================================
   FEATURES
========================================================= */

.features-section {

    padding: 20px 0 130px;

    background: var(--cream-light);

}


.feature-wrapper {

    border: 1px solid var(--border);

    background: white;

}


.feature-box {

    position: relative;

    min-height: 310px;

    padding: 45px 40px;

    border-right: 1px solid var(--border);

    overflow: hidden;

    transition: .4s;

}


.feature-wrapper > div:last-child .feature-box {

    border-right: 0;

}


.feature-box:hover {

    background: var(--red);

    color: white;

}


.feature-number {

    position: absolute;

    right: 20px;

    top: 10px;

    font-family: "Barlow Condensed";

    font-size: 75px;

    font-weight: 900;

    color: rgba(0,0,0,.035);

}


.feature-icon {

    color: var(--red);

    font-size: 42px;

    margin-bottom: 35px;

    transition: .3s;

}


.feature-box:hover .feature-icon {

    color: white;

}


.feature-box h3 {

    font-size: 29px;

    font-weight: 700;

}


.feature-box p {

    color: #888;

    font-size: 13px;

    line-height: 1.8;

    max-width: 270px;

    transition: .3s;

}


.feature-box:hover p {

    color: rgba(255,255,255,.75);

}


.feature-box:hover .feature-number {

    color: rgba(255,255,255,.08);

}



/* =========================================================
   PRODUCTS
========================================================= */

.products-section {

    background: var(--cream);

    padding: 130px 0;

}


.products-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 60px;

}


.products-header-right {

    max-width: 390px;

}


.products-header-right p {

    color: var(--gray);

    font-size: 14px;

    line-height: 1.8;

}


.products-header-right > span {

    font-size: 9px;

    letter-spacing: 3px;

    font-weight: 700;

}


.products-header-right i {

    color: var(--red);

    font-size: 17px;

    margin-right: 6px;

}



/* PRODUCT CARD */

.product-card {

    height: 100%;

    background: white;

    border: 1px solid #e4ded6;

    transition: .4s;

}


.product-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 30px 70px rgba(35,25,15,.10);

}


.product-image {

   

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    background:

        radial-gradient(
            circle,
            white,
            #f0ebe4
        );

}

.product-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .5s;
}


.product-card:hover .product-image img {

    transform: scale(1.06);

}


.product-badge {

    position: absolute;

    top: 20px;

    left: 20px;

    z-index: 4;

    background: var(--red);

    color: white;

    padding: 7px 11px;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1px;

}


.product-badge.orange {

    background: var(--orange);

}


.product-bg-fire {

    position: absolute;

    right: -25px;

    bottom: -70px;

    font-size: 180px;

    color: rgba(227,32,25,.045);

}


.product-content {

    padding: 28px;

}


.product-category {

    color: #999;

    font-size: 8px;

    letter-spacing: 2px;

}


.product-content h3 {

    color: var(--black);

    font-size: 28px;

    font-weight: 700;

    margin: 6px 0 10px;

}


.product-weight {

    display: inline-block;

    background: #f1eee9;

    color: #555;

    padding: 5px 9px;

    font-size: 9px;

    font-weight: 700;

}


.product-bottom {

    margin-top: 28px;

    padding-top: 22px;

    border-top: 1px solid #eee9e2;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 15px;

}


.product-price small {

    display: block;

    color: #aaa;

    font-size: 8px;

    margin-bottom: 3px;

}


.product-price strong {

    display: block;

    color: var(--black);

    font-family: "Barlow Condensed";

    font-size: 28px;

}


.add-cart {

    border: 0;

    background: var(--black);

    color: white;

    padding: 14px 17px;

    font-size: 10px;

    font-weight: 600;

    display: flex;

    align-items: center;

    gap: 8px;

    transition: .3s;

}


.add-cart:hover {

    background: var(--red);

}



/* =========================================================
   ABOUT
========================================================= */

.about-section {

    padding: 140px 0;

    background: white;

}


.about-visual {

    position: relative;

    padding-right: 40px;

}


.about-image {

    height: 600px;

    overflow: hidden;

}


.about-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.about-badge {

    position: absolute;

    right: 0;

    bottom: 50px;

    width: 180px;

    height: 180px;

    background: var(--red);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

}


.about-badge > i {

    font-size: 45px;

}


.about-badge strong {

    display: block;

    font-family: "Barlow Condensed";

    font-size: 40px;

    line-height: .8;

}


.about-badge span {

    font-size: 8px;

    letter-spacing: 2px;

}


.about-content {

    padding-left: 40px;

}


.about-content p {

    color: var(--gray);

    line-height: 1.9;

    font-size: 14px;

    max-width: 520px;

    margin-top: 30px;

}


.red-link {

    margin-top: 15px;

    display: inline-flex;

    align-items: center;

    gap: 25px;

    padding-bottom: 6px;

    border-bottom: 1px solid var(--red);

    color: var(--black);

    font-size: 11px;

    font-weight: 600;

}


.red-link:hover {

    color: var(--red);

}



/* =========================================================
   USAGE
========================================================= */

.usage-section {

    padding: 130px 0;

    background: var(--cream-light);

}


.usage-title .main-title strong {

    display: block;

}


.usage-card {

    min-height: 330px;

    position: relative;

    background: white;

    border: 1px solid var(--border);

    padding: 45px 35px;

    transition: .4s;

}


.usage-card > span {

    position: absolute;

    right: 25px;

    top: 15px;

    font-family: "Barlow Condensed";

    font-size: 70px;

    font-weight: 900;

    color: rgba(0,0,0,.04);

}


.usage-icon {

    font-size: 45px;

    color: var(--red);

    margin-bottom: 40px;

}


.usage-card h3 {

    font-size: 30px;

    font-weight: 700;

}


.usage-card p {

    color: #888;

    font-size: 13px;

    line-height: 1.8;

}


.usage-card:hover,
.usage-card.active {

    background: var(--red);

    color: white;

    transform: translateY(-7px);

}


.usage-card:hover .usage-icon,
.usage-card.active .usage-icon {

    color: white;

}


.usage-card:hover p,
.usage-card.active p {

    color: rgba(255,255,255,.75);

}


.usage-card:hover > span,
.usage-card.active > span {

    color: rgba(255,255,255,.08);

}



/* =========================================================
   SLOGAN
========================================================= */

.slogan-section {

    padding: 140px 0;

    background: #171717;

    overflow: hidden;

}


.slogan-content {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 30px;

    color: white;

}


.slogan-content > i {

    color: var(--red);

    font-size: 100px;

    filter:
        drop-shadow(0 0 30px rgba(227,32,25,.4));

}


.slogan-content h2 {

    font-size: clamp(70px, 9vw, 145px);

    line-height: .8;

    letter-spacing: -5px;

    font-weight: 900;

    margin: 0;

}


.slogan-content h2 strong {

    color: var(--red);

}



/* =========================================================
   CERTIFICATES
========================================================= */

.certificate-section {

    padding: 130px 0;

    background: white;

}


.certificate-description {

    color: var(--gray);

    font-size: 14px;

    line-height: 1.8;

}


.certificate-card {

    min-height: 270px;

    border: 1px solid var(--border);

    padding: 35px;

    transition: .3s;

}


.certificate-card > i {

    font-size: 38px;

    color: var(--red);

    display: block;

    margin-bottom: 40px;

}


.certificate-card > span {

    display: block;

    color: #999;

    font-size: 8px;

    letter-spacing: 3px;

}


.certificate-card h3 {

    font-size: 28px;

    margin: 7px 0 25px;

}


.certificate-card a {

    color: var(--black);

    font-size: 10px;

    font-weight: 600;

    display: inline-flex;

    gap: 10px;

}


.certificate-card:hover {

    border-color: var(--red);

    transform: translateY(-5px);

}



/* =========================================================
   DEALER
========================================================= */

.dealer-section {

    padding: 80px 0;

    background: var(--cream);

}


.dealer-box {

    position: relative;

    overflow: hidden;

    min-height: 390px;

    padding: 65px 70px;

    background:

        linear-gradient(
            120deg,
            #bb130e,
            var(--red)
        );

    color: white;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.dealer-box::after {

    content: "ATEŞ";

    position: absolute;

    right: 130px;

    top: -80px;

    font-family: "Barlow Condensed";

    font-size: 280px;

    font-weight: 900;

    color: rgba(255,255,255,.04);

}


.dealer-content {

    position: relative;

    z-index: 2;

}


.dealer-content > span {

    font-size: 9px;

    letter-spacing: 4px;

}


.dealer-content h2 {

    font-size: clamp(60px, 6vw, 90px);

    font-weight: 900;

    line-height: .82;

    margin: 18px 0 25px;

}


.dealer-content h2 strong {

    color: #191919;

}


.dealer-content p {

    font-size: 13px;

    opacity: .8;

}


.dealer-button {

    position: relative;

    z-index: 3;

    flex-shrink: 0;

    width: 155px;

    height: 155px;

    border-radius: 50%;

    background: #171717;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    font-family: "Barlow Condensed";

    font-size: 16px;

    font-weight: 700;

    transition: .4s;

}


.dealer-button i {

    color: var(--red);

}


.dealer-button:hover {

    color: white;

    transform: scale(1.07) rotate(-5deg);

}



/* =========================================================
   FOOTER
========================================================= */

.footer {

    background: #151515;

    color: white;

    padding: 90px 0 25px;

}


.footer-logo {

    color: white;

    font-family: "Barlow Condensed";

    font-size: 35px;

    font-weight: 800;

}


.footer-logo:hover {

    color: white;

}


.footer-logo i,
.footer-logo strong {

    color: var(--red);

}


.footer > .container > .row p {

    color: #777;

    max-width: 390px;

    line-height: 1.8;

    font-size: 13px;

    margin-top: 20px;

}


.footer h5 {

    font-size: 19px;

    margin-bottom: 20px;

}


.footer ul {

    list-style: none;

    padding: 0;

    margin: 0;

}


.footer li {

    margin-bottom: 10px;

}


.footer li a {

    color: #777;

    font-size: 12px;

    transition: .3s;

}


.footer li a:hover {

    color: var(--red);

}


.footer-bottom {

    border-top: 1px solid rgba(255,255,255,.08);

    padding-top: 25px;

    margin-top: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #555;

    font-size: 10px;

}


.footer-bottom i {

    color: var(--red);

}



/* =========================================================
   CART BACKDROP
========================================================= */

.cart-backdrop {

    position: fixed;

    inset: 0;

    z-index: 1998;

    background: rgba(0,0,0,.55);

    backdrop-filter: blur(3px);

    opacity: 0;

    visibility: hidden;

    transition: .35s;

}


.cart-backdrop.active {

    opacity: 1;

    visibility: visible;

}



/* =========================================================
   CART PANEL
========================================================= */

.cart-panel {

    position: fixed;

    top: 0;

    right: 0;

    z-index: 1999;

    width: 30%;

    min-width: 430px;

    height: 100vh;

    background: var(--cream-light);

    display: flex;

    flex-direction: column;

    transform: translateX(100%);

    box-shadow:
        -25px 0 70px rgba(0,0,0,.2);

    transition:
        transform .45s cubic-bezier(.76,0,.24,1);

}


.cart-panel.active {

    transform: translateX(0);

}



/* CART HEADER */

.cart-header {

    min-height: 105px;

    padding: 20px 35px;

    border-bottom: 1px solid var(--border);

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.cart-header span {

    color: var(--red);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 3px;

}


.cart-header h3 {

    font-size: 32px;

    font-weight: 800;

    margin: 0;

}


.cart-header button {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    border: 1px solid #ddd7cf;

    background: transparent;

    transition: .3s;

}


.cart-header button:hover {

    background: var(--black);

    color: white;

    border-color: var(--black);

}



/* CART BODY */

.cart-body {

    flex: 1;

    overflow-y: auto;

    padding: 25px 35px;

}


.empty-cart {

    height: 100%;

    min-height: 400px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

}


.empty-cart > i {

    color: var(--red);

    font-size: 70px;

    margin-bottom: 15px;

}


.empty-cart h4 {

    font-size: 27px;

    font-weight: 700;

}


.empty-cart p {

    color: #999;

    max-width: 260px;

    font-size: 12px;

    line-height: 1.7;

}



/* CART ITEM */

.cart-item {

    display: flex;

    gap: 16px;

    padding: 20px 0;

    border-bottom: 1px solid var(--border);

}


.cart-item-image {

    

    height: 100px;

    flex-shrink: 0;

    background: white;

    display: flex;

    align-items: center;

    justify-content: center;

}


.cart-item-image img {

    width: 100%;

    height: 100%;

    object-fit: contain;

}


.cart-item-info {

    flex: 1;

}


.cart-item-info h4 {

    font-size: 19px;

    font-weight: 700;

    margin: 4px 0;

}


.cart-item-info > strong {

    color: var(--red);

    font-size: 12px;

}


.cart-item-actions {

    display: flex;

    align-items: center;

    margin-top: 13px;

}


.cart-item-actions button {

    width: 28px;

    height: 28px;

    border: 1px solid #ddd;

    background: white;

    font-size: 13px;

}


.cart-item-actions span {

    width: 32px;

    text-align: center;

    font-size: 11px;

}


.cart-item-actions .cart-remove {

    margin-left: auto;

    border: 0;

    background: transparent;

    color: #aaa;

}


.cart-item-actions .cart-remove:hover {

    color: var(--red);

}



/* CART FOOTER */

.cart-footer {

    flex-shrink: 0;

    padding: 25px 35px;

    background: white;

    border-top: 1px solid var(--border);

}


.cart-total {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 18px;

}


.cart-total span {

    color: #777;

    font-size: 12px;

}


.cart-total strong {

    font-family: "Barlow Condensed";

    font-size: 31px;

}


.checkout-button {

    width: 100%;

    border: 0;

    background: var(--red);

    color: white;

    padding: 17px 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    font-size: 12px;

    font-weight: 600;

    transition: .3s;

}


.checkout-button:hover {

    background: var(--black);

}


.cart-footer > p {

    text-align: center;

    color: #aaa;

    font-size: 9px;

    margin: 12px 0 0;

}


.cart-footer > p i {

    color: var(--red);

    margin-right: 5px;

}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .cart-panel {

        width: 45%;

    }

}



/* =========================================================
   MOBILE MENU / TABLET
========================================================= */

@media (max-width: 991px) {

    .main-header {

        background: rgba(0,0,0,.75);

        backdrop-filter: blur(15px);

    }


    .main-header .navbar {

        min-height: 80px;

    }


    .navbar-collapse {

        padding: 20px 0 25px;

    }


    .navbar-nav {

        align-items: stretch !important;

    }


    .nav-link {

        padding: 10px 0 !important;

    }


    .nav-link.active::after {

        display: none;

    }


    .header-cart {

        margin-top: 15px;

        width: 100%;

        justify-content: center;

    }


    .products-header {

        display: block;

    }


    .products-header-right {

        margin-top: 30px;

    }


    .feature-box {

        border-right: 0;

        border-bottom: 1px solid var(--border);

    }


    .feature-wrapper > div:last-child .feature-box {

        border-bottom: 0;

    }


    .about-visual {

        padding-right: 0;

    }


    .about-content {

        padding-left: 0;

    }


    .dealer-box {

        padding: 50px 40px;

    }


    .slogan-content {

        flex-direction: column;

        text-align: center;

    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .hero-section {

        min-height: 650px;

    }


    .hero-content h1 {

        font-size: 65px;

        letter-spacing: -2px;

    }


    .hero-small {

        letter-spacing: 6px;

    }


    .hero-content p {

        font-size: 8px;

        letter-spacing: 1.5px;

        line-height: 2;

    }


    .hero-content p span {

        margin: 0 4px;

    }


    .intro-section {

        padding: 90px 0 60px;

    }


    .features-section {

        padding-bottom: 90px;

    }


    .products-section,
    .about-section,
    .usage-section,
    .certificate-section {

        padding: 90px 0;

    }


    .main-title {

        font-size: 58px;

        letter-spacing: -2px;

    }


    .product-image {

        height: 320px;

    }


    .product-bottom {

        align-items: center;

    }


    .about-image {

        height: 430px;

    }


    .about-badge {

        width: 130px;

        height: 130px;

        right: 15px;

        bottom: 20px;

    }


    .about-badge > i {

        font-size: 30px;

    }


    .about-badge strong {

        font-size: 30px;

    }


    .slogan-section {

        padding: 90px 0;

    }


    .slogan-content > i {

        font-size: 60px;

    }


    .slogan-content h2 {

        font-size: 60px;

        letter-spacing: -2px;

    }


    .dealer-section {

        padding: 50px 0;

    }


    .dealer-box {

        padding: 45px 30px;

        flex-direction: column;

        align-items: flex-start;

        gap: 35px;

    }


    .dealer-button {

        width: 125px;

        height: 125px;

    }


    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;

    }


    /* CART MOBILE */

    .cart-panel {

        width: 100%;

        min-width: 0;

    }


    .cart-header {

        padding-left: 20px;

        padding-right: 20px;

    }


    .cart-body {

        padding-left: 20px;

        padding-right: 20px;

    }


    .cart-footer {

        padding-left: 20px;

        padding-right: 20px;

    }

}



/* =========================================================
   DEALER APPLICATION MODAL
========================================================= */

.dealer-modal .modal-dialog {
    max-width: 1000px;
}

.dealer-modal .modal-content {
    border: 0;
    border-radius: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 40% 60%;
    background: var(--cream-light);
    box-shadow: 0 40px 100px rgba(0,0,0,.35);
}

.dealer-modal .modal-backdrop {
    background: #000;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.dealer-modal-side {
    position: relative;
    overflow: hidden;
    padding: 60px 45px;
    background:
        linear-gradient(
            145deg,
            #171717 0%,
            #0e0e0e 100%
        );
    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* BIG BACKGROUND FIRE */

.dealer-modal-fire {
    position: absolute;
    right: -65px;
    bottom: -110px;

    font-size: 330px;
    line-height: 1;

    color: rgba(227,32,25,.08);

    transform: rotate(-10deg);
}

.dealer-modal-fire i {
    display: block;
}


/* SMALL TITLE */

.dealer-modal-small {
    position: relative;
    z-index: 2;

    display: block;

    color: var(--red);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 5px;

    margin-bottom: 25px;
}


/* TITLE */

.dealer-modal-side h2 {
    position: relative;
    z-index: 2;

    margin: 0;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 68px;
    font-weight: 900;

    line-height: .82;

    letter-spacing: -2px;
}

.dealer-modal-side h2 strong {
    display: block;

    color: var(--red);
}


/* DESCRIPTION */

.dealer-modal-side > p {
    position: relative;
    z-index: 2;

    max-width: 300px;

    margin: 30px 0;

    color: rgba(255,255,255,.55);

    font-size: 12px;
    line-height: 1.8;
}


/* FEATURES */

.dealer-modal-features {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    gap: 12px;

    margin-top: 10px;
}

.dealer-modal-features div {
    display: flex;
    align-items: center;

    gap: 10px;

    font-size: 11px;

    color: rgba(255,255,255,.8);
}

.dealer-modal-features i {
    color: var(--red);

    font-size: 14px;
}


/* =========================================================
   RIGHT FORM
========================================================= */

.dealer-modal-form {
    position: relative;

    padding: 55px 55px 45px;

    background: var(--cream-light);
}


/* CLOSE */

.dealer-modal-close {
    position: absolute;

    right: 25px;
    top: 25px;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    border: 1px solid var(--border);

    background: transparent;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--black);

    font-size: 15px;

    transition: .3s;
}

.dealer-modal-close:hover {
    background: var(--black);
    border-color: var(--black);

    color: white;

    transform: rotate(90deg);
}


/* TITLE */

.dealer-modal-form .section-label {
    margin-bottom: 10px;
}

.dealer-modal-form > h3 {
    margin: 0;

    font-size: 43px;
    font-weight: 800;

    color: var(--black);
}

.dealer-form-description {
    max-width: 430px;

    margin: 7px 0 28px;

    color: #888;

    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   INPUT
========================================================= */

.dealer-input {
    display: flex;
    flex-direction: column;

    gap: 7px;
}

.dealer-input label {
    color: #777;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: .5px;
}

.dealer-input input,
.dealer-input textarea {
    width: 100%;

    border: 1px solid #e0dbd3;
    outline: none;

    background: white;

    padding: 13px 15px;

    color: var(--black);

    font-family: "Inter", sans-serif;

    font-size: 11px;

    transition: .3s;
}

.dealer-input input {
    height: 47px;
}

.dealer-input textarea {
    resize: none;
}

.dealer-input input::placeholder,
.dealer-input textarea::placeholder {
    color: #bbb;
}

.dealer-input input:focus,
.dealer-input textarea:focus {
    border-color: var(--red);

    box-shadow:
        0 0 0 3px rgba(227,32,25,.06);
}


/* =========================================================
   KVKK
========================================================= */

.dealer-check {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    cursor: pointer;

    margin-top: 2px;
}

.dealer-check input {
    width: 16px;
    height: 16px;

    margin-top: 1px;

    accent-color: var(--red);
}

.dealer-check span {
    color: #888;

    font-size: 9px;
    line-height: 1.6;
}


/* =========================================================
   SUBMIT
========================================================= */

.dealer-submit {
    width: 100%;
    height: 56px;

    border: 0;

    background: var(--red);

    color: white;

    padding: 0 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 11px;
    font-weight: 600;

    transition: .3s;
}

.dealer-submit i {
    font-size: 17px;

    transition: .3s;
}

.dealer-submit:hover {
    background: var(--black);
}

.dealer-submit:hover i {
    transform: translateX(5px);
}


/* =========================================================
   MODAL ANIMATION
========================================================= */

.dealer-modal.fade .modal-dialog {
    transform:
        translateY(30px)
        scale(.97);

    transition:
        transform .4s cubic-bezier(.22,1,.36,1);
}

.dealer-modal.show .modal-dialog {
    transform:
        translateY(0)
        scale(1);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .dealer-modal .modal-dialog {
        max-width: calc(100% - 30px);
    }

    .dealer-modal .modal-content {
        grid-template-columns: 35% 65%;
    }

    .dealer-modal-side {
        padding: 45px 30px;
    }

    .dealer-modal-side h2 {
        font-size: 52px;
    }

    .dealer-modal-form {
        padding: 50px 35px 35px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .dealer-modal .modal-dialog {
        margin: 15px;

        max-width: none;
    }

    .dealer-modal .modal-content {
        display: block;

        max-height: calc(100vh - 30px);

        overflow-y: auto;
    }


    /* MOBILE LEFT */

    .dealer-modal-side {
        min-height: auto;

        padding: 35px 25px;
    }

    .dealer-modal-side h2 {
        font-size: 48px;
    }

    .dealer-modal-side > p {
        margin: 20px 0;

        max-width: 100%;
    }

    .dealer-modal-features {
        display: none;
    }

    .dealer-modal-fire {
        font-size: 220px;

        right: -40px;
        bottom: -90px;
    }


    /* MOBILE FORM */

    .dealer-modal-form {
        padding: 35px 25px 30px;
    }

    .dealer-modal-form > h3 {
        font-size: 35px;
    }

    .dealer-modal-close {
        right: 18px;
        top: 18px;

        background: white;
    }

}




/* =========================================================
   CHECKOUT
========================================================= */

.checkout-page {
    background: #f5f1eb;
}


/* HEADER */

.checkout-header {
    background: #171717;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.checkout-header-inner {
    height: 95px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-logo {
    display: flex;
    align-items: center;

    gap: 8px;

    color: white;

    font-family: "Barlow Condensed";
    font-size: 31px;
    font-weight: 800;
}

.checkout-logo:hover {
    color: white;
}

.checkout-logo > i {
    color: var(--red);
    font-size: 37px;
}

.checkout-logo strong {
    color: var(--red);
}

.checkout-security {
    display: flex;
    align-items: center;

    gap: 12px;

    color: white;
}

.checkout-security > i {
    color: var(--red);
    font-size: 26px;
}

.checkout-security strong,
.checkout-security span {
    display: block;
}

.checkout-security strong {
    font-size: 11px;
}

.checkout-security span {
    color: #777;
    font-size: 9px;
}


/* MAIN */

.checkout-main {
    padding: 80px 0 120px;
}

.checkout-title {
    margin-bottom: 55px;
}

.checkout-title > span {
    color: var(--red);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 5px;
}

.checkout-title h1 {
    margin: 8px 0 0;

    font-size: 70px;
    font-weight: 900;

    line-height: .9;

    letter-spacing: -2px;
}

.checkout-title h1 strong {
    color: var(--red);
}


/* BOX */

.checkout-box {
    background: white;

    border: 1px solid var(--border);

    padding: 35px;

    margin-bottom: 25px;
}

.checkout-box-title {
    display: flex;
    align-items: center;

    gap: 18px;

    padding-bottom: 25px;
    margin-bottom: 25px;

    border-bottom: 1px solid #eeeae4;
}

.checkout-box-title > span {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--red);

    color: white;

    font-family: "Barlow Condensed";
    font-size: 17px;
    font-weight: 800;
}

.checkout-box-title small {
    display: block;

    color: var(--red);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 3px;
}

.checkout-box-title h2 {
    margin: 2px 0 0;

    font-size: 27px;
    font-weight: 700;
}


/* INPUT */

.checkout-input label {
    display: block;

    color: #777;

    font-size: 9px;
    font-weight: 600;

    margin-bottom: 7px;
}

.checkout-input input,
.checkout-input textarea {
    width: 100%;

    border: 1px solid #ded9d2;
    outline: none;

    background: #faf9f7;

    padding: 14px 15px;

    font-size: 12px;

    transition: .3s;
}

.checkout-input input {
    height: 50px;
}

.checkout-input textarea {
    resize: none;
}

.checkout-input input:focus,
.checkout-input textarea:focus {
    background: white;

    border-color: var(--red);

    box-shadow:
        0 0 0 3px rgba(227,32,25,.05);
}


/* PAYMENT METHOD */

.payment-method {
    min-height: 75px;

    border: 1px solid var(--red);

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 15px 18px;

    background: rgba(227,32,25,.025);
}

.payment-method-icon {
    width: 44px;
    height: 44px;

    background: var(--red);

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
}

.payment-method strong,
.payment-method span {
    display: block;
}

.payment-method strong {
    font-size: 12px;
}

.payment-method span {
    color: #999;

    font-size: 9px;

    margin-top: 3px;
}

.payment-check {
    margin-left: auto;

    color: var(--red);

    font-size: 19px;
}


/* PAYTR */

.paytr-area {
    margin-top: 20px;
}

.paytr-placeholder {
    min-height: 220px;

    border: 1px dashed #d4cec5;

    background: #faf8f5;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 30px;
}

.paytr-placeholder > i {
    color: var(--red);

    font-size: 42px;

    margin-bottom: 12px;
}

.paytr-placeholder > strong {
    font-size: 15px;
}

.paytr-placeholder p {
    color: #999;

    font-size: 10px;

    margin: 6px 0 18px;
}

.payment-cards {
    display: flex;

    gap: 6px;
}

.payment-cards span {
    background: white;

    border: 1px solid #ddd;

    padding: 6px 10px;

    color: #555;

    font-size: 8px;
    font-weight: 700;
}


/* =========================================================
   ORDER SUMMARY
========================================================= */

.order-summary {
    position: sticky;

    top: 25px;

    background: #171717;

    color: white;

    padding: 35px;
}

.order-summary-header {
    padding-bottom: 25px;

    border-bottom: 1px solid rgba(255,255,255,.09);
}

.order-summary-header span {
    color: var(--red);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 4px;
}

.order-summary-header h2 {
    margin: 4px 0 0;

    font-size: 31px;
    font-weight: 800;
}


/* PRODUCT */

.order-products {
    max-height: 350px;

    overflow-y: auto;
}

.order-product {
    display: flex;
    align-items: center;

    gap: 13px;

    padding: 20px 0;

    border-bottom: 1px solid rgba(255,255,255,.08);
}

.order-product-image {
    position: relative;

 
    height: 70px;

    flex-shrink: 0;

    background: white;
}

.order-product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.order-product-image span {
    position: absolute;

    right: -7px;
    top: -7px;

    width: 21px;
    height: 21px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--red);

    color: white;

    font-size: 9px;
    font-weight: 700;
}

.order-product-info {
    flex: 1;
}

.order-product-info h3 {
    margin: 0;

    font-size: 17px;
    font-weight: 700;
}

.order-product-info small {
    color: #777;

    font-size: 8px;
}

.order-product > strong {
    color: white;

    font-family: "Barlow Condensed";

    font-size: 17px;
}


/* TOTALS */

.order-totals {
    padding: 20px 0;

    border-bottom: 1px solid rgba(255,255,255,.1);
}

.order-totals > div {
    display: flex;
    justify-content: space-between;

    margin: 8px 0;

    font-size: 10px;
}

.order-totals span {
    color: #888;
}

.order-totals strong {
    font-weight: 500;
}

.free-shipping {
    color: #fff;
}


/* GRAND TOTAL */

.order-grand-total {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 25px 0;
}

.order-grand-total span,
.order-grand-total small {
    display: block;
}

.order-grand-total span {
    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}

.order-grand-total small {
    color: #666;

    font-size: 8px;
}

.order-grand-total > strong {
    color: var(--red);

    font-family: "Barlow Condensed";

    font-size: 36px;
}


/* AGREEMENT */

.checkout-agreement {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin-bottom: 18px;

    cursor: pointer;
}

.checkout-agreement input {
    margin-top: 2px;

    accent-color: var(--red);
}

.checkout-agreement span {
    color: #777;

    font-size: 9px;
    line-height: 1.6;
}


/* COMPLETE */

.complete-order {
    width: 100%;

    min-height: 70px;

    border: 0;

    background: var(--red);

    color: white;

    padding: 13px 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    text-align: left;

    transition: .3s;
}

.complete-order > span {
    font-family: "Barlow Condensed";

    font-size: 20px;
    font-weight: 700;
}

.complete-order small {
    display: block;

    font-family: "Inter";

    font-size: 7px;
    font-weight: 600;

    letter-spacing: 1px;

    opacity: .7;
}

.complete-order > div {
    display: flex;
    align-items: center;

    gap: 12px;

    font-size: 10px;
    font-weight: 600;
}

.complete-order:hover {
    background: white;

    color: var(--black);
}

.complete-order i {
    font-size: 17px;
}


/* SECURITY */

.order-security {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 7px;

    color: #666;

    font-size: 8px;

    margin-top: 14px;
}

.order-security i {
    color: var(--red);
}


/* EMPTY */

.checkout-empty {
    background: white;

    border: 1px solid var(--border);

    padding: 80px 30px;

    text-align: center;
}

.checkout-empty > i {
    color: var(--red);

    font-size: 70px;
}

.checkout-empty h2 {
    font-size: 35px;

    margin-top: 10px;
}

.checkout-empty p {
    color: #888;

    font-size: 12px;
}

.checkout-empty a {
    display: inline-flex;
    align-items: center;

    gap: 20px;

    background: var(--red);

    color: white;

    padding: 15px 20px;

    margin-top: 10px;

    font-size: 10px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .order-summary {
        position: static;
    }

}

@media (max-width: 767px) {

    .checkout-header-inner {
        height: 80px;
    }

    .checkout-security {
        display: none;
    }

    .checkout-main {
        padding: 50px 0 80px;
    }

    .checkout-title {
        margin-bottom: 35px;
    }

    .checkout-title h1 {
        font-size: 48px;
    }

    .checkout-box {
        padding: 25px 20px;
    }

    .order-summary {
        padding: 25px 20px;
    }

    .complete-order {
        min-height: 75px;
    }

}