@charset "UTF-8";

/* ═══════════════════════════════════════════════════════════════
   GLOBAL CSS DEĞİŞKENLERİ
   (Eskiden home.css :root'unda, artık buraya taşındı)
═══════════════════════════════════════════════════════════════ */
:root {
    --bg: #09080a;
    --border: rgba(255, 255, 255, 0.07);
    --b-fire: rgba(255, 75, 25, 0.38);
    --fire: #ff4d1c;
    --fire-2: #ff7a3d;
    --fire-dim: rgba(255, 77, 28, 0.13);
    --green: #22c55e;
    --text: #eaeef8;
    --sub: rgba(234, 238, 248, 0.54);
    --muted: rgba(234, 238, 248, 0.28);
    --font-d: 'Bebas Neue', sans-serif;
    --font-b: 'Outfit', sans-serif;
    --r: 16px; --r-lg: 22px; --r-xl: 30px;
    --gap-section: 96px;
    --gap-section-half: 48px;
    --gap-hero-top: 36px;
}

/* ═══════════════════════════════════════════════════════════════
   GLOBAL RESET
═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-b); background: transparent; color: var(--text); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 10; }

/* ═══════════════════════════════════════════════════════════════
   GLOBAL ARKA PLAN
   Her sayfada ortak — buraya taşındı
═══════════════════════════════════════════════════════════════ */
.global-bg {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: #09080a;
    z-index: -1; pointer-events: none;
    transform: translateZ(0);
    will-change: transform;
    contain: strict;
}
.global-bg::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 55% at 50% -5%, rgba(255, 80, 15, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse 50% 35% at 85% 55%, rgba(255, 65, 10, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 50% 35% at 15% 75%, rgba(255, 90, 20, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 60% 30% at 50% 100%, rgba(255, 70, 10, 0.09) 0%, transparent 55%);
    pointer-events: none;
}
.global-bg__grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,77,28,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,77,28,.055) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%);
    animation: grid-drift 25s linear infinite;
    will-change: background-position;
}
@keyframes grid-drift { from { background-position:0 0 } to { background-position:56px 56px } }
.global-bg__glow { position: absolute; border-radius: 50%; filter: blur(130px); will-change: transform; }
.global-bg__glow--1 { width:1000px; height:800px; top:-200px; right:-200px; background:radial-gradient(circle,rgba(255,60,5,.22)0%,transparent 60%); animation:glow-breathe 7s ease-in-out infinite; }
.global-bg__glow--2 { width:800px; height:700px; bottom:-250px; left:-200px; background:radial-gradient(circle,rgba(255,110,30,.12)0%,transparent 60%); animation:glow-breathe 10s ease-in-out infinite reverse; }
.global-bg__glow--3 { width:1100px; height:500px; top:35%; left:50%; transform:translateX(-50%); background:radial-gradient(ellipse,rgba(255,75,15,.08)0%,transparent 65%); animation:glow-breathe-center 14s ease-in-out infinite; }
@keyframes glow-breathe { 0%,100%{transform:scale(1)}50%{transform:scale(1.12)} }
@keyframes glow-breathe-center { 0%,100%{transform:translateX(-50%) scale(1)}50%{transform:translateX(-50%) scale(1.1)} }
.global-bg__particles { position:absolute; inset:0; }
.particle { position:absolute; border-radius:50%; background:var(--fire); box-shadow:0 0 6px var(--fire); animation:float-p linear infinite; opacity:.5; will-change: transform, opacity; }
@keyframes float-p { 0%{transform:translateY(0)scale(1);opacity:.4}50%{opacity:.15;transform:translateY(-100px)scale(.7)}100%{transform:translateY(-200px)scale(.3);opacity:0} }
.global-bg__scanlines { position:absolute;inset:0;background:repeating-linear-gradient(0deg,transparent,transparent 2px,rgba(0,0,0,.025)2px,rgba(0,0,0,.025)4px);opacity:.5;pointer-events:none; }
.global-bg__noise { position:absolute;inset:0;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");background-size:256px;opacity:.3;pointer-events:none; }

/* ═══════════════════════════════════════════════════════════════
   CAM (GLASS) SINIFLAR — Global
═══════════════════════════════════════════════════════════════ */
.glass-panel { background:rgba(15,18,25,.55)!important; border:1px solid rgba(255,255,255,.05); }
.glass-panel-dark { background:rgba(10,12,18,.7)!important; border:1px solid rgba(255,255,255,.03); }
.glass-panel, .glass-panel-dark { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transform: translateZ(0); }

/* ═══════════════════════════════════════════════════════════════
   GLOBAL BUTONLAR
═══════════════════════════════════════════════════════════════ */
.btn--fire { background:linear-gradient(135deg,#d63200,var(--fire)50%,var(--fire-2));color:#fff;box-shadow:0 0 0 1px rgba(255,77,28,.35),0 8px 30px rgba(255,60,0,.28); }
.btn--fire::after { content:'';position:absolute;inset:0;background:linear-gradient(135deg,transparent 30%,rgba(255,255,255,.12)50%,transparent 70%);transform:translateX(-100%);transition:transform .5s; }
.btn--fire:hover::after { transform:translateX(100%); }
.btn--fire:hover { transform:translateY(-2px);box-shadow:0 0 0 1px rgba(255,77,28,.55),0 16px 44px rgba(255,60,0,.42); }
.btn--ghost { background:rgba(255,255,255,.04);color:var(--text);border:1px solid var(--border); }
.btn--ghost:hover { background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.12);transform:translateY(-2px); }
.btn--glow { animation:btn-pulse 3s ease-in-out infinite; }
@keyframes btn-pulse { 0%,100%{box-shadow:0 0 0 1px rgba(255,77,28,.35),0 8px 30px rgba(255,60,0,.28)}50%{box-shadow:0 0 0 1px rgba(255,77,28,.6),0 8px 50px rgba(255,60,0,.5),0 0 60px rgba(255,77,28,.2)} }

/* Temel btn sarmalayıcısı */
.btn { display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:0 26px;height:52px;border-radius:var(--r);font-family:var(--font-b);font-weight:700;font-size:15px;border:none;cursor:pointer;white-space:nowrap;transition:.25s;overflow:hidden;position:relative; }

/* ═══════════════════════════════════════════════════════════════
   GLOBAL KICKER & SECTION YARDIMCILARI
═══════════════════════════════════════════════════════════════ */
.kicker { display:inline-flex;align-items:center;gap:8px;padding:6px 14px;border-radius:999px;border:1px solid var(--b-fire);background:rgba(255,77,28,.07);color:var(--fire-2);font-size:11px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;margin-bottom:14px;backdrop-filter:blur(10px); }
.kicker::before { content:'';width:6px;height:6px;border-radius:50%;background:var(--fire);box-shadow:0 0 8px var(--fire);animation:blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.3} }

.section { padding: var(--gap-section) 0; }
.section__head { display:flex;align-items:flex-end;justify-content:space-between;gap:16px;margin-bottom:var(--gap-section-half);flex-wrap:wrap; }
.section__title { font-family:var(--font-d);font-size:clamp(38px,5vw,62px);letter-spacing:.04em;line-height:1;text-shadow:0 5px 15px rgba(0,0,0,.5); }
.section__title em { font-style:normal;color:var(--fire-2);text-shadow:0 0 30px rgba(255,77,28,.4); }

/* ═══════════════════════════════════════════════════════════════
   ESKİ style.css İÇERİĞİ (değiştirilmedi)
═══════════════════════════════════════════════════════════════ */

* {
    padding: 0;
    margin: 0;
}

body {
    background-color: var(--body-color);
    font-family: 'Montserrat', sans-serif;
}

li {
    list-style: none;
}

table {
    position: relative;
    max-width: 100% !important;
    display: inline-table;
    overflow: auto;
}

table {
    border-collapse: separate;
    border-spacing: 0 10px;
}

table tbody {
    background-color: var(--add-credit-table);
}

table tbody tr td:first-child {
    border-radius: 12px 0px 0px 12px;
}

table tbody tr td:last-child {
    border-radius: 0px 12px 12px 0px;
}

.hover\:1 {
    transform: translateY(0px);
    transition: 300ms;
}

.hover\:1:hover {
    transform: translateY(-3px);
    transition: 300ms;
}

.absolute-swiper svg {
    position: absolute !important;
    bottom: 0px !important;
    height: 100%;
    width: 100%;
}

.shopping-button {
    border-radius: 500px;
    background-color: var(--active-background-color) !important;
    color: var(--active-text-color) !important;
    width: 50px;
    height: 50px;
    margin-right: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-header-img {
    width: 25px;
    height: 25px;
    border-radius: 500px;
}

.dropdown-menu {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 18px;
}

.dropdown-menu.dropdown-lg {
    top: -0.5rem;
    background: var(--body-color) !important;
    border: 2px solid var(--main-color);
    border-radius: 30px;
    cursor: pointer;
    z-index: 150 !important;
}

.footer-select .dropdown-lg-content {
    margin-top: 0rem !important;
    justify-content: center;
}

.footer-select.dropdown-menu.dropdown-lg {
    left: -1.5rem;
    text-align: center;
    background: var(--body-color) !important;
    top: -23.5rem !important;
    padding-bottom: 4rem !important;
    border: 2px solid var(--main-color) !important;
    border-radius: 30px !important;
    cursor: pointer !important;
    z-index: 150 !important;
}

li[aria-expanded="true"] i {
    transform: rotate(180deg);
    transition: 500ms;
}

li[aria-expanded="false"] i {
    transform: rotate(0deg);
    transition: 500ms;
}

li.dropdown.profile-dropdown:hover .dropdown-border {
    background: var(--main-color);
    transition: 500ms;
}

li.dropdown.profile-dropdown:hover .dropdown-border a {
    color: var(--active-text-color) !important;
    transition: 500ms;
}

.dropdown.footer-dropdown:hover .dropdown-border {
    background: var(--main-color);
    transition: 500ms;
}

.dropdown.footer-dropdown:hover .dropdown-border a {
    color: var(--active-text-color) !important;
    transition: 500ms;
}

.dropdown-lg-content {
    margin-top: 3rem;
    transition: 500ms;
}

.profile-dropdown .dropdown-border {
    border: 2px solid var(--main-color);
    border-radius: 60px;
    padding: 11px 19px 11px 11px;
    z-index: 123123123;
    position: relative;
    transition: 500ms;
    width: max-content;
    font-size: 14px !important;

}

.footer-dropdown {
    width: 140px !important;
    text-align: center;
    justify-content: center;
    display: flex;
}

.footer-dropdown .dropdown-border {
    justify-content: center !important;
    margin: auto !important;
    text-align: center !important;
    border: 2px solid var(--main-color);
    height: fit-content !important;
    width: fit-content;
    border-radius: 60px;
    padding: 11px 19px 11px 11px;
    position: relative;
    transition: 500ms;
    z-index: 160;
    width: 100% !important;
}

.tooltip-inner {
    background: var(--add-credit-table);
    color: var(--text-color);
    filter: contrast(0.85);
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before, .bs-tooltip-top .tooltip-arrow::before {
    border-top-color: var(--add-credit-table) !important;
    filter: contrast(0.85);
}

.form-select {
    background: var(--input-bg) !important;
}

.add-credit-table {
    background-color: var(--add-credit-table);
    padding: 0.8rem;
}

.absolute-icon-form {
    position: relative;
    overflow: hidden;
}

.absolute-icon-form i {
    position: absolute;
    right: 1rem;
    top: calc(0.8rem + 2px);
    cursor: pointer;
}

.form-floating label {
    color: var(--input-color) !important;
}

button.form-control {
    transition: 1500ms;
}

button.form-control:hover {
    transform: translateY(-3px);
    transition: 500ms;
}

.form-floating input[disabled] ~ label:after {
    background-color: var(--input-bg);
    filter: contrast(0.9);
}

.form-floating > .form-control-plaintext ~ label::after, .form-floating > .form-control:focus ~ label::after, .form-floating > .form-control:not(:placeholder-shown) ~ label::after, .form-floating > .form-select ~ label::after {
    background-color: var(--input-bg);
}

.w-80 {
    width: 80% !important;
}

.btn-success {
    background-color: #45c4a0 !important;
}

.divider-icon span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(164, 174, 198, 0.2);
}

.divider-icon:after, .divider-icon:before {
    position: absolute;
    top: 50%;
    content: "";
    border-top: 1px solid rgba(164, 174, 198, 0.2);
    width: calc(45% - 1.5rem);
}

.btn-outline-login {
    border-color: var(--active-background-color) !important;
    color: var(--outline-text-color) !important;
}

.btn-outline-login:focus {
    border-color: var(--active-background-color) !important;
    color: var(--active-text-color) !important;
}

.btn-outline-login:hover {
    background-color: var(--active-background-color) !important;
    color: var(--active-text-color) !important;
}

.form-control {
    border-radius: 8px !important;
    background-color: var(--input-bg) !important;
    color: var(--input-color) !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 1px solid var(--btn-main-bg) !important;
    -webkit-text-fill-color: var(--input-color) !important;
    -webkit-box-shadow: 0 0 0px 1000px #000 inset;
    transition: background-color 5000s ease-in-out 0s;
}

.form-control:focus {
    box-shadow: none !important;
    border-color: var(--main-color);
}

input[disabled] {
    filter: contrast(0.9);
}

.navbar {
    padding-top: 0.5rem;
}

.navbar-behind.active {
    width: 100%;
    height: 100%;
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    background: #000;
    z-index: 99999999999;
    opacity: 0.9;
}

.absolute-swiper {
    height: 100%;
}

.absolute-swiper svg {
    position: absolute !important;
    bottom: 0 !important;
}

.absolute-swiper svg path {
    fill: var(--main-color);
}

.error-coupon {
    animation: horizontal-shaking 1s ease-in-out;
    border: 1px solid var(--main-color);
}

@keyframes horizontal-shaking {
    0% { transform: translateX(0); }
    25% { transform: translateX(5px); }
    50% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}

.success-coupon {
    animation: horizontal-shaking 1s ease-in-out;
    border: 1px solid #187918;
}

.left-nav:not(.show-ixa) {
    width: 240px;
    height: 100%;
    position: fixed;
    left: -15rem;
    transition: left 500ms;
    background: var(--card-bg);
    z-index: 9999999999;
}

.left-nav a {
    color: var(--text-color);
    font-weight: 600;
}

.left-nav.show-ixa {
    width: 240px;
    height: 100%;
    position: fixed;
    left: 0rem !important;
    transition: left 500ms;
    border-right: 2px solid var(--card-bg) !important;
    background: var(--card-bg);
    z-index: 9999999999999;
}

.left-nav.show-ixa .toggler-nav {
    background-color: var(--card-bg) !important;
    position: absolute;
    right: -50px;
    top: 15px;
    box-shadow: 0px 0px 20px #00000024;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    border-radius: 60px;
    align-items: center;
    transition: 500ms;
}

.left-nav .toggler-nav {
    background-color: var(--card-bg) !important;
    position: absolute;
    right: -120px;
    top: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    border-radius: 60px;
    align-items: center;
    transition: 500ms;
    box-shadow: 0px 0px 20px #00000024;
}

.footer-btn.active {
    border-radius: 250px;
    color: var(--active-text-color);
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--active-background-color) !important;
}

.store-button {
    border: 2px solid var(--active-background-color);
    width: 100%;
    padding: 25px 19px;
    height: 40px;
    display: flex;
    align-items: center;
    border-radius: 100px;
    transition: 500ms;
    color: var(--text-color);
}

.store-button:hover {
    background-color: var(--active-background-color) !important;
    color: var(--active-text-color) !important;
    transition: 500ms;
}

.btn-main {
    background-color: var(--btn-main-bg);
    color: var(--btn-main-text-color) !important;
}

.btn-main:hover {
    background-color: var(--btn-main-bg) !important;
    color: var(--btn-main-text-color) !important;
    border-color: var(--btn-main-bg) !important;
}

.btn-main:active {
    background-color: var(--btn-main-bg) !important;
    color: var(--btn-main-text-color) !important;
    border-color: var(--btn-main-bg) !important;
}

.btn-main:focus {
    background-color: var(--btn-main-bg) !important;
    color: var(--btn-main-text-color) !important;
    border-color: var(--btn-main-bg) !important;
}

.changing-text-section {
    color: var(--section-text-color) !important;
}

.container-fluid {
    width: 98%;
}

.logo-size {
    width: var(--logo-size);
    height: var(--logo-size);
    object-fit: contain;
    margin-right: 1rem;
}

.container-85 {
    width: 85% !important;
}

.rounded-full {
    border-radius: 250px !important;
}

.border-color {
    border: 1px solid var(--main-color) !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.z-99 {
    z-index: 99;
}

.card {
    background-color: var(--card-bg);
    color: var(--card-text-color);
}

.text-color {
    color: var(--text-color) !important;
}

.text-color-sub {
    color: var(--text-color-sub) !important;
}

.h1, .h2, .h3, .h4, .h5, .h6, .h7 {
    color: var(--text-color);
    font-weight: 600;
}

.display-1, .display-2, .display-3,
.display-4, .display-5, .display-6, .display-7 {
    color: var(--text-color);
}

.btn-outline-special {
    border-color: var(--active-background-color);
}

.btn-outline-special:hover {
    background-color: var(--active-background-color) !important;
    color: var(--active-text-color) !important;
}

header nav .nav-item .nav-link {
    font-weight: 600;
    font-size: 16px;
    transition: 500ms;
}

header nav .nav-item .nav-link:hover {
    transform: translateY(-3px);
    transition: 500ms;
}

header nav .nav-item .nav-link:not(.active) {
    color: var(--text-color);
}

header nav .nav-item .nav-link.main-border-outline {
    border: 2px solid var(--active-background-color);
    width: 100%;
    padding: 25px 19px;
    height: 40px;
    display: flex;
    align-items: center;
    border-radius: 100px;
    transition: 500ms;
    color: var(--text-color);
}

header nav .nav-item .nav-link.main-border-outline:hover {
    background-color: var(--active-background-color);
    color: var(--active-text-color) !important;
    transition: 500ms;
}

header nav .nav-item .nav-link.active {
    border-radius: 500px;
    background-color: var(--active-background-color) !important;
    color: var(--active-text-color);
    width: 50px;
    height: 50px;
    margin-right: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
}

.section-1 .absolute-swiper {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100% !important;
    height: 100%;
    opacity: 0.6;
}

.section-1 .swiper-div {
    background: #000;
    padding-top: 2%;
    height: 392px;
}

.section-1 .swiper-div:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 31%;
    background: #000 !important;
    left: 0;
    top: 0;
    z-index: 123123;
    filter: blur(22px);
}

.section-1 .swiper {
    width: 100%;
    height: 100%;
}

.section-1 .margin-initial {
    margin: initial !important;
}

.section-1 .btn-swiper {
    display: flex;
    padding: 6px 13px;
    gap: 20px;
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.39) !important;
    border: 2px solid #FFFFFF !important;
    backdrop-filter: blur(5.5px) !important;
    border-radius: 250px !important;
    width: 50%;
    margin: auto;
    color: #FFF;
}

