:root {
    --yellow: #f5b50a;
    --yellow-dark: #e0a200;
    --orange: #f08a1d;
    --dark: #1a1a1a;
    --charcoal: #2b2b2b;
    --gray: #6b6b6b;
    --line: #e6e6e6;
    --bronze: #b97e2a;
    --bg: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', system-ui, sans-serif;
    color: var(--dark);
    background: var(--bg);
    line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; }

.container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 32px;
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity .45s ease, visibility .45s ease;
}
.page-loader.hide { opacity: 0; visibility: hidden; }
.loader-box { position: relative; width: 84px; height: 84px; display: grid; place-items: center; }
.loader-mark {
    width: 50px; height: 50px;
    background: var(--yellow);
    border-radius: 12px;
    display: grid; place-items: center;
    box-shadow: 0 6px 18px rgba(245,181,10,.4);
    animation: loaderPulse 1.4s ease-in-out infinite;
}
.loader-mark svg { width: 30px; height: 30px; }
.loader-ring {
    position: absolute;
    inset: 0;
    border: 3px solid rgba(245,181,10,.18);
    border-top-color: var(--yellow);
    border-radius: 50%;
    animation: loaderSpin .9s linear infinite;
}
@keyframes loaderSpin { to { transform: rotate(360deg); } }
@keyframes loaderPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(.88); } }