.section-1 .btn-swiper:hover {
    border: 2px solid #FFFFFF !important;
    background: rgba(0, 0, 0, 0.39) !important;
    color: #FFF !important;
}

.section-1 .swiper-slide {
    height: 300px !important;
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(0deg, #000000 -8.17%, rgba(0, 0, 0, 0) 100%);
    box-shadow: 0px 28px 29px -20px rgba(0, 0, 0, 0.14);
    border: 9px solid var(--main-color);
    border-radius: 24px;
    padding: 2%;
}

.section-1 .swiper-slide:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 45%;
    background: #000;
    bottom: 0;
    left: 0;
    right: 0;
    filter: blur(60px);
    opacity: 0.4;
}

.section-1 .swiper-slide img {
    width: 55%;
    height: 100%;
    object-fit: contain;
    display: flex;
    justify-content: center;
    margin: auto;
    top: -20px;
}

.section-1 .swiper-slide-next {
    transform: translateY(-25px) !important;
    margin-left: 30px;
}

.section-1 .swiper, .section-1 .swiper-container {
    overflow: revert !important;
}

.section-3 .section-3-img {
    height: 600px;
    background-size: cover;
}

.section-3 .section-3-img:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8;
}

.section-3 .absolute-swiper {
    position: absolute;
    width: 100% !important;
    height: 100%;
    display: flex;
    bottom: -5rem;
}

.section-4 .img-top svg path {
    fill: var(--svg-color);
}

.section-5 .section-5-div {
    background-color: #000;
}

.section-5 .section-5-img {
    height: 600px;
    background-size: cover;
}

.section-5 .section-5-img:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8;
}

.section-5 .absolute-swiper {
    position: absolute;
    height: 100%;
    display: flex;
    width: 100% !important;
    top: 0;
    transform: rotate(180deg);
}

.section-5 .customer-comments-slider {
    width: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 150px;
}

.section-5 .customer-comments-slider .swiper-slide {
    height: 100px;
    color: var(--section-3-text-color);
}

.section-5 .customer-comments-slider .swiper-button-next:after,
.section-5 .customer-comments-slider .swiper-rtl .swiper-button-prev:after {
    content: none;
}

.section-5 .customer-comments-slider .swiper-button-next {
    border: 0px solid white;
    width: 40px;
    border-radius: 100%;
    height: 40px;
}

.section-5 .customer-comments-slider .swiper-button-next:before {
    content: "";
    position: absolute;
    width: 59px;
    height: 59px;
    border: 2px solid white;
    border-radius: 100%;
}

.section-5 .customer-comments-slider .swiper-button-prev:before {
    content: "";
    position: absolute;
    width: 59px;
    height: 59px;
    border: 2px solid white;
    border-radius: 100%;
}