.topbar {
    background: var(--charcoal);
    color: #e9e9e9;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 42px;
    gap: 20px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.topbar-item svg { width: 17px; height: 17px; flex: none; color: var(--yellow); }
.topbar-center { color: #f1f1f1; }
.topbar-center svg { color: var(--orange); }

.topbar-right { gap: 18px; }

.topbar-mail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e9e9e9;
    transition: color .2s;
}
.topbar-mail:hover { color: #fff; }
.topbar-mail svg { width: 16px; height: 16px; color: #cfcfcf; }

.topbar-social { display: flex; gap: 8px; }
.soc {
    width: 24px; height: 24px;
    border-radius: 6px;
    display: grid; place-items: center;
    color: #fff;
}
.soc svg { width: 14px; height: 14px; }
.soc-fb { background: #1877f2; }
.soc-ig { background: linear-gradient(45deg,#f09433,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888); }

.header {
    background: #fff;
    box-shadow: 0 2px 14px rgba(0,0,0,.05);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 22px;
    height: 92px;
}

.logo { display: flex; align-items: center; gap: 12px; flex: none; }
.logo-img { height: 58px; width: auto; object-fit: contain; }
.logo-mark {
    width: 46px; height: 46px;
    background: var(--yellow);
    border-radius: 10px;
    display: grid; place-items: center;
    box-shadow: 0 4px 10px rgba(245,181,10,.35);
}
.logo-mark svg { width: 28px; height: 28px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong { font-size: 21px; font-weight: 800; letter-spacing: .5px; color: var(--dark); }
.logo-text em { font-size: 21px; font-weight: 800; font-style: normal; color: var(--orange); letter-spacing: .5px; }

.btn-categories {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--yellow);
    color: #fff;
    border: none;
    height: 50px;
    padding: 0 24px;
    border-radius: 11px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .4px;
    cursor: pointer;
    flex: none;
    transition: background .2s;
}
.btn-categories:hover { background: var(--yellow-dark); }
.btn-categories svg { width: 20px; height: 20px; }

.searchbar {
    flex: 1;
    display: flex;
    height: 50px;
    border: 1.5px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    min-width: 220px;
}
.searchbar input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 18px;
    font-family: inherit;
    font-size: 14px;
    color: var(--dark);
}
.searchbar input::placeholder { color: #9a9a9a; }
.searchbar button {
    width: 56px;
    border: none;
    background: var(--dark);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .2s;
}
.searchbar button:hover { background: #000; }
.searchbar button svg { width: 20px; height: 20px; }

.action {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: none;
}
.action-icon {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    color: var(--dark);
}
.action-icon svg { width: 26px; height: 26px; }
.icon-circle {
    background: var(--bronze);
    color: #fff;
    border-radius: 50%;
}
.icon-circle svg { width: 22px; height: 22px; }
.action-text { display: flex; flex-direction: column; line-height: 1.2; }
.action-text small { font-size: 12px; color: var(--gray); }
.action-text strong { font-size: 14px; font-weight: 700; color: var(--dark); }

.cart-icon { position: relative; }
.cart-badge {
    position: absolute;
    top: -2px; right: -4px;
    background: var(--bronze);
    color: #fff;
    width: 20px; height: 20px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: grid; place-items: center;
    border: 2px solid #fff;
}

.mainnav { border-top: 1px solid var(--line); }
.mainnav-inner ul {
    display: flex;
    justify-content: center;
    gap: 40px;
    height: 54px;
    align-items: center;
}
.mainnav a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .6px;
    color: #4a4a4a;
    position: relative;
    transition: color .2s;
}
.mainnav a:hover { color: var(--orange); }
.mainnav a.active { color: var(--orange); }
.mainnav a.active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -19px;
    height: 3px;
    background: var(--orange);
    border-radius: 3px 3px 0 0;
}

.hero {
    position: relative;
    background: radial-gradient(circle at 88% 12%, rgba(226,35,26,.05), transparent 40%), linear-gradient(180deg,#fafbfc 0%,#f3f4f6 100%);
    overflow: hidden;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    align-items: center;
    gap: 10px;
    padding-top: 40px;
    padding-bottom: 36px;
}

.hero-tag {
    display: inline-block;
    background: var(--yellow);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
    padding: 8px 16px;
    border-radius: 30px;
}

.hero-content h1 {
    display: flex;
    flex-direction: column;
    margin: 18px 0 14px;
    line-height: 1;
    font-family: 'Fredoka', sans-serif;
}
.hero-title-dark { font-size: 72px; font-weight: 700; color: var(--dark); letter-spacing: .5px; white-space: nowrap; }
.hero-title-accent { font-size: 72px; font-weight: 700; color: var(--yellow); letter-spacing: .5px; white-space: nowrap; }

.hero-subtitle {
    font-size: 19px;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 24px;
}

.hero-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.hero-list li { display: flex; align-items: center; gap: 11px; font-size: 16px; font-weight: 500; color: #333; }
.hero-list svg { width: 22px; height: 22px; flex: none; }

.hero-actions { display: flex; gap: 14px; flex-wrap: nowrap; }
.hbtn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    height: 52px;
    padding: 0 26px;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .4px;
    white-space: nowrap;
    transition: transform .15s, filter .2s;
}
.hbtn svg { width: 19px; height: 19px; flex: none; }
.hbtn:hover { transform: translateY(-2px); filter: brightness(.95); }
.hbtn-green { background: #25a244; color: #fff; }
.hbtn-yellow { background: var(--yellow); color: #fff; }
.hbtn-dark { background: var(--charcoal); color: #fff; }

.hero-visual { align-self: center; display: flex; align-items: center; justify-content: flex-end; }
.hero-visual img {
    width: 128%;
    max-width: none;
    height: auto;
    object-fit: contain;
    margin-right: -185px;
}

.hero-features {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}
.hero .hero-features { margin: 0 auto 44px; max-width: 1416px; }
.hero-features-inner {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 34px;
    padding: 38px 44px;
}
.feature { display: flex; align-items: center; gap: 16px; justify-content: center; }
.feature-icon {
    width: 54px; height: 54px;
    flex: none;
    display: grid; place-items: center;
    color: var(--bronze);
}
.feature-icon svg { width: 40px; height: 40px; }
.feature-text { display: flex; flex-direction: column; line-height: 1.35; }
.feature-text strong { font-size: 15px; font-weight: 700; color: var(--dark); letter-spacing: .3px; }
.feature-text small { font-size: 13px; color: var(--gray); }

.products { padding: 50px 0 64px; background: #fff; }
.products-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
    gap: 16px;
}
.products-head h2 { font-family: 'Fredoka', sans-serif; font-size: 32px; font-weight: 700; color: var(--dark); letter-spacing: .2px; }
.btn-all {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    height: 44px;
    padding: 0 20px;
    border: 1.5px solid var(--line);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .4px;
    color: var(--dark);
    white-space: nowrap;
    transition: border-color .2s, color .2s;
}
.btn-all svg { width: 17px; height: 17px; }
.btn-all:hover { border-color: var(--yellow); color: var(--orange); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}
.product {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
}
.product:hover { box-shadow: 0 12px 28px rgba(0,0,0,.09); transform: translateY(-3px); }
.product-img {
    height: 158px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 12px;
}
.product-img a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.product-img img { width: 100%; height: 100%; object-fit: contain; }
.product-body { display: flex; flex-direction: column; padding: 13px; gap: 6px; }
.product-body h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    min-height: 36px;
}
.product-size { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--gray); }
.product-size svg { width: 16px; height: 16px; }
.product-price { font-size: 19px; font-weight: 800; color: var(--dark); margin: 1px 0 3px; }
.pbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 38px;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .4px;
    transition: filter .2s;
}
.pbtn svg { width: 17px; height: 17px; flex: none; }
.pbtn:hover { filter: brightness(.93); }
.pbtn-cart { background: var(--charcoal); color: #fff; }
.pbtn-wa { background: #25a244; color: #fff; }

.teklif {
    position: relative;
    background: linear-gradient(90deg,#e2231a 0%,#c81810 60%,#a81009 100%);
    overflow: hidden;
}
.teklif-bg {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 40%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.teklif::before {
    content: "";
    position: absolute;
    top: 0; bottom: 0; right: 0;
    width: 52%;
    z-index: 1;
    background: linear-gradient(90deg,#e2231a 0%,rgba(226,35,26,.9) 30%,rgba(226,35,26,0) 62%);
    pointer-events: none;
}
.teklif-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 470px;
    gap: 60px;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.teklif-content h2 { display: flex; flex-direction: column; line-height: 1; margin-bottom: 18px; font-family: 'Fredoka', sans-serif; }
.teklif-sub { font-size: 38px; font-weight: 700; color: #fff; letter-spacing: 1.5px; }
.teklif-main { font-size: 74px; font-weight: 800; color: #fff; letter-spacing: .5px; }
.teklif-desc { font-size: 21px; font-weight: 600; color: rgba(255,255,255,.92); line-height: 1.55; margin-bottom: 32px; }

.teklif-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 520px; }
.teklif-features li { display: flex; flex-direction: column; gap: 12px; }
.tf-icon {
    width: 58px; height: 58px;
    border: 1.6px solid rgba(255,255,255,.6);
    border-radius: 50%;
    display: grid; place-items: center;
    color: #fff;
}
.tf-icon svg { width: 29px; height: 29px; }
.tf-text { font-size: 16px; font-weight: 700; color: #fff; line-height: 1.35; }

.teklif-form {
    background: #fff;
    border-radius: 14px;
    padding: 26px;
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
    display: flex;
    flex-direction: column;
    gap: 13px;
    transform: translateX(-235px);
}
.teklif-form h3 { font-size: 21px; font-weight: 800; color: var(--dark); margin-bottom: 3px; }
.teklif-form input,
.teklif-form select,
.teklif-form textarea {
    width: 100%;
    border: 1.5px solid var(--line);
    border-radius: 8px;
    padding: 0 16px;
    height: 50px;
    font-family: inherit;
    font-size: 14px;
    color: var(--dark);
    background: #fff;
    outline: none;
    transition: border-color .2s;
}
.teklif-form input::placeholder,
.teklif-form textarea::placeholder { color: #9a9a9a; }
.teklif-form input:focus,
.teklif-form select:focus,
.teklif-form textarea:focus { border-color: var(--yellow); }
.teklif-form textarea { height: 90px; padding: 12px 16px; resize: vertical; line-height: 1.5; }

.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 42px; cursor: pointer; color: #555; }
.select-wrap svg {
    position: absolute;
    right: 14px; top: 50%;
    transform: translateY(-50%);
    width: 20px; height: 20px;
    color: #777;
    pointer-events: none;
}

.teklif-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 54px;
    border: none;
    border-radius: 9px;
    background: var(--charcoal);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .4px;
    cursor: pointer;
    margin-top: 4px;
    transition: background .2s;
}
.teklif-form button svg { width: 19px; height: 19px; }
.teklif-form button:hover { background: #000; }

.section-title { font-family: 'Fredoka', sans-serif; font-size: 32px; font-weight: 700; color: var(--dark); letter-spacing: .2px; margin-bottom: 26px; }

.categories { padding: 56px 0 34px; background: #fff; }
.cat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
}
.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 34px 22px 28px;
    gap: 18px;
    transition: box-shadow .2s, transform .2s, border-color .2s;
}
.cat-card:hover { box-shadow: 0 12px 28px rgba(0,0,0,.09); transform: translateY(-3px); border-color: #e0e0e0; }
.cat-img { height: 120px; display: flex; align-items: center; justify-content: center; }
.cat-img img { width: 100%; height: 100%; object-fit: contain; }
.cat-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); text-align: center; }
.cat-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 22px;
    border: 1.5px solid var(--line);
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    color: var(--dark);
    transition: border-color .2s, background .2s, color .2s;
}
.cat-btn:hover { border-color: var(--yellow); background: var(--yellow); color: #fff; }

.why { padding: 34px 0 70px; background: #fff; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
}
.why-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.why-icon { color: var(--dark); }
.why-icon svg { width: 48px; height: 48px; }
.why-item h3 { font-size: 16px; font-weight: 700; color: var(--dark); }
.why-item p { font-size: 13px; color: var(--gray); line-height: 1.45; }

.wa-cta { padding: 0 0 64px; background: #fff; }
.wa-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--dark);
    border-radius: 14px;
    padding: 26px 34px;
}
.wa-circle {
    width: 62px; height: 62px;
    flex: none;
    background: #25a244;
    border-radius: 50%;
    display: grid; place-items: center;
    color: #fff;
}
.wa-circle svg { width: 34px; height: 34px; }
.wa-text { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.wa-text small { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; color: #2ecc5b; }
.wa-text strong { font-family: 'Fredoka', sans-serif; font-size: 32px; font-weight: 800; color: #fff; letter-spacing: .5px; line-height: 1; }
.wa-text span { font-size: 14px; color: #b9b9b9; }
.wa-btn {
    flex: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 52px;
    padding: 0 26px;
    background: #25a244;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .4px;
    transition: background .2s, transform .15s;
}
.wa-btn svg { width: 20px; height: 20px; }
.wa-btn:hover { background: #1f8b3a; transform: translateY(-2px); }

.refs { padding: 56px 0 70px; background: #fff; }
.refs-inner { display: grid; grid-template-columns: 1fr 1.75fr; gap: 50px; align-items: start; }

.testi-box { display: flex; align-items: center; gap: 14px; }
.testi-arrow {
    width: 40px; height: 40px;
    flex: none;
    border: 1.5px solid var(--line);
    background: #fff;
    border-radius: 50%;
    display: grid; place-items: center;
    color: #6b6b6b;
    cursor: pointer;
    transition: border-color .2s, color .2s, background .2s;
}
.testi-arrow svg { width: 18px; height: 18px; }
.testi-arrow:hover { border-color: var(--yellow); background: var(--yellow); color: var(--dark); }
.testi-card {
    flex: 1;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 34px rgba(0,0,0,.1);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.stars { display: flex; gap: 3px; color: var(--yellow); }
.stars svg { width: 18px; height: 18px; }
.testi-card p { font-size: 14px; color: #444; line-height: 1.6; }
.testi-author { display: flex; flex-direction: column; gap: 2px; }
.testi-author strong { font-size: 15px; font-weight: 700; color: var(--dark); }
.testi-author span { font-size: 13px; color: var(--gray); }

.logos-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.logo-card {
    height: 110px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: box-shadow .2s, border-color .2s;
}
.logo-card:hover { box-shadow: 0 10px 24px rgba(0,0,0,.08); border-color: #e0e0e0; }
.logo-card img { max-width: 100%; max-height: 100%; object-fit: contain; }
.refs-all {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 18px;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    transition: color .2s;
}
.refs-all svg { width: 17px; height: 17px; }
.refs-all:hover { color: var(--orange); }

.footer { background: #1f1f1f; color: #c4c4c4; }
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.6fr 1.3fr;
    gap: 36px;
    padding-top: 56px;
    padding-bottom: 46px;
}
.footer-col h4 { font-size: 15px; font-weight: 700; color: #fff; letter-spacing: .6px; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a { font-size: 14px; color: #a8a8a8; transition: color .2s; }
.footer-col ul a:hover { color: var(--yellow); }

.footer-logo { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: .5px; }
.footer-brand p { font-size: 14px; color: #a8a8a8; line-height: 1.6; margin: 14px 0 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social .soc { width: 36px; height: 36px; border-radius: 8px; }
.footer-social .soc svg { width: 18px; height: 18px; }
.soc-in { background: #0a66c2; color: #fff; }

.footer-contact ul { gap: 15px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; color: #a8a8a8; line-height: 1.5; }
.footer-contact svg { width: 19px; height: 19px; flex: none; color: var(--yellow); margin-top: 2px; }
.footer-contact strong { color: #e6e6e6; font-weight: 700; }

.footer-news p { font-size: 14px; color: #a8a8a8; line-height: 1.6; margin-bottom: 16px; }
.news-form { display: flex; flex-direction: column; gap: 12px; }
.news-form input {
    height: 46px;
    border: 1px solid #3a3a3a;
    background: #2a2a2a;
    border-radius: 8px;
    padding: 0 14px;
    font-family: inherit;
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: border-color .2s;
}
.news-form input::placeholder { color: #808080; }
.news-form input:focus { border-color: var(--yellow); }
.news-form button {
    height: 46px;
    border: none;
    border-radius: 8px;
    background: var(--yellow);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    cursor: pointer;
    transition: background .2s;
}
.news-form button:hover { background: var(--yellow-dark); }

.footer-bottom { border-top: 1px solid #333; }
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 20px;
}
.copyright { font-size: 13px; color: #8c8c8c; }
.pay-logos { display: flex; align-items: center; gap: 10px; }
.pay {
    height: 30px;
    min-width: 48px;
    padding: 0 10px;
    background: #fff;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    font-style: italic;
}
.pay-visa { color: #1a1f71; }
.pay-mc { padding: 0 8px; }
.pay-mc svg { width: 36px; height: 24px; }
.pay-iyzico { color: #1eb9c3; font-style: normal; text-transform: lowercase; }
.pay-paytr { color: #1a1a1a; font-style: normal; }
.pay-paytr em { color: var(--orange); font-style: normal; }

.page-head {
    background: linear-gradient(180deg,#f4f5f7 0%,#eef0f3 100%);
    border-bottom: 1px solid var(--line);
    padding: 36px 0;
}
.page-head h1 { font-size: 34px; font-weight: 800; color: var(--dark); letter-spacing: .3px; margin-bottom: 10px; }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 13px; color: var(--gray); }
.breadcrumb a { color: var(--gray); transition: color .2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--dark); font-weight: 600; }
.breadcrumb svg { width: 14px; height: 14px; }

.page { padding: 56px 0 70px; background: #fff; }
.page-narrow { max-width: 920px; }

.prose h2 { font-size: 22px; font-weight: 800; color: var(--dark); margin: 30px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin: 22px 0 10px; }
.prose p { font-size: 15px; color: #4a4a4a; line-height: 1.8; margin-bottom: 14px; }
.prose ul { margin: 0 0 16px; padding-left: 4px; display: flex; flex-direction: column; gap: 10px; }
.prose ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: #4a4a4a; line-height: 1.7; }
.prose ul li svg { width: 20px; height: 20px; flex: none; color: var(--orange); margin-top: 2px; }
.prose strong { color: var(--dark); font-weight: 700; }
.prose .updated { font-size: 13px; color: var(--gray); margin-bottom: 24px; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-grid + .about-grid { margin-top: 56px; }
.about-img { border-radius: 16px; overflow: hidden; box-shadow: 0 18px 44px rgba(0,0,0,.12); }
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-text h2 { font-size: 28px; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.about-text p { font-size: 15px; color: #4a4a4a; line-height: 1.8; margin-bottom: 14px; }

.stats-band { background: var(--dark); padding: 46px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat { text-align: center; color: #fff; }
.stat strong { display: block; font-family: 'Fredoka', sans-serif; font-size: 46px; font-weight: 800; color: #fff; line-height: 1; }
.stat span { font-size: 14px; color: #c4c4c4; margin-top: 8px; display: block; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 30px; }
.value-card { border: 1px solid var(--line); border-radius: 14px; padding: 28px 24px; background: #fafafa; }
.value-card .v-icon { width: 56px; height: 56px; border-radius: 12px; background: rgba(245,181,10,.16); display: grid; place-items: center; color: #9a6c00; margin-bottom: 16px; }
.value-card .v-icon svg { width: 30px; height: 30px; }
.value-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 26px; flex-wrap: wrap; }
.toolbar .count { font-size: 14px; color: var(--gray); }
.toolbar .sort { display: flex; align-items: center; gap: 10px; }
.toolbar .sort .select-wrap { min-width: 220px; }

.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 30px; align-items: start; }
.shop-aside { border: 1px solid var(--line); border-radius: 14px; padding: 22px; position: sticky; top: 110px; }
.shop-aside h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.filter-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 8px; }
.filter-list a { display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; border-radius: 8px; font-size: 14px; color: #4a4a4a; transition: background .2s, color .2s; }
.filter-list a:hover, .filter-list a.active { background: rgba(245,181,10,.16); color: #9a6c00; font-weight: 600; }
.filter-list a small { color: #9a9a9a; font-weight: 500; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card { display: flex; align-items: flex-start; gap: 16px; border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
.contact-card .c-icon { width: 50px; height: 50px; flex: none; border-radius: 12px; background: rgba(245,181,10,.16); display: grid; place-items: center; color: #9a6c00; }
.contact-card .c-icon svg { width: 26px; height: 26px; }
.contact-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.contact-card p { font-size: 14px; color: var(--gray); line-height: 1.5; }

.form-card { border: 1px solid var(--line); border-radius: 16px; padding: 30px; }
.form-card h2 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.form-card .form-sub { font-size: 14px; color: var(--gray); margin-bottom: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--dark); }
.field input, .field select, .field textarea {
    width: 100%;
    border: 1.5px solid var(--line);
    border-radius: 8px;
    padding: 0 16px;
    height: 50px;
    font-family: inherit;
    font-size: 14px;
    color: var(--dark);
    outline: none;
    background: #fff;
    transition: border-color .2s;
}
.field textarea { height: 120px; padding: 12px 16px; resize: vertical; line-height: 1.5; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--yellow); }
.field input::placeholder, .field textarea::placeholder { color: #9a9a9a; }
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 54px;
    padding: 0 32px;
    border: none;
    border-radius: 11px;
    background: var(--yellow);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .4px;
    cursor: pointer;
    transition: background .2s, transform .15s;
}
.btn-submit svg { width: 19px; height: 19px; }
.btn-submit:hover { background: var(--yellow-dark); transform: translateY(-2px); }
.btn-submit.full { width: 100%; }
.btn-submit.dark { background: var(--charcoal); color: #fff; }
.btn-submit.dark:hover { background: #000; }

.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 30px; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 14px; }
.cart-row { display: grid; grid-template-columns: 90px 1fr auto auto auto; gap: 18px; align-items: center; border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
.cart-row .ci-img { width: 90px; height: 90px; border-radius: 10px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; padding: 8px; }
.cart-row .ci-img img { width: 100%; height: 100%; object-fit: contain; }
.cart-row h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.cart-row .ci-meta { font-size: 13px; color: var(--gray); }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 8px; overflow: hidden; }
.qty button { width: 34px; height: 38px; border: none; background: #fafafa; cursor: pointer; font-size: 18px; color: var(--dark); }
.qty input { width: 42px; height: 38px; border: none; text-align: center; font-family: inherit; font-size: 14px; outline: none; }
.ci-price { font-size: 16px; font-weight: 800; color: var(--dark); white-space: nowrap; }
.ci-remove { width: 38px; height: 38px; border: 1.5px solid var(--line); border-radius: 8px; background: #fff; display: grid; place-items: center; color: #c0392b; cursor: pointer; transition: background .2s, border-color .2s; }
.ci-remove:hover { background: #fdecea; border-color: #e8b0a8; }
.ci-remove svg { width: 18px; height: 18px; }

.summary { border: 1px solid var(--line); border-radius: 16px; padding: 24px; position: sticky; top: 110px; }
.summary h3 { font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 18px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; color: #4a4a4a; padding: 9px 0; }
.summary-row.total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 16px; font-size: 18px; font-weight: 800; color: var(--dark); }
.summary .btn-submit { margin-top: 18px; }
.coupon { display: flex; gap: 10px; margin: 16px 0; }
.coupon input { flex: 1; border: 1.5px solid var(--line); border-radius: 8px; padding: 0 14px; height: 46px; font-family: inherit; font-size: 14px; outline: none; }
.coupon button { height: 46px; padding: 0 18px; border: none; border-radius: 8px; background: var(--charcoal); color: #fff; font-family: inherit; font-weight: 700; font-size: 13px; cursor: pointer; }

.empty-state { text-align: center; padding: 60px 20px; }
.empty-state svg { width: 70px; height: 70px; color: #cfcfcf; margin: 0 auto 18px; }
.empty-state h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.empty-state p { font-size: 14px; color: var(--gray); margin-bottom: 22px; }

.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.pd-gallery { border: 1px solid var(--line); border-radius: 16px; background: #fff; padding: 30px; display: flex; align-items: center; justify-content: center; min-height: 380px; }
.pd-gallery img { max-width: 100%; max-height: 420px; object-fit: contain; }
.pd-cat { display: inline-block; background: rgba(245,181,10,.16); color: #9a6c00; font-size: 12px; font-weight: 700; letter-spacing: .4px; padding: 6px 13px; border-radius: 20px; }
.pd-info h1 { font-size: 30px; font-weight: 800; color: var(--dark); margin: 14px 0 16px; line-height: 1.2; }
.pd-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 22px; }
.pd-price strong { font-size: 34px; font-weight: 800; color: var(--dark); }
.pd-price .pd-old { font-size: 18px; color: #9a9a9a; text-decoration: line-through; }
.pd-meta { display: flex; flex-direction: column; gap: 11px; margin-bottom: 22px; }
.pd-meta li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: #4a4a4a; }
.pd-meta svg { width: 19px; height: 19px; color: var(--orange); flex: none; }
.pd-desc { font-size: 15px; color: #4a4a4a; line-height: 1.8; margin-bottom: 26px; border-top: 1px solid var(--line); padding-top: 20px; }
.pd-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.account-grid { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: start; }
.account-side { border: 1px solid var(--line); border-radius: 16px; padding: 24px; position: sticky; top: 110px; }
.acc-user { display: flex; align-items: center; gap: 14px; }
.acc-av { width: 52px; height: 52px; border-radius: 50%; background: var(--dark); color: #fff; display: grid; place-items: center; font-size: 22px; font-weight: 700; flex: none; }
.acc-user strong { display: block; font-size: 15px; color: var(--dark); }
.acc-user span { font-size: 13px; color: var(--gray); }
.btn-submit.full { width: 100%; }
.acc-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.acc-table th { text-align: left; padding: 11px 12px; background: #f7f8fa; color: var(--gray); font-size: 12px; text-transform: uppercase; letter-spacing: .4px; border-bottom: 1px solid var(--line); }
.acc-table td { padding: 12px; border-bottom: 1px solid var(--line); }

.auth-wrap { max-width: 460px; margin: 0 auto; }
.auth-tabs { display: flex; gap: 8px; margin-bottom: 22px; background: #f2f2f2; padding: 5px; border-radius: 10px; }
.auth-tabs button { flex: 1; height: 44px; border: none; background: transparent; border-radius: 8px; font-family: inherit; font-size: 14px; font-weight: 700; color: var(--gray); cursor: pointer; transition: background .2s, color .2s; }
.auth-tabs button.active { background: #fff; color: var(--dark); box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.auth-panel { display: none; }
.auth-panel.active { display: block; }
.auth-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; font-size: 13px; }
.auth-row label { display: flex; align-items: center; gap: 8px; color: #4a4a4a; }
.auth-row a { color: var(--orange); font-weight: 600; }

.refs-page-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }

.feature-band { background: linear-gradient(120deg,#1a1a1a 0%,#2b2b2b 100%); color: #fff; padding: 50px 0; }
.feature-band-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 44px; align-items: center; }
.fb-tag { display: inline-block; background: var(--yellow); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .6px; padding: 8px 16px; border-radius: 30px; }
.fb-text h2 { font-family: 'Fredoka', sans-serif; font-size: 42px; font-weight: 800; line-height: 1.05; margin: 16px 0 14px; }
.fb-text h2 span { color: var(--yellow); }
.fb-text p { font-size: 16px; color: #c7c7c7; line-height: 1.7; margin-bottom: 24px; max-width: 600px; }
.fb-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.fb-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fb-stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 20px; }
.fb-stat strong { display: block; font-family: 'Fredoka', sans-serif; font-size: 30px; font-weight: 800; color: var(--yellow); line-height: 1; }
.fb-stat span { font-size: 13px; color: #bdbdbd; margin-top: 6px; display: block; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 30px; }
.step { text-align: center; }
.step .s-num { width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%; background: var(--yellow); color: var(--dark); display: grid; place-items: center; font-family: 'Fredoka', sans-serif; font-size: 26px; font-weight: 800; }
.step h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.step p { font-size: 13px; color: var(--gray); line-height: 1.6; }

@media (max-width: 1100px) {
    .action-account .action-text, .action-wa .action-text small { display: none; }
    .hero-title-dark, .hero-title-accent { font-size: 40px; }
    .products-grid { grid-template-columns: repeat(4, 1fr); }
    .cat-grid { grid-template-columns: repeat(4, 1fr); }
    .why-grid { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
    .refs-page-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 992px) {
    .topbar-center { display: none; }
    .header-inner { flex-wrap: wrap; height: auto; padding-top: 16px; padding-bottom: 16px; gap: 16px; }
    .searchbar { order: 5; flex-basis: 100%; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { justify-content: center; }
    .hero-features-inner { grid-template-columns: repeat(2,1fr); gap: 24px; }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .teklif-inner { grid-template-columns: 1fr; gap: 30px; }
    .teklif-bg { display: none; }
    .teklif-main { font-size: 40px; }
    .teklif-form { transform: none; }
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .refs-inner { grid-template-columns: 1fr; gap: 40px; }
    .logos-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr 1fr; row-gap: 40px; }
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .shop-layout { grid-template-columns: 1fr; }
    .shop-aside { position: static; }
    .contact-grid { grid-template-columns: 1fr; }
    .cart-layout { grid-template-columns: 1fr; }
    .account-grid { grid-template-columns: 1fr; }
    .account-side { position: static; }
    .summary { position: static; }
    .value-grid { grid-template-columns: 1fr 1fr; }
    .refs-page-grid { grid-template-columns: repeat(3, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
}

@media (max-width: 768px) {
    .topbar-mail span { display: none; }
    .action-text { display: none; }
    .btn-categories span { display: none; }
    .btn-categories { padding: 0 14px; }
    .mainnav-inner ul { gap: 18px; overflow-x: auto; justify-content: flex-start; }
    .mainnav a { white-space: nowrap; }
    .mainnav a.active::after { bottom: -16px; }
    .hero-title-dark, .hero-title-accent { font-size: 32px; }
    .hero-actions .hbtn { flex: 1; justify-content: center; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .products-head { flex-direction: column; align-items: flex-start; }
    .teklif-features { gap: 24px; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .wa-card { flex-direction: column; text-align: center; gap: 18px; }
    .wa-text { align-items: center; }
    .logos-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-bottom-inner { flex-direction: column; height: auto; padding-top: 18px; padding-bottom: 18px; gap: 14px; }
    .form-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; row-gap: 30px; }
    .value-grid { grid-template-columns: 1fr; }
    .refs-page-grid { grid-template-columns: repeat(2, 1fr); }
    .cart-row { grid-template-columns: 70px 1fr; row-gap: 12px; }
    .cart-row .ci-img { width: 70px; height: 70px; }
    .feature-band-inner { grid-template-columns: 1fr; gap: 28px; }
    .fb-text h2 { font-size: 32px; }
    .product-detail { grid-template-columns: 1fr; gap: 26px; }
    .fb-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .logo-text strong, .logo-text em { font-size: 18px; }
    .topbar { font-size: 11px; }
    .hero-features-inner { grid-template-columns: 1fr; }
    .hero-title-dark, .hero-title-accent { font-size: 27px; }
    .products-grid { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .refs-page-grid { grid-template-columns: 1fr 1fr; }
    .page-head h1 { font-size: 26px; }
}