.section-5 .customer-comments-slider .swiper-button-prev,
.section-5 .customer-comments-slider .swiper-rtl .swiper-button-next {
    left: 30px;
    right: auto;
}

.section-5 .customer-comments-slider .swiper-button-next,
.section-5 .customer-comments-slider .swiper-rtl .swiper-button-prev {
    right: 30px;
    left: auto;
}

.section-5 .customer-comments-slider .swiper-button-prev:after,
.section-5 .customer-comments-slider .swiper-rtl .swiper-button-next:after {
    content: none;
}

.section-5 .content {
    height: 380px;
}

.section-5 .swiper-slide .h5 {
    color: var(--section-text-color);
    width: 50%;
    margin: auto;
}

.section-6 .section-6-img {
    height: 500px;
    background-size: cover;
    background-color: #000;
    border-radius: 30px !important;
}

.section-6 .absolute-swiper {
    position: absolute;
    height: 100%;
    display: flex;
    width: 100% !important;
    top: 0;
    transform: rotate(180deg);
}

.section-6 .content {
    height: 500px;
}

.section-7 .btn-swiper {
    display: flex;
    padding: 6px 13px;
    gap: 20px;
    width: fit-content;
    margin: auto;
    color: white;
    background: rgba(0, 0, 0, 0.39) !important;
    border: 2px solid white !important;
    backdrop-filter: blur(5.5px) !important;
    border-radius: 250px !important;
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 989999;
}

.section-7 .btn-swiper:hover {
    color: #FFF !important;
}

.section-7 .categories-card {
    height: 200px;
    border-radius: 24px;
    object-fit: contain;
    background-size: cover;
    background-position: center;
}

.section-7 .categories-card .absolute-swiper {
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0.8;
    border-radius: 0px !important;
    z-index: 0;
}

.section-7 .categories-card:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.1;
    border-radius: 24px;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.product-name {
    min-height: 50px;
    margin-left: 1rem;
}

.product-name h5 {
    color: var(--text-color) !important;
}

.img-products img:first-child {
    position: absolute;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    bottom: 15px;
    left: 30px;
    filter: grayscale(1);
    object-fit: contain;
}

.section-9 {
    height: 250px;
}

.section-9:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 99;
    opacity: 0.8;
    backdrop-filter: blur(137px);
}

.section-9 .goProduct {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 105;
    align-items: center;
    justify-content: center;
}

.section-9 img {
    width: 100%;
    height: 100%;
    background-size: cover;
    object-fit: cover;
    position: relative;
    overflow: hidden;
}

.section-9 .absolute-swiper {
    position: absolute;
    top: 0px;
    z-index: 101;
    left: 0px;
    right: 0px;
    width: 100%;
    opacity: 0.4;
}

.categories-section .categories-card {
    height: 200px;
    border-radius: 24px;
    object-fit: contain;
    background-size: cover;
    background-position: center;
}

.categories-section .categories-card:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.1;
    border-radius: 24px;
    inset: 0px;
}

.categories-section .btn-swiper {
    display: flex;
    padding: 6px 13px;
    gap: 20px;
    width: fit-content;
    margin: auto;
    color: white;
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 989999;
    background: rgba(0, 0, 0, 0.39) !important;
    border: 2px solid white !important;
    backdrop-filter: blur(5.5px) !important;
    border-radius: 250px !important;
}

.categories-section .btn-swiper:hover {
    color: #FFF !important;
}

.store-section .store-card-absolute {
    position: absolute;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    bottom: 15px;
    left: 30px;
    filter: grayscale(1);
}

.store-section .img-products img:last-child {
    min-width: 350px;
    max-width: 350px;
    min-height: 350px;
    max-height: 350px;
    object-fit: cover;
    border-radius: 24px;
    margin: auto;
    text-align: center;
    display: flex;
}

.store-in-page-section .store-in-page-img img {
    min-width: 500px !important;
    max-width: 500px !important;
}

.store-in-page-section .product-desc .active:before {
    content: "";
    position: absolute;
    width: 80px;
    height: 5px;
    background: var(--main-color);
    bottom: 0px;
    border-radius: 60px;
}

.store-in-page-section .product-desc hr {
    border-top: 5px solid !important;
}

.store-in-page-section .product-desc ul {
    padding: 0;
    margin: 0;
}

.store-in-page-section .product-desc a {
    margin-bottom: 1rem;
    color: var(--text-color) !important;
    font-weight: 600;
}

.login-section .col-xl-9 {
    justify-content: center;
    align-items: center;
    display: inline-grid;
}

.login-section .login-left-page {
    height: 100vh;
    background-color: #000 !important;
}

.login-section .absolute-swiper {
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -14rem;
    width: 100%;
    z-index: 1231231;
    filter: blur(115px);
}

.login-section .absolute-swiper svg {
    position: absolute !important;
    bottom: 0 !important;
    height: 100%;
}

.section-404 .btn-swiper {
    display: flex;
    padding: 11px 19px;
    gap: 18px;
    width: 20%;
    margin: auto;
    z-index: 989999;
    background: var(--btn-main-bg) !important;
    color: var(--btn-main-text-color);
    backdrop-filter: blur(5.5px) !important;
    border-radius: 100px !important;
}

.section-404 .btn-swiper:focus,
.section-404 .btn-swiper:hover {
    color: var(--btn-main-text-color) !important;
}

.references-section .categories-card {
    height: 200px;
    border-radius: 24px;
    background-size: contain;
    background-repeat: no-repeat;
}

.references-section .categories-card:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.1;
    border-radius: 24px;
    inset: 0px;
}

.references-section .absolute-swiper {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0.8;
    z-index: 0;
    border-radius: 0px !important;
}

.references-section .btn-swiper {
    display: flex;
    padding: 6px 13px;
    gap: 20px;
    width: 50%;
    margin: auto;
    color: white;
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 989999;
    background: rgba(0, 0, 0, 0.39) !important;
    border: 2px solid white !important;
    backdrop-filter: blur(5.5px) !important;
    border-radius: 250px !important;
}

.references-section .btn-swiper:hover {
    color: #FFF !important;
}

.portfolio-section .portfolio-card img {
    width: 350px;
    height: 350px;
    max-width: 350px;
    max-height: 350px;
    object-fit: contain;
}

.blog-section .bg-blog {
    border: 1px solid var(--main-color);
    width: max-content;
    color: var(--text-color) !important;
    cursor: pointer;
}

.blog-section .bg-blog:hover,
.blog-section .bg-blog.active {
    background-color: var(--main-color);
    color: var(--active-text-color) !important;
}

.blog-section .blog-col-img img {
    width: 350px;
    height: 350px;
    max-width: 350px;
    max-height: 350px;
    object-fit: cover;
}

.blog-in-page-section .blog-img img {
    width: 850px;
    height: 540px;
    object-fit: cover;
}

.blog-in-page-section .desc,
.blog-in-page-section .tags {
    width: 80%;
    margin: auto;
}

.blog-in-page-section .bg-blog {
    border: 1px solid var(--main-color);
    width: max-content;
    color: var(--text-color) !important;
    cursor: pointer;
}

.blog-in-page-section .bg-blog:hover,
.blog-in-page-section .bg-blog.active {
    background-color: var(--main-color);
    color: var(--active-text-color) !important;
}

.blog-in-page-section .write-comment {
    width: 80% !important;
}

.blog-in-page-section .write-comment .write-comment-img {
    width: 60px;
    height: 60px;
    max-width: 60px;
    max-height: 60px;
    object-fit: cover;
}

.credit-add-section .balance-credit .table * {
    border: none;
}

.credit-add-section .balance-credit .add-credit-table {
    background-color: var(--add-credit-table);
    padding: .8rem;
}

.profile-button:not(.text-red) {
    color: var(--text-color) !important;
}

.profile-button.active {
    border: 1px solid var(--main-color);
    border-radius: 250px;
    font-weight: bold;
}

.profile-button:hover {
    box-shadow: none !important;
}

.profile-button.active:hover {
    background-color: var(--main-color);
    border-radius: 250px;
    color: var(--active-text-color) !important;
}

.profile-edit-section .profile-left-img {
    min-width: 90px;
    min-height: 90px;
    border-radius: 250px !important;
    max-width: 60px;
    max-height: 60px;
    background-size: cover;
    object-fit: cover;
}

.profile-edit-section .profile-right-img {
    min-width: 100px;
    min-height: 100px;
    border-radius: 250px !important;
    max-width: 60px;
    max-height: 60px;
    background-size: cover;
    object-fit: cover;
}

.profile-license-section table {
    border-collapse: separate;
    border-spacing: 0 10px;
}

.profile-license-section table tbody {
    background-color: var(--add-credit-table);
}

.profile-license-section table tbody tr td:first-child {
    border-radius: 12px 0px 0px 12px;
}

.profile-license-section table tbody tr td:last-child {
    border-radius: 0px 12px 12px 0px;
}

.support-create-section .absolute-support-button {
    position: absolute;
    right: 1rem;
    border-radius: 120px;
    bottom: 1rem;
    width: fit-content !important;
}

.support-in-page-section .customer-messsage,
.support-in-page-section .author-messsage {
    margin-top: 3rem;
}

.support-in-page-section .absolute-support-button {
    position: absolute;
    right: 1rem;
    border-radius: 120px;
    bottom: 1rem;
    width: fit-content !important;
}

.support-in-page-section .support-card {
    background-color: var(--add-credit-table);
    width: 95% !important;
}

.support-in-page-section .author-messsage .col-xl-2 {
    order: 1 !important;
}

.support-in-page-section .author-messsage .col-xl-8 {
    order: 2 !important;
}

footer .footer-top .footer-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
}

footer .footer-top .footer-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    transition: 500ms;
}

footer .footer-top .footer-sub .btn-footer-social {
    display: flex;
    flex: none;
    order: 1;
    flex-grow: 0;
    flex-direction: row;
    align-items: center;
    padding: 11px 19px;
    gap: 18px;
    border: 2px solid var(--text-color);
    border-radius: 500px;
    justify-content: space-between;
    width: 100% !important;
}

footer .footer-top .footer-sub li {
    margin-bottom: 25px;
}

footer .footer-top .footer-sub li:hover {
    transform: translateY(-5px) !important;
    transition: 500ms;
}

footer .footer-top .footer-sub a {
    color: var(--text-color) !important;
    font-weight: 600;
}

.page-section li {
    list-style: revert;
}

main {
    flex: 1;
}

.alert-danger {
    background-color: #ff4e1d !important;
    border-color: #ff4e1d !important;
    color: #FFF !important;
}

.alert-danger:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f057";
    margin-right: 1rem;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
}s

.alert-success {
    background-color: #16a34a !important;
    border-color: #16a34a !important;
    color: #FFF !important;
}

.alert-success:before {
    font-family: "Font Awesome 5 Free";
    content: "\f058";
    margin-right: 1rem;
    font-size: 17px;
    color: #FFF;
}

.alert-primary {
    background-color: #2563eb !important;
    border-color: #2563eb !important;
    color: #FFF !important;
}

.alert-warning {
    background-color: #ef8407 !important;
    border-color: #ef8407 !important;
    color: #FFF !important;
}

.alert-warning:before {
    font-family: "Font Awesome 5 Free";
    content: "\f071";
    margin-right: 1rem;
    font-size: 17px;
    color: #FFF;
    font-weight: bold;
}

button.btn.btn-outline-footer.rounded-pill {
    border-radius: 150px !important;
}

.btn-group .btn {
    border-radius: 12px !important;
}

.btn-outline-footer {
    border-color: var(--main-color);
    transition: 500ms;
    color: var(--text-color) !important;
    font-weight: 600;
}

.btn-outline-footer:hover {
    background-color: var(--main-color) !important;
    transition: 500ms;
    color: var(--active-text-color) !important;
}

.dropdown-footer-select li {
    padding: 5% !important;
}

.dropdown-footer-select a {
    color: var(--text-color) !important;
    font-weight: 600;
}

ul.dropdown-menu {
    border: 2px solid var(--main-color) !important;
}

button.btn.btn-outline-footer.show {
    border-color: var(--main-color);
}

.dropdown-footer-select .dropdown-menu.show {
    display: block;
    padding-bottom: 4rem;
    bottom: -3.3rem !important;
    margin-left: -0.3rem !important;
    z-index: 150;
    min-width: 208px;
}

button.btn.btn-outline-footer.rounded-pill {
    z-index: 1000;
    margin-left: 0.3rem;
}

.col-lg-12.footer-info .col-lg-6:last-child .dropdown-menu.show {
    z-index: 1500;
}

.col-lg-12.footer-info .col-lg-6:last-child .btn-outline-footer {
    z-index: 1600;
}

.dropdown-menu.dropdown-lg {
    margin: auto;
    left: 0;
    right: 0;
    margin: auto;
    display: grid;
    justify-items: center;
}

ul.dropdown-menu {
    background: var(--card-bg);
}

.dropdown-menu.dropdown-lg {
    min-width: calc(25px * 12) !important;
    margin-top: -3.4rem;
    margin-left: -1rem;
    margin-right: -1rem;
}

.store-price-info {
    min-height: 70px;
}

.discord-connected {
    border-color: #e2626b !important;
    border-radius: 200px !important;
}

.discord-connected:hover {
    background-color: #e2626b !important;
    color: #FFF !important;
    border-radius: 200px !important;
}

a.profile-button.btn.active:hover {
    background-color: var(--main-color) !important;
}

.store-in-page-section .store-in-page-img img {
    min-width: 500px;
    max-width: 500px;
    min-height: 500px;
    max-height: 500px;
    object-fit: contain;
}

.w-120px img {
    min-width: 120px;
    min-height: 120px;
    max-width: 120px;
    max-height: 120px;
    object-fit: cover;
}

.w-120px {
    width: 120px !important;
}

.swiper-wrapper {
    max-height: 500px;
    margin-bottom: 1rem;
    align-items: center;
}