/* ═══════════════════════════════════════════════════
   SWEET TÜRKİYE — CUSTOM SECTIONS
   Corporate Colors: #d6336c (Pink) · #0097A7 (Teal)
   ═══════════════════════════════════════════════════ */

:root {
    --kv-pink: #d6336c;
    --kv-pink-dark: #b82a5a;
    --kv-pink-light: #f2c4d4;
    --kv-teal: #0097A7;
    --kv-red: #E31E24;
    --kv-dark: #1a1a1a;
    --kv-gray: #666;
    --kv-light: #f8f8f9;
    --kv-cream: #f5f0eb;
    --kv-white: #f8f8f9;
    --kv-font: 'Montserrat', sans-serif;
    --kv-serif: 'Montserrat', sans-serif;
    --kervan-red: #d6336c;
    --kervan-red-dark: #cf3f71;
    --white: #FFFFFF;
    --font-main: 'Montserrat', sans-serif;
    --font-display: 'Montserrat', sans-serif;
}

/* ═══════════════════════════════════════════════════
   BASE RESET
   ═══════════════════════════════════════════════════ */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: var(--font-main);
    overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════
   HEADER — Base
   ═══════════════════════════════════════════════════ */
.kv-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .4s cubic-bezier(.4,0,.2,1);
}
.kv-header.scrolled {
    padding: 14px 48px;
}

.kv-logo img {
    height: 64px;
    width: auto;
    transition: height .3s;
}
.kv-header.scrolled .kv-logo img { height: 64px; }

.kv-header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.kv-social {
    display: flex;
    gap: 8px;
}
.kv-social a {
    width: 38px; height: 38px;
    border: 1.5px solid rgba(255,255,255,.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 15px;
    text-decoration: none;
    transition: all .3s;
}
.kv-social a:hover {
    background: var(--white);
    color: var(--kv-pink);
    border-color: var(--white);
    transform: scale(1.1);
}

.kv-nav-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.4);
    border-radius: 50px;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 500;
    padding: 9px 24px;
    cursor: pointer;
    transition: all .3s;
    letter-spacing: .3px;
}
.kv-nav-btn:hover {
    background: var(--white);
    color: var(--kv-pink);
    border-color: var(--white);
}

/* ─── Language Dropdown (Header) ─── */
.kv-lang {
    position: relative;
    margin-left: 4px;
}
.kv-lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.12);
    border: 1.5px solid rgba(255,255,255,.25);
    border-radius: 50px;
    padding: 8px 12px 8px 10px;
    cursor: pointer;
    transition: all .3s;
    color: #fff;
}
.kv-lang-toggle:hover {
    background: rgba(255,255,255,.22);
    border-color: rgba(255,255,255,.4);
}
.kv-lang-globe {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.kv-lang-code {
    font-family: var(--kv-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
}
.kv-lang-chevron {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform .3s;
}
.kv-lang.open .kv-lang-chevron {
    transform: rotate(180deg);
}
.kv-lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 170px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,.15);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .25s cubic-bezier(.4,0,.2,1);
    z-index: 999;
}
.kv-lang.open .kv-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.kv-lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    font-family: var(--kv-font);
    font-size: 13px;
    font-weight: 600;
    color: var(--kv-dark);
    text-decoration: none;
    transition: background .2s;
}
.kv-lang-option:hover {
    background: #f5f5f7;
}
.kv-lang-option.active {
    background: var(--kv-pink);
    color: #fff;
}
.kv-lang-flag {
    font-size: 18px;
    line-height: 1;
}

/* Scrolled / dark header variants */
.kv-header.scrolled .kv-lang-toggle,
.kv-header.dark-mode .kv-lang-toggle {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0,0,0,.12);
    color: var(--kv-dark);
}
.kv-header.scrolled .kv-lang-toggle:hover,
.kv-header.dark-mode .kv-lang-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0,0,0,.2);
}
.kv-header.menu-open .kv-lang-toggle {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.25);
    color: #fff;
}

/* ─── Language Selector (Fullscreen Menu) ─── */
.kv-menu-lang {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}
.kv-menu-lang-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,.25);
    color: rgba(255,255,255,.7);
    font-family: var(--kv-font);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s;
}
.kv-menu-lang-item:hover {
    border-color: rgba(255,255,255,.5);
    color: #fff;
}
.kv-menu-lang-item.active {
    background: #fff;
    border-color: #fff;
    color: var(--kv-pink);
}

.kv-menu-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-left: 6px;
    padding: 6px;
    border: none;
    background: none;
}
.kv-hamburger {
    width: 28px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.kv-hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--white);
    border-radius: 2px;
    transition: all .4s cubic-bezier(.4,0,.2,1);
    transform-origin: center;
}
.kv-hamburger span:nth-child(2) { width: 70%; margin-left: auto; }

.kv-menu-trigger:hover .kv-hamburger span:nth-child(2) { width: 100%; }

.kv-menu-trigger.active .kv-hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.kv-menu-trigger.active .kv-hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.kv-menu-trigger.active .kv-hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.kv-menu-label {
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════
   FULLSCREEN MENU OVERLAY
   ═══════════════════════════════════════════════════ */
.kv-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 90;
    pointer-events: none;
    overflow: hidden;
}
.kv-menu-overlay.open {
    pointer-events: all;
}

.kv-menu-curtain {
    position: absolute;
    inset: 0;
    display: flex;
}
.kv-menu-curtain-panel {
    flex: 1;
    background: var(--kv-pink);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .5s cubic-bezier(.77,0,.18,1);
}
.kv-menu-curtain-panel:nth-child(1) { transition-delay: 0s; }
.kv-menu-curtain-panel:nth-child(2) { transition-delay: .06s; }
.kv-menu-curtain-panel:nth-child(3) { transition-delay: .12s; }
.kv-menu-curtain-panel:nth-child(4) { transition-delay: .18s; }
.kv-menu-curtain-panel:nth-child(5) { transition-delay: .24s; }

.kv-menu-overlay.open .kv-menu-curtain-panel {
    transform: scaleY(1);
}

.kv-menu-bg {
    position: absolute;
    inset: 0;
    background: #cf3f71;
    opacity: 0;
    transition: opacity .4s .35s;
}
.kv-menu-overlay.open .kv-menu-bg { opacity: 1; }

.kv-menu-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 48px 60px;
    opacity: 0;
    transition: opacity .4s .5s;
}
.kv-menu-overlay.open .kv-menu-content { opacity: 1; }

.kv-menu-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}
.kv-menu-nav li {
    overflow: hidden;
    margin-bottom: 8px;
}
.kv-menu-nav li a {
    display: inline-block;
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    line-height: 1.2;
    position: relative;
    transform: translateY(110%);
    transition: transform .6s cubic-bezier(.4,0,.2,1), color .3s;
    letter-spacing: -0.5px;
}
.kv-menu-overlay.open .kv-menu-nav li a {
    transform: translateY(0);
}
.kv-menu-nav li:nth-child(1) a { transition-delay: .45s; }
.kv-menu-nav li:nth-child(2) a { transition-delay: .52s; }
.kv-menu-nav li:nth-child(3) a { transition-delay: .59s; }
.kv-menu-nav li:nth-child(4) a { transition-delay: .66s; }
.kv-menu-nav li:nth-child(5) a { transition-delay: .73s; }

.kv-menu-nav li a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 2px;
    width: 0; height: 3px;
    background: var(--white);
    transition: width .4s cubic-bezier(.4,0,.2,1);
}
.kv-menu-nav li a:hover::after { width: 100%; }
.kv-menu-nav li a:hover { color: rgba(255,255,255,.85); }

.kv-menu-nav li a .kv-nav-idx {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 600;
    opacity: .45;
    vertical-align: super;
    margin-right: 8px;
    letter-spacing: 0;
}

.kv-menu-footer {
    position: absolute;
    bottom: 40px;
    left: 48px;
    right: 48px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    opacity: 0;
    transform: translateY(20px);
    transition: all .5s .7s;
}
.kv-menu-overlay.open .kv-menu-footer {
    opacity: 1;
    transform: translateY(0);
}
.kv-menu-footer-col {
    color: rgba(255,255,255,.6);
    font-size: 13px;
    line-height: 1.8;
}
.kv-menu-footer-col a {
    color: var(--white);
    text-decoration: none;
    transition: opacity .3s;
}
.kv-menu-footer-col a:hover { opacity: .7; }
.kv-menu-footer-col .kv-footer-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: rgba(255,255,255,.35);
    margin-bottom: 6px;
}
.kv-menu-social-row {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}
.kv-menu-social-row a {
    width: 42px; height: 42px;
    border: 1.5px solid rgba(255,255,255,.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: all .3s;
}
.kv-menu-social-row a:hover {
    background: var(--white);
    color: var(--kv-pink);
    border-color: var(--white);
    transform: translateY(-3px);
}

.kv-menu-overlay.closing .kv-menu-content { opacity: 0; transition: opacity .2s; }
.kv-menu-overlay.closing .kv-menu-footer { opacity: 0; transition: opacity .15s; }
.kv-menu-overlay.closing .kv-menu-nav li a { transform: translateY(-110%); transition-delay: 0s !important; }
.kv-menu-overlay.closing .kv-menu-bg { opacity: 0; transition: opacity .3s .1s; }
.kv-menu-overlay.closing .kv-menu-curtain-panel {
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .45s cubic-bezier(.77,0,.18,1);
}
.kv-menu-overlay.closing .kv-menu-curtain-panel:nth-child(5) { transition-delay: 0s; }
.kv-menu-overlay.closing .kv-menu-curtain-panel:nth-child(4) { transition-delay: .04s; }
.kv-menu-overlay.closing .kv-menu-curtain-panel:nth-child(3) { transition-delay: .08s; }
.kv-menu-overlay.closing .kv-menu-curtain-panel:nth-child(2) { transition-delay: .12s; }
.kv-menu-overlay.closing .kv-menu-curtain-panel:nth-child(1) { transition-delay: .16s; }

/* ═══════════════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════════════ */
.kv-hero {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.kv-hero-swiper,
.kv-hero-swiper .swiper-wrapper,
.kv-hero-swiper .swiper-slide {
    height: 100%;
}

.kv-hero-slide {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.kv-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 6s ease-out;
}
.swiper-slide-active .kv-slide-bg {
    transform: scale(1);
}
.kv-slide-bg--mobile { display: none; }
@media (max-width: 767px) {
    .kv-slide-bg--desktop { display: none; }
    .kv-slide-bg--mobile { display: block; }
}

.kv-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0,0,0,.55) 0%,
        rgba(0,0,0,.35) 40%,
        rgba(0,0,0,.15) 70%,
        transparent 100%
    );
    z-index: 1;
}

.kv-hero-content {
    position: relative;
    z-index: 5;
    padding: 0 48px;
    width: 100%;
    max-width: 680px;
}

.kv-hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(44px, 5.5vw, 60px);
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 24px;
    text-shadow: 0 4px 40px rgba(0,0,0,.3);
}

.kv-hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,.85);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 36px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,.2);
}

.kv-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255,255,255,.65);
    border-radius: 50px;
    padding: 13px 34px;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all .35s;
    background: transparent;
    letter-spacing: .3px;
}
.kv-hero-btn:hover {
    background: var(--white);
    color: #111;
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,.2);
}

.kv-anim {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity .7s ease, transform .7s ease;
}
.swiper-slide-active .kv-anim { opacity: 1; transform: translateY(0); }
.swiper-slide-active .kv-anim-d1 { transition-delay: .2s; }
.swiper-slide-active .kv-anim-d2 { transition-delay: .4s; }
.swiper-slide-active .kv-anim-d3 { transition-delay: .6s; }

.kv-pagination {
    position: absolute;
    bottom: 48px;
    left: 48px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
}
.kv-page-num {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.35);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all .35s;
}
.kv-page-num.active {
    color: var(--white);
    border-color: var(--white);
}
.kv-page-num:hover:not(.active) {
    color: rgba(255,255,255,.7);
    border-color: rgba(255,255,255,.25);
}

.kv-scroll-hint {
    position: absolute;
    bottom: 48px;
    right: 48px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.kv-scroll-hint span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,.4);
    font-weight: 600;
    writing-mode: vertical-rl;
}
.kv-scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,.2);
    position: relative;
    overflow: hidden;
}
.kv-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

/* ═══════════════════════════════════════════════════
   BASE RESPONSIVE — Header, Menu, Hero
   ═══════════════════════════════════════════════════ */
@media (max-width: 992px) {
    .kv-header { padding: 16px 24px; }
    .kv-header.scrolled { padding: 12px 24px; }
    .kv-nav-btn { display: none; }
    .kv-social { display: none; }
    .kv-lang { display: none; }
    .kv-hero-content { padding: 0 24px; }
    .kv-pagination { left: 24px; bottom: 28px; }
    .kv-scroll-hint { right: 24px; bottom: 28px; }
    .kv-menu-footer { left: 24px; right: 24px; flex-direction: column; gap: 24px; align-items: flex-start; }
}

@media (max-width: 768px) {
    .kv-menu-label { display: none; }
}

@media (max-width: 576px) {
    .kv-header { padding: 12px 16px; }
    .kv-logo img { height: 40px; }
    .kv-header.scrolled .kv-logo img { height: 40px; }
    .kv-hero-content { padding: 0 16px; }
    .kv-hero-title { font-size: clamp(32px, 9vw, 48px); }
    .kv-pagination { left: 16px; bottom: 20px; }
    .kv-page-num { width: 36px; height: 36px; font-size: 11px; }
    .kv-scroll-hint { display: none; }
    .kv-menu-content { padding: 80px 24px 120px; }
}

/* ═══════════════════════════════════════════════════
   HEADER: DARK MODE + scroll behaviour
   ═══════════════════════════════════════════════════ */
.kv-header {
    transition: transform .35s cubic-bezier(.4,0,.2,1), background .3s, box-shadow .3s;
}
.kv-header.kv-header-hidden {
    transform: translateY(-100%);
}
.kv-logo-dark { display: none; }
.kv-header.dark-mode {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.kv-header.dark-mode .kv-logo-white { display: none; }
.kv-header.dark-mode .kv-logo-dark { display: block; }
.kv-header.dark-mode .kv-social a {
    border-color: rgba(0,0,0,.15);
    color: var(--kv-dark);
}
.kv-header.dark-mode .kv-social a:hover {
    background: var(--kv-pink);
    color: #fff;
    border-color: var(--kv-pink);
}
.kv-header.dark-mode .kv-nav-btn {
    border-color: rgba(0,0,0,.18);
    color: var(--kv-dark);
}
.kv-header.dark-mode .kv-nav-btn:hover {
    background: var(--kv-teal);
    color: #fff;
    border-color: var(--kv-teal);
}
.kv-header.dark-mode .kv-hamburger span { background: var(--kv-dark); }
.kv-header.dark-mode .kv-menu-label { color: var(--kv-dark); }
.kv-header.dark-mode.scrolled { background: rgba(255,255,255,.97); }

/* When menu is open, revert header to transparent (menu overlay style) */
.kv-header.menu-open,
.kv-header.menu-open.dark-mode,
.kv-header.menu-open.scrolled {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
}
.kv-header.menu-open .kv-logo-dark { display: none !important; }
.kv-header.menu-open .kv-logo-white { display: block !important; }
.kv-header.menu-open .kv-social a {
    border-color: rgba(255,255,255,.35);
    color: #fff;
}
.kv-header.menu-open .kv-nav-btn {
    border-color: rgba(255,255,255,.4);
    color: #fff;
}
.kv-header.menu-open .kv-hamburger span { background: #fff !important; }
.kv-header.menu-open .kv-menu-label { color: #fff !important; }

/* ═══════════════════════════════════════════════════
   SECTION: INTRO (hero altı)
   ═══════════════════════════════════════════════════ */
.kv-intro {
    position: relative;
    background: var(--kv-white);
    padding: 100px 0 80px;
    overflow: hidden;
}

.kv-intro-curve {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.kv-intro-curve-path {
    opacity: .75;
}

.kv-intro-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

.kv-intro-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
}

.kv-intro-text {
    flex: 0 0 38%;
    max-width: 380px;
    padding-top: 60px;
}
.kv-intro-text p {
    font-size: 15px;
    color: var(--kv-gray);
    line-height: 1.8;
    margin-bottom: 32px;
}
.kv-intro-text p strong {
    color: var(--kv-dark);
    font-weight: 700;
}

.kv-intro-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--kv-pink);
    color: #fff;
    font-family: var(--kv-font);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background .3s;
}
.kv-intro-btn:hover { background: var(--kv-pink-dark); }
.kv-intro-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
}
.kv-intro-btn-icon svg {
    width: 16px;
    height: 16px;
}

.kv-intro-heading {
    flex: 0 0 50%;
    text-align: left;
    padding-top: 20px;
}
.kv-intro-heading h2 {
    font-family: var(--kv-serif);
    font-weight: 900;
    font-size: clamp(36px, 4.5vw, 62px);
    color: var(--kv-dark);
    line-height: 1.15;
    margin: 0;
}
.kv-intro-accent {
    color: var(--kv-pink);
    font-style: italic;
    position: relative;
    display: inline-block;
}
.kv-intro-swoosh {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 20px;
}

.kv-intro-cards {
    display: flex;
    gap: 16px;
    padding: 20px 10px;
}
.kv-intro-card {
    flex: 1 1 0;
    min-width: 0;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3 / 4;
    transition: transform .4s ease;
}
.kv-intro-card:nth-child(1) { transform: rotate(-3deg); }
.kv-intro-card:nth-child(2) { transform: rotate(2deg); }
.kv-intro-card:nth-child(3) { transform: rotate(-1.5deg); }
.kv-intro-card:nth-child(4) { transform: rotate(2.5deg); }
.kv-intro-card:nth-child(5) { transform: rotate(-2deg); }
.kv-intro-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.kv-intro-card--overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 60%);
    pointer-events: none;
}
.kv-intro-card--overlay .kv-intro-card-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    color: #fff;
    font-family: var(--kv-font);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.4;
}
.kv-intro-card--plain {
    background: #f0f0f2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.kv-intro-card--plain .kv-intro-card-label {
    font-family: var(--kv-serif);
    font-weight: 800;
    font-size: 20px;
    color: var(--kv-dark);
    line-height: 1.35;
    text-align: center;
}

/* ═══════════════════════════════════════════════════
   SECTION: ABOUT
   ═══════════════════════════════════════════════════ */
.kv-about {
    position: relative;
    background: var(--kv-white);
    padding: 120px 0 100px;
    overflow: visible;
    z-index: 2;
}
.kv-about-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 60px;
}
.kv-about-left { flex: 0 0 45%; max-width: 45%; position: relative; z-index: 5; }
.kv-about-kicker {
    font-family: var(--kv-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--kv-red);
    letter-spacing: .5px;
    margin-bottom: 20px;
}
.kv-about-title {
    font-family: var(--kv-serif);
    font-weight: 900;
    font-size: clamp(36px, 4vw, 60px);
    color: var(--kv-dark);
    line-height: 1.1;
    margin-bottom: 24px;
}
.kv-about-desc {
    font-size: 15px;
    color: var(--kv-gray);
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 36px;
}
.kv-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--kv-dark);
    color: var(--kv-white);
    border-radius: 60px;
    padding: 10px 28px 10px 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all .35s;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
}
.kv-video-btn:hover {
    background: var(--kv-pink);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(214,51,108,.25);
}
.kv-play-icon {
    width: 44px; height: 44px;
    background: var(--kv-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
}
.kv-video-btn:hover .kv-play-icon { background: rgba(255,255,255,.2); }
.kv-play-icon svg { width: 16px; height: 16px; fill: var(--kv-white); margin-left: 2px; }
.kv-about-right { flex: 0 0 55%; max-width: 55%; position: relative; min-height: 550px; }
.kv-bg-seker {
    position: absolute;
    top: 50%; right: -20px;
    transform: translateY(-50%);
    width: 520px; height: auto;
    z-index: 1;
    filter: drop-shadow(0 20px 50px rgba(227,30,36,.15));
}
.kv-main-product {
    position: absolute; z-index: 3;
    top: 55%; left: 40%;
    transform: translate(-45%, -50%);
    width: 300px; height: auto;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,.2));
}
.kv-roller {
    position: absolute; z-index: 5;
    will-change: transform;
    filter: drop-shadow(0 12px 30px rgba(0,0,0,.18));
}
.kv-roller-1 { width: 75px; top: 5%; right: 15%; }
.kv-roller-2 { width: 60px; top: 15%; left: 25%; }
.kv-roller-3 { width: 55px; bottom: 10%; right: 30%; }

/* ═══════════════════════════════════════════════════
   SECTION: PRODUCTS
   ═══════════════════════════════════════════════════ */
.kv-products {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: var(--kv-pink);
}
.kv-products::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('img/menu-pattern-bg.svg') repeat center / 400px;
    opacity: .12;
    pointer-events: none;
    z-index: 0;
}

/* ─── Wave Separator (white → pink) ─── */
.kv-prod-wave {
    position: relative;
    z-index: 1;
    margin-top: -2px;
    line-height: 0;
}
.kv-prod-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ─── Showcase Area (bold pink) ─── */
.kv-prod-showcase {
    padding: 40px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Decorative candy icons — visible, no blur */
.kv-prod-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}
.kv-prod-deco-1 {
    width: 130px;
    top: 2%;
    right: 8%;
    transform: rotate(18deg);
}
.kv-prod-deco-2 {
    width: 80px;
    top: 55%;
    left: 3%;
    transform: rotate(-14deg);
}
.kv-prod-deco-3 {
    width: 70px;
    bottom: 8%;
    right: 3%;
    transform: rotate(10deg);
}
.kv-prod-deco-4 {
    width: 140px;
    bottom: 5%;
    right: 12%;
    transform: rotate(-8deg);
}

/* White curve line */
.kv-prod-curve-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.kv-prod-curve {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.kv-prod-curve-path {
    stroke-width: 26;
    stroke: #fff;
    opacity: .08;
}

.kv-prod-showcase-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Header row */
.kv-prod-showcase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 60px;
}

.kv-prod-showcase-title {
    font-family: var(--kv-serif);
    font-weight: 600;
    font-size: clamp(40px, 5vw, 62px);
    color: var(--kv-white);
    line-height: 1.05;
    margin: 0;
}

.kv-prod-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.kv-prod-nav-btn {
    width: 52px; height: 52px;
    border-radius: 50%;
    border: none;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.kv-prod-nav-btn svg {
    width: 20px; height: 20px;
    color: var(--kv-pink);
    transition: color .3s;
}
.kv-prod-nav-btn:hover {
    background: var(--kv-pink-dark);
    box-shadow: 0 6px 24px rgba(0,0,0,.18);
    transform: scale(1.06);
}
.kv-prod-nav-btn:hover svg {
    color: #fff;
}

/* ─── Shared "View All" Button ─── */
.kv-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--kv-font);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 26px 14px 28px;
    border-radius: 50px;
    transition: all .45s cubic-bezier(.4,0,.2,1);
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: .3px;
}
.kv-view-all-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    transition: all .45s cubic-bezier(.4,0,.2,1);
}
.kv-view-all-icon svg {
    width: 15px; height: 15px;
    transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.kv-view-all-btn:hover .kv-view-all-icon svg {
    transform: translate(3px, -3px);
}
.kv-view-all-btn:hover {
    transform: translateY(-2px);
}

.kv-view-all-btn--pink {
    color: var(--kv-pink);
    border: none;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.kv-view-all-btn--pink .kv-view-all-icon {
    background: var(--kv-pink);
    color: #fff;
}
.kv-view-all-btn--pink:hover {
    background: var(--kv-pink-dark);
    color: #fff;
    box-shadow: 0 6px 24px rgba(0,0,0,.16);
}
.kv-view-all-btn--pink:hover .kv-view-all-icon {
    background: rgba(255,255,255,.2);
    color: #fff;
}

.kv-view-all-btn--light {
    color: var(--kv-white);
    border: 1.5px solid rgba(255,255,255,.25);
}
.kv-view-all-btn--light .kv-view-all-icon {
    background: rgba(255,255,255,.12);
}
.kv-view-all-btn--light:hover {
    background: var(--kv-white);
    color: var(--kv-teal);
    border-color: var(--kv-white);
}
.kv-view-all-btn--light:hover .kv-view-all-icon {
    background: var(--kv-teal);
    color: var(--kv-white);
}

.kv-view-all-btn--dark {
    color: var(--kv-dark);
    border: 1.5px solid rgba(0,0,0,.12);
}
.kv-view-all-btn--dark .kv-view-all-icon {
    background: rgba(0,0,0,.06);
}
.kv-view-all-btn--dark:hover {
    background: var(--kv-dark);
    color: #fff;
    border-color: var(--kv-dark);
}
.kv-view-all-btn--dark:hover .kv-view-all-icon {
    background: rgba(255,255,255,.15);
}

.kv-view-all-btn--teal {
    color: var(--kv-teal);
    border: 1.5px solid var(--kv-teal);
}
.kv-view-all-btn--teal .kv-view-all-icon {
    background: rgba(0,151,167,.1);
}
.kv-view-all-btn--teal:hover {
    background: var(--kv-teal);
    color: #fff;
    border-color: var(--kv-teal);
}
.kv-view-all-btn--teal:hover .kv-view-all-icon {
    background: rgba(255,255,255,.2);
}

.kv-view-all-btn--pink-accent {
    color: var(--kv-pink);
    border: 1.5px solid var(--kv-pink);
}
.kv-view-all-btn--pink-accent .kv-view-all-icon {
    background: rgba(214,51,108,.1);
}
.kv-view-all-btn--pink-accent:hover {
    background: var(--kv-pink);
    color: #fff;
    border-color: var(--kv-pink);
}
.kv-view-all-btn--pink-accent:hover .kv-view-all-icon {
    background: rgba(255,255,255,.2);
}

/* ─── Carousel ─── */
.kv-product-carousel {
    position: relative;
}

.kv-product-swiper {
    overflow: visible !important;
    padding-bottom: 30px;
}
.kv-product-swiper .swiper-wrapper {
    align-items: flex-end;
}

.kv-product-swiper .swiper-slide {
    transition: all .6s cubic-bezier(.4,0,.2,1);
}

/* ─── Product Slide ─── */
.kv-pslide {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 20px 0 10px;
}

/* Organic blob behind product */
.kv-pslide-circle {
    position: absolute;
    width: 260px; height: 260px;
    border-radius: 42% 58% 62% 38% / 45% 55% 45% 55%;
    background: rgba(255,255,255,.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%) rotate(-8deg);
    transition: all .6s cubic-bezier(.4,0,.2,1);
    animation: blobMorph 8s ease-in-out infinite;
}
.swiper-slide-active .kv-pslide-circle {
    width: 320px; height: 320px;
    background: var(--kv-pink-light);
    box-shadow: 0 20px 60px rgba(214,51,108,.2);
    border-radius: 38% 62% 55% 45% / 50% 42% 58% 50%;
}

@keyframes blobMorph {
    0%, 100% { border-radius: 42% 58% 62% 38% / 45% 55% 45% 55%; transform: translate(-50%, -55%) rotate(-8deg); }
    25%      { border-radius: 55% 45% 38% 62% / 58% 42% 55% 45%; transform: translate(-50%, -55%) rotate(-4deg); }
    50%      { border-radius: 38% 62% 45% 55% / 42% 58% 50% 50%; transform: translate(-50%, -55%) rotate(-12deg); }
    75%      { border-radius: 50% 50% 55% 45% / 45% 55% 42% 58%; transform: translate(-50%, -55%) rotate(-6deg); }
}

/* Product image — circle with object-cover */
.kv-pslide-img {
    position: relative;
    z-index: 2;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,.2);
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
    transition: all .6s cubic-bezier(.4,0,.2,1);
}
.swiper-slide-active .kv-pslide-img {
    width: 260px;
    height: 260px;
    border-color: rgba(255,255,255,.4);
    box-shadow: 0 30px 60px rgba(0,0,0,.25);
}

/* Product name */
.kv-pslide-name {
    position: relative;
    z-index: 2;
    font-family: var(--kv-font);
    font-weight: 500;
    font-size: 15px;
    color: rgba(255,255,255,.6);
    text-align: center;
    margin-top: 20px;
    transition: all .5s;
    max-width: 240px;
}
.swiper-slide-active .kv-pslide-name {
    font-size: 17px;
    font-weight: 600;
    color: var(--kv-white);
}

/* Side slides subtle */
.kv-product-swiper .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) {
    opacity: .3;
}
.kv-product-swiper .swiper-slide-prev,
.kv-product-swiper .swiper-slide-next {
    opacity: .65;
}

/* ─── Detail Button (inside slide, hover only) ─── */
.kv-prod-detail-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-family: var(--kv-font);
    font-size: 13px;
    font-weight: 500;
    color: var(--kv-white);
    margin-top: 14px;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity .35s, transform .35s;
}
.swiper-slide-active .kv-pslide:hover .kv-prod-detail-btn {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.kv-prod-detail-plus {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--kv-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 300;
    color: var(--kv-dark);
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    transition: all .35s;
}
.kv-prod-detail-btn:hover .kv-prod-detail-plus {
    background: var(--kv-dark);
    color: var(--kv-white);
}

/* ═══════════════════════════════════════════════════
   UNIONS FLOW — wave + dark arc + minimal logos
   ═══════════════════════════════════════════════════ */
.kv-unions-flow {
    position: relative;
    background: var(--kv-white);
    overflow: hidden;
}

/* Bottom wave from pink to white (mirrors the top wave) */
.kv-prod-wave-bottom {
    position: relative;
    z-index: 1;
    line-height: 0;
    margin-bottom: -2px;
}
.kv-prod-wave-bottom svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* Dark arc from the right — overlaps both wave and logos */
.kv-unions-arc {
    position: absolute;
    bottom: -60%;
    right: -10%;
    width: 55%;
    padding-bottom: 55%;
    border-radius: 90%;
    background: var(--kv-pink);
    z-index: 2;
    pointer-events: none;
}

/* Logo strip full-width */
.kv-unions-strip {
    position: relative;
    z-index: 1;
    padding: 40px 0 60px;
}

.kv-unions-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}

.kv-union-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.kv-union-card img {
    max-height: 66px;
    max-width: 110px;
    object-fit: contain;
    opacity: .3;
    transition: opacity .4s;
}
.kv-union-card:hover img {
    opacity: .7;
}

/* ═══════════════════════════════════════════════════
   SECTION: PRODUCT NAMES SHOWCASE
   ═══════════════════════════════════════════════════ */
.kv-names {
    background: var(--kv-light);
    padding: 80px 0;
    overflow: visible;
    position: relative;
}

/* Flowing pink line — draws on scroll */
.kv-names-line-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.kv-names-line {
    position: absolute;
    width: 100%;
    height: 100%;
}
.kv-names-line-path {
    stroke-width: 18;
    stroke: #f2c4d4;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.kv-names-line-dot {
    stroke-width: 18;
    stroke: #f2c4d4;
}
.kv-names-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.kv-names-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 16px;
}

.kv-name-item {
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 44px 20px;
    text-decoration: none;
    color: var(--kv-dark);
    border-bottom: 1px solid rgba(0,0,0,.06);
    overflow: visible;
    cursor: pointer;
    transition: color .8s cubic-bezier(0.4, 0, 0.2, 1);
}
.kv-name-item:hover {
    color: rgba(0,0,0,.15);
}

.kv-name-num {
    font-family: var(--kv-font);
    font-size: 11px;
    font-weight: 600;
    color: rgba(0,0,0,.25);
    flex-shrink: 0;
    position: relative;
    top: -0.6em;
    transition: color .6s cubic-bezier(0.4, 0, 0.2, 1);
}

.kv-name-text {
    font-family: var(--kv-font);
    font-weight: 900;
    font-size: clamp(32px, 4.5vw, 72px);
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1;
    transition: color .7s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing .7s cubic-bezier(0.4, 0, 0.2, 1), opacity .7s cubic-bezier(0.4, 0, 0.2, 1);
}
.kv-name-item:hover .kv-name-text {
    letter-spacing: 2px;
}

/* Accent items get teal color */
.kv-name-item--accent .kv-name-text {
    color: var(--kv-teal);
}
.kv-name-item--accent:hover .kv-name-text {
    color: var(--kv-teal);
    opacity: .3;
}
/* Pink items: Ankara, Bursa, Adana */
.kv-name-item--pink .kv-name-text {
    color: var(--kv-pink);
}
.kv-name-item--pink:hover .kv-name-text {
    color: var(--kv-pink);
    opacity: .3;
}

/* Yamuk circle (kv-pslide-circle gibi) — yumuşak geçiş */
.kv-names-grid { overflow: visible; }
.kv-name-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 220px;
    border-radius: 42% 58% 62% 38% / 45% 55% 45% 55%;
    overflow: hidden;
    transform: translate(-50%, -50%) rotate(-8deg);
    opacity: 0;
    pointer-events: none;
    z-index: 50;
    transition: opacity .9s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.kv-name-item:hover .kv-name-circle {
    opacity: 1;
}
.kv-name-circle img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ═══════════════════════════════════════════════════
   SECTION: COMPANY SPOTLIGHT
   ═══════════════════════════════════════════════════ */
.kv-spotlight {
    position: relative;
    background: #fafafa;
    padding: 0 0 40px;
    overflow: hidden;
}

/* Thin accent line at top */
.kv-spot-accent {
    height: 3px;
    background: linear-gradient(90deg, transparent 10%, var(--kv-pink) 30%, var(--kv-teal) 70%, transparent 90%);
    opacity: .15;
}

.kv-spot-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px 60px;
    position: relative;
    text-align: center;
}

/* Floating candy decorations */
.kv-spot-float {
    position: absolute;
    pointer-events: none;
    z-index: 3;
    opacity: .85;
}
.kv-spot-float-1 {
    width: 90px;
    top: 50px;
    left: -60px;
    transform: rotate(-15deg);
}
.kv-spot-float-2 {
    width: 60px;
    bottom: 120px;
    right: -50px;
    transform: rotate(20deg);
}
.kv-spot-float-3 {
    width: 45px;
    top: 200px;
    right: -30px;
    transform: rotate(-8deg);
}

/* Featured image */
.kv-spot-image-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}
.kv-spot-image-frame {
    position: relative;
    width: 620px;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 4px 30px rgba(0,0,0,.06);
}
.kv-spot-image {
    display: block;
    width: 100%;
    height: 340px;
    object-fit: cover;
}
.kv-spot-image-shadow {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0,0,0,.06) 0%, transparent 70%);
    z-index: 1;
}

/* Company info row */
.kv-spot-info {
    display: flex;
    align-items: center;
    gap: 36px;
    text-align: left;
    margin-bottom: 36px;
}
.kv-spot-logo {
    flex: 0 0 auto;
}
.kv-spot-logo img {
    height: 52px;
    object-fit: contain;
}
.kv-spot-text {
    flex: 1;
}
.kv-spot-text p {
    font-family: var(--kv-font);
    font-size: 15px;
    line-height: 1.8;
    color: var(--kv-gray);
    margin: 0;
}
.kv-spot-text strong {
    color: var(--kv-dark);
    font-weight: 700;
}
.kv-spot-highlight {
    font-style: italic;
    color: var(--kv-teal);
    font-weight: 600;
}

/* CTA button */
.kv-spot-cta {
    text-align: center;
}
.kv-spot-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--kv-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--kv-dark);
    text-decoration: none;
    padding: 14px 28px 14px 32px;
    border: 1.5px solid rgba(0,0,0,.12);
    border-radius: 50px;
    transition: all .4s cubic-bezier(.4,0,.2,1);
}
.kv-spot-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(0,0,0,.05);
    transition: all .4s cubic-bezier(.4,0,.2,1);
}
.kv-spot-btn-icon svg {
    width: 12px; height: 12px;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.kv-spot-btn:hover {
    background: var(--kv-dark);
    color: #fff;
    border-color: var(--kv-dark);
}
.kv-spot-btn:hover .kv-spot-btn-icon {
    background: rgba(255,255,255,.15);
}
.kv-spot-btn:hover .kv-spot-btn-icon svg {
    transform: translate(2px, -2px);
}

/* Bottom curve */
.kv-spot-curve {
    position: relative;
    line-height: 0;
    margin-top: -30px;
}
.kv-spot-curve svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ═══════════════════════════════════════════════════
   SECTION: STAT BANNER
   ═══════════════════════════════════════════════════ */
.kv-stat {
    position: relative;
    background: var(--kv-pink);
    overflow: hidden;
    padding: 100px 0;
}
.kv-stat-curve-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.kv-stat-curve {
    position: absolute;
    width: 110%;
    height: 130%;
    top: -15%;
    left: -5%;
}
.kv-stat-curve-path {
    stroke-width: 52;
    stroke: #fff;
    opacity: .15;
}
.kv-stat-inner {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 48px;
    text-align: center;
}
.kv-stat-text {
    font-family: var(--kv-font);
    font-weight: 800;
    font-size: clamp(26px, 3.4vw, 48px);
    color: #fff;
    line-height: 1.45;
    margin: 0;
    letter-spacing: -.01em;
}
.kv-stat-highlight {
    color: #fff;
    background: rgba(255,255,255,.18);
    padding: 2px 14px;
    border-radius: 8px;
    white-space: nowrap;
}
.kv-stat-inline-img {
    display: inline-block;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    vertical-align: middle;
    margin: 0 4px;
    border: 3px solid rgba(255,255,255,.5);
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

@media (max-width: 992px) {
    .kv-stat { padding: 72px 0; }
    .kv-stat-inner { padding: 0 32px; }
    .kv-stat-inline-img { width: 42px; height: 42px; }
}
@media (max-width: 768px) {
    .kv-stat { padding: 56px 0; }
    .kv-stat-inner { padding: 0 24px; }
    .kv-stat-curve-wrap { display: none; }
    .kv-stat-inline-img { width: 36px; height: 36px; }
}
@media (max-width: 576px) {
    .kv-stat { padding: 44px 0; }
    .kv-stat-inner { padding: 0 18px; }
    .kv-stat-text { font-size: 20px; }
    .kv-stat-inline-img { width: 30px; height: 30px; }
}

/* ═══════════════════════════════════════════════════
   SECTION: PRODUCTS 2
   ═══════════════════════════════════════════════════ */
.kv-products-2 {
    position: relative;
    background: var(--kv-light);
    overflow: hidden;
}
.kv-p2-curve-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.kv-p2-curve {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.kv-p2-curve-path {
    stroke-width: 18;
    stroke: var(--kv-pink);
    opacity: .10;
}
.kv-p2-body {
    position: relative;
    z-index: 1;
    padding: 40px 0 50px;
}
.kv-p2-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

.kv-p2-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 44px;
}
.kv-p2-title {
    font-family: var(--kv-font);
    font-weight: 900;
    font-size: clamp(32px, 4vw, 52px);
    color: var(--kv-dark);
    line-height: 1.15;
    margin: 0;
}
.kv-p2-title-accent {
    color: var(--kv-pink);
}
.kv-p2-flag {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-left: 4px;
}
.kv-p2-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 10px;
}
.kv-p2-nav {
    display: flex;
    gap: 8px;
}
.kv-p2-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    color: var(--kv-pink);
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.kv-p2-nav-btn svg {
    width: 18px;
    height: 18px;
}
.kv-p2-nav-btn:hover {
    background: var(--kv-pink-dark);
    color: #fff;
    transform: scale(1.06);
}
.kv-p2-nav-btn.swiper-button-disabled {
    opacity: .3;
    pointer-events: none;
}
.kv-p2-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--kv-pink);
    color: #fff;
    font-family: var(--kv-font);
    font-size: 14px;
    font-weight: 700;
    padding: 14px 24px 14px 18px;
    border-radius: 50px;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.kv-p2-all-btn:hover {
    background: #fff;
    color: var(--kv-pink);
    transform: translateY(-2px);
}
.kv-p2-all-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    transition: background .3s;
}
.kv-p2-all-btn:hover .kv-p2-all-icon {
    background: var(--kv-pink);
    color: #fff;
}
.kv-p2-all-icon svg {
    width: 14px;
    height: 14px;
}

/* Cards */
.kv-p2-swiper {
    overflow: visible !important;
}
a.kv-p2-card,
.kv-p2-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: transparent;
    border-radius: 20px;
    padding: 28px 24px 28px;
    border: 1.5px solid #ddd;
    transition: border-color .3s, box-shadow .3s;
}
.kv-p2-card:hover {
    border-color: transparent;
}
.kv-p2-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
.kv-p2-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.kv-p2-tag {
    display: inline-block;
    font-family: var(--kv-font);
    font-size: 12px;
    font-weight: 600;
    color: var(--kv-dark);
    border: 1.5px solid #e0e0e0;
    border-radius: 50px;
    padding: 6px 14px;
    letter-spacing: .2px;
}
.kv-p2-card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--kv-pink);
    color: #fff;
    flex-shrink: 0;
    transition: all .3s;
}
.kv-p2-card-arrow svg {
    width: 16px;
    height: 16px;
}
.kv-p2-card:hover .kv-p2-card-arrow {
    background: var(--kv-pink-dark);
    transform: scale(1.1);
}

/* Stacked / fanned images */
.kv-p2-card-images {
    position: relative;
    height: 255px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,.12));
}
.kv-p2-img {
    position: absolute;
    width: 170px;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 32px rgba(0,0,0,.18);
    transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.kv-p2-img-3 {
    z-index: 1;
    transform: rotate(-8deg) translateX(-30px);
}
.kv-p2-img-2 {
    z-index: 2;
    transform: rotate(6deg) translateX(30px);
}
.kv-p2-img-1 {
    z-index: 3;
    transform: rotate(0deg) translateX(0);
}
.kv-p2-card:hover .kv-p2-img-3 {
    transform: rotate(-12deg) translateX(-55px);
}
.kv-p2-card:hover .kv-p2-img-2 {
    transform: rotate(10deg) translateX(55px);
}
.kv-p2-card:hover .kv-p2-img-1 {
    transform: rotate(0deg) scale(1.04);
}

.kv-p2-card-name {
    font-family: var(--kv-font);
    font-weight: 800;
    font-size: 18px;
    color: var(--kv-dark);
    margin: 0 0 8px;
}
.kv-p2-card-desc {
    font-size: 13px;
    color: var(--kv-gray);
    line-height: 1.65;
    margin: 0;
}

/* Pagination */
.kv-p2-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.kv-p2-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(214,51,108,.2);
    opacity: 1;
    transition: all .3s;
}
.kv-p2-pagination .swiper-pagination-bullet-active {
    background: var(--kv-pink);
    width: 28px;
    border-radius: 6px;
}

/* ═══════════════════════════════════════════════════
   SECTION: SWEET FIVE — Bento Grid
   ═══════════════════════════════════════════════════ */
.kv-five {
    background: var(--kv-light);
    position: relative;
    overflow: hidden;
    padding-bottom: 40px;
    padding-top: 100px;
}
.kv-five-curve-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.kv-five-curve {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.kv-five-curve-path {
    stroke-width: 14;
    stroke: var(--kv-pink-light);
    opacity: .5;
}
.kv-five-curve-dot {
    stroke-width: 14;
    stroke: var(--kv-pink-light);
    opacity: .5;
}
.kv-five-inner {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding: 0 48px;
}
.kv-five-kicker {
    text-align: center;
    font-size: 15px;
    color: var(--kv-pink);
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: .3px;
}
.kv-five-kicker strong {
    font-weight: 700;
}

.kv-five-grid {
    display: grid;
    grid-template-columns: .65fr 1.35fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
    min-height: 520px;
}

.kv-five-info {
    grid-column: 3;
    grid-row: 2;
    background: var(--kv-light);
    border: 2px solid var(--kv-pink-light);
    border-radius: 18px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.kv-five-title {
    font-family: var(--kv-font);
    font-weight: 800;
    font-size: 28px;
    color: var(--kv-pink);
    line-height: 1.2;
    margin-bottom: 14px;
}
.kv-five-desc {
    font-size: 14px;
    color: var(--kv-gray);
    line-height: 1.7;
    max-width: 260px;
}
.kv-five-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--kv-pink);
    color: #fff;
    font-family: var(--kv-font);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all .3s;
    margin-top: 24px;
    align-self: flex-start;
}
.kv-five-btn:hover {
    background: var(--kv-pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(214,51,108,.25);
}
.kv-five-btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,.2);
    border-radius: 50%;
}
.kv-five-btn-arrow svg {
    width: 14px;
    height: 14px;
}

.kv-five-img {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.kv-five-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.kv-five-img:hover img {
    transform: scale(1.04);
}

.kv-five-overlay {
    position: absolute;
    inset: 0;
    background: rgba(214, 51, 108, .72);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity .35s ease;
    z-index: 2;
}
.kv-five-img:hover .kv-five-overlay {
    opacity: 1;
}
.kv-five-overlay-title {
    font-family: var(--kv-font);
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.2;
}
.kv-five-overlay-desc {
    font-size: 13px;
    color: rgba(255,255,255,.88);
    line-height: 1.5;
    margin: 0;
    max-width: 240px;
}

.kv-five-img--wide {
    grid-column: 3;
    grid-row: 1;
}
.kv-five-img--tall {
    grid-column: 2;
    grid-row: 1 / 3;
}
.kv-five-img--right-top {
    grid-column: 1;
    grid-row: 1;
}
.kv-five-img--right-bottom {
    grid-column: 1;
    grid-row: 2;
}

/* ═══════════════════════════════════════════════════
   SECTION: STATS
   ═══════════════════════════════════════════════════ */
.kv-stats {
    background-color: var(--kv-white) !important;
    position: relative;
    background: transparent;
    padding: 80px 0 90px;
    overflow: hidden;
}
.kv-stats-curve-top,
.kv-stats-curve-bottom { display: none; }
.kv-stats-curve-wrap { display: none; }
.kv-stats-deco { display: none; }

.kv-stats-inner {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}
.kv-stats-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}
.kv-stats-kicker {
    display: inline-block;
    font-family: var(--kv-font);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--kv-teal);
    margin-bottom: 16px;
}
.kv-stats-title {
    font-family: var(--kv-font);
    font-weight: 900;
    font-size: clamp(28px, 3.5vw, 46px);
    color: var(--kv-dark);
    line-height: 1.15;
    margin: 0 0 16px;
}
.kv-stats-title-accent {
    color: var(--kv-teal);
}
.kv-stats-desc {
    font-size: 15px;
    color: var(--kv-gray);
    line-height: 1.75;
    margin: 0;
}

.kv-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.kv-stat-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 20px 32px;
    text-align: center;
    transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .3s;
    box-shadow: 0 2px 16px rgba(0,0,0,.04);
}
.kv-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,151,167,.1);
}

.kv-stat-ring {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
}
.kv-stat-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.kv-stat-ring circle:first-child {
    stroke: rgba(0,151,167,.1);
}
.kv-stat-ring-fill {
    stroke: var(--kv-teal) !important;
    transition: stroke-dasharray 1.5s cubic-bezier(.4,0,.2,1);
}
.kv-stat-ring-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.kv-stat-ring-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--kv-teal);
    transform: none;
}

.kv-stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 6px;
}
.kv-stat-number {
    font-family: var(--kv-font);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 900;
    color: var(--kv-dark);
    line-height: 1;
}
.kv-stat-suffix {
    font-family: var(--kv-font);
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 900;
    color: var(--kv-teal);
    line-height: 1;
}
.kv-stat-label {
    display: block;
    font-family: var(--kv-font);
    font-size: 13px;
    font-weight: 600;
    color: var(--kv-gray);
    margin-top: 4px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .kv-stats { padding: 60px 0 70px; }
    .kv-stats-inner { padding: 0 32px; }
    .kv-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .kv-stats-header { margin-bottom: 40px; }
    .kv-stat-ring { width: 80px; height: 80px; }
}
@media (max-width: 576px) {
    .kv-stats { padding: 48px 0 56px; }
    .kv-stats-inner { padding: 0 16px; }
    .kv-stats-grid { gap: 14px; }
    .kv-stat-card { padding: 28px 14px 24px; border-radius: 18px; }
    .kv-stat-ring { width: 70px; height: 70px; margin-bottom: 14px; }
    .kv-stat-ring-icon svg { width: 22px; height: 22px; }
    .kv-stat-label { font-size: 11px; }
}

/* ═══════════════════════════════════════════════════
   SECTION: CULTURE
   ═══════════════════════════════════════════════════ */
.kv-culture-wrap {
    padding: 0 32px;
    background: var(--kv-light);
}
.kv-culture {
    position: relative;
    background: var(--kv-teal);
    min-height: 760px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 60px 56px 50px;
    border-radius: 28px;
}
.kv-culture::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('img/menu-pattern-bg.svg') repeat center / 400px;
    opacity: .12;
    pointer-events: none;
    z-index: 0;
    border-radius: inherit;
}

/* White curve line */
.kv-culture-curve-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.kv-culture-curve {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.kv-culture-curve-path {
    stroke-width: 58;
    stroke: #fff;
    opacity: .1;
}

/* Scroll-parallax candy icons */
.kv-culture-icon {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    will-change: transform;
}
.kv-culture-icon-1 {
    width: 150px;
    top: 6%;
    left: 40%;
}
.kv-culture-icon-2 {
    width: 110px;
    bottom: 14%;
    left: 36%;
}
.kv-culture-icon-3 {
    width: 129px;
    top: 60%;
    right: 6%;
}

/* Photos — rounded, no polaroid */
.kv-culture-photo {
    position: absolute;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,.22);
    z-index: 2;
    will-change: transform;
}
.kv-culture-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kv-culture-photo-1 {
    width: 560px;
    height: 310px;
    top: 20%;
    left: 5%;
    transform: rotate(-4deg);
}
.kv-culture-photo-2 {
    width: 250px;
    height: 280px;
    bottom: 10%;
    right: 26%;
    transform: rotate(3deg);
    z-index: 3;
}
.kv-culture-photo-3 {
    width: 210px;
    height: 280px;
    top: 3%;
    right: 3%;
    transform: rotate(5deg);
}

/* Featured Story card */
.kv-culture-card {
    position: absolute;
    top: 22%;
    right: 17%;
    width: 310px;
    background: #fff;
    border-radius: 20px;
    padding: 28px 28px 30px;
    box-shadow: 0 16px 56px rgba(0,0,0,.14);
    z-index: 4;
}
.kv-culture-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid #eee;
    border-radius: 50px;
    padding: 8px 18px 8px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--kv-pink);
    margin-bottom: 22px;
}
.kv-culture-badge svg {
    width: 16px;
    height: 16px;
    color: var(--kv-pink);
}
.kv-culture-card-title {
    font-family: var(--kv-font);
    font-weight: 700;
    font-size: 17px;
    color: var(--kv-dark);
    line-height: 1.5;
    margin: 0 0 18px;
}
.kv-culture-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--kv-pink);
    text-decoration: none;
    transition: gap .3s;
}
.kv-culture-card-link:hover {
    gap: 10px;
}

/* Bottom headline */
.kv-culture-headline {
    position: relative;
    z-index: 2;
    font-family: var(--kv-font);
    font-weight: 900;
    font-size: clamp(36px, 4vw, 56px);
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.5px;
    max-width: 50%;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* ═══════════════════════════════════════════════════
   SECTION: WHERE TO BUY
   ═══════════════════════════════════════════════════ */
.kv-wtb {
    position: relative;
    overflow: hidden;
}

/* Wave: white → teal */
.kv-wtb-wave {
    line-height: 0;
    background: var(--kv-white);
    margin-bottom: -2px;
}
.kv-wtb-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.kv-wtb-body {
    background: var(--kv-teal);
    position: relative;
    padding: 60px 0 100px;
}

/* Animated decorative shapes */
.kv-wtb-deco {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    z-index: 0;
}
.kv-wtb-deco-1 {
    width: 420px; height: 420px;
    top: -60px; right: -80px;
    background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
    animation: wtbFloat 8s ease-in-out infinite;
}
.kv-wtb-deco-2 {
    width: 200px; height: 200px;
    bottom: 60px; left: -40px;
    border: 2px solid rgba(255,255,255,.06);
    animation: wtbFloat 10s ease-in-out 2s infinite reverse;
}
.kv-wtb-deco-3 {
    width: 80px; height: 80px;
    top: 40%; right: 15%;
    background: rgba(255,255,255,.04);
    animation: wtbPulse 6s ease-in-out 1s infinite;
}
.kv-wtb-deco-4 {
    width: 12px; height: 12px;
    top: 30%; left: 35%;
    background: rgba(255,255,255,.15);
    animation: wtbPulse 4s ease-in-out infinite;
}

@keyframes wtbFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(15px, -20px) rotate(3deg); }
    66% { transform: translate(-10px, 12px) rotate(-2deg); }
}
@keyframes wtbPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: .5; }
}

.kv-wtb-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 2;
}

/* ─── Top row: title + button ─── */
.kv-wtb-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}

/* Title column */
.kv-wtb-title-col {
    flex: 1;
}

/* ─── Content: tabs left + firms right ─── */
.kv-wtb-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Tabs column */
.kv-wtb-tabs-col {
    flex: 0 0 180px;
    position: sticky;
    top: 120px;
}
.kv-wtb-tabs {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kv-wtb-tab {
    display: block;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--kv-font);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,.4);
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all .35s cubic-bezier(.4,0,.2,1);
    white-space: nowrap;
    position: relative;
    border-left: 3px solid transparent;
}
.kv-wtb-tab:hover {
    color: rgba(255,255,255,.75);
    background: rgba(255,255,255,.05);
}
.kv-wtb-tab.active {
    color: #fff;
    font-weight: 700;
    background: rgba(255,255,255,.1);
    border-left-color: #fff;
}
.kv-wtb-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,.5);
    margin-bottom: 12px;
}
.kv-wtb-title {
    font-family: var(--kv-font);
    font-weight: 900;
    font-size: clamp(36px, 4vw, 56px);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 14px;
}
.kv-wtb-desc {
    font-size: 15px;
    color: rgba(255,255,255,.5);
    line-height: 1.6;
    max-width: 440px;
}

/* ─── Firm Cards ─── */
.kv-wtb-firms {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.kv-firm {
    flex: 1 1 calc(33.333% - 14px);
    min-width: 240px;
    max-width: calc(33.333% - 14px);
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s, border-color .4s, opacity .4s;
}
.kv-firm:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,.2);
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}
.kv-firm.kv-firm-hidden {
    display: none;
}

.kv-firm-logo {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px;
}
.kv-firm-logo img {
    max-height: 70px;
    max-width: 160px;
    object-fit: contain;
}

.kv-firm-body {
    padding: 22px 24px 24px;
}
.kv-firm-name {
    font-family: var(--kv-font);
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}
.kv-firm-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}
.kv-firm-tags span {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.8);
    background: rgba(255,255,255,.15);
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: .3px;
}
.kv-firm-desc {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.kv-firm-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: gap .3s;
}
.kv-firm-link:hover { gap: 12px; }
.kv-firm-link svg {
    width: 16px; height: 16px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ═══════════════════════════════════════════════════
   SECTION: BLOG — Card Slider
   ═══════════════════════════════════════════════════ */
.kv-blog {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: var(--kv-light);
}

.kv-blog-wave {
    line-height: 0;
    background: var(--kv-white);
    margin-bottom: -2px;
}
.kv-blog-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.kv-blog-body {
    background: var(--kv-white);
    padding: 20px 0 100px;
}

.kv-blog-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

.kv-blog-kicker {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--kv-gray);
    margin-bottom: 10px;
}
.kv-blog-title {
    font-family: var(--kv-font);
    font-weight: 900;
    font-size: clamp(32px, 3.5vw, 48px);
    color: var(--kv-dark);
    line-height: 1.1;
    margin: 0 0 40px;
    text-align: center;
}
.kv-blog-title-accent {
    color: var(--kv-pink);
}

.kv-blog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}

.kv-blog-nav {
    display: flex;
    gap: 10px;
}
.kv-blog-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--kv-pink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    color: #fff;
    box-shadow: 0 4px 16px rgba(214,51,108,.25);
}
.kv-blog-nav-btn svg {
    width: 18px;
    height: 18px;
}
.kv-blog-nav-btn:hover {
    background: var(--kv-pink-dark);
    box-shadow: 0 6px 24px rgba(214,51,108,.35);
    transform: scale(1.06);
}
.kv-blog-nav-btn.swiper-button-disabled {
    opacity: .3;
    pointer-events: none;
    box-shadow: none;
}

.kv-blog-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    border-radius: 50px;
    padding: 14px 16px 14px 28px;
    font-family: var(--kv-font);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: all .3s;
    background: var(--kv-pink);
    box-shadow: 0 4px 16px rgba(214,51,108,.25);
}
.kv-blog-read-btn:hover {
    background: var(--kv-pink-dark);
    box-shadow: 0 6px 24px rgba(214,51,108,.35);
    transform: translateY(-2px);
}
.kv-blog-read-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    color: #fff;
    transition: background .3s;
}
.kv-blog-read-btn:hover .kv-blog-read-arrow {
    background: rgba(255,255,255,.3);
}
.kv-blog-read-arrow svg {
    width: 15px;
    height: 15px;
}

.kv-blog-swiper {
    overflow: visible !important;
}

.kv-blog-card {
    display: block;
    text-decoration: none;
    color: inherit;
}
.kv-blog-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 18px;
}
.kv-blog-card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.kv-blog-card:hover .kv-blog-card-img img {
    transform: scale(1.05);
}
.kv-blog-card-title {
    font-family: var(--kv-font);
    font-weight: 700;
    font-size: 16px;
    color: var(--kv-dark);
    line-height: 1.45;
    margin: 0 0 8px;
    transition: color .3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.kv-blog-card:hover .kv-blog-card-title {
    color: var(--kv-pink);
}
.kv-blog-card-desc {
    font-size: 13px;
    color: var(--kv-gray);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ═══════════════════════════════════════════════════
   SECTION: GALLERY (Instagram / tilted cards)
   ═══════════════════════════════════════════════════ */
.kv-gallery {
    position: relative;
    background: #f8f8f9;
    padding: 90px 0 110px;
    overflow: hidden;
}
.kv-gallery-wave {
    line-height: 0;
    margin-bottom: -2px;
}
.kv-gallery-wave svg {
    display: block;
    width: 100%;
    height: 50px;
}

/* Dairesel pembe çizgi — kavisli, kalın */
.kv-gallery-curve-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.kv-gallery-curve {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.kv-gallery-curve-path {
    stroke-width: 38;
    stroke: #d6336c;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.kv-gallery-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}
.kv-gallery-insta-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.kv-gallery-insta-handle {
    font-family: var(--kv-font);
    font-weight: 800;
    font-size: 20px;
    color: var(--kv-dark);
}
.kv-insta-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.kv-insta-icon svg { width: 20px; height: 20px; color: #fff; }
.kv-insta-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 2px solid var(--kv-pink);
    color: var(--kv-pink);
    font-family: var(--kv-font);
    font-weight: 700;
    font-size: 13px;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all .3s;
}
.kv-insta-follow-btn svg { width: 14px; height: 14px; }
.kv-insta-follow-btn:hover {
    background: var(--kv-pink);
    color: #fff;
}

.kv-gallery-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: nowrap;
}

/* Tilted cards — beyaz çerçeve, yumuşak gölge */
.kv-gcard {
    flex: 0 0 200px;
    width: 200px;
    height: 310px;
    border-radius: 20px;
    overflow: hidden;
    transform: rotate(-4deg);
    box-shadow: 0 12px 36px rgba(0,0,0,.1), 0 0 0 4px rgba(255,255,255,.9);
    transition: transform .45s cubic-bezier(.4,0,.2,1), box-shadow .45s;
}
.kv-gcard:nth-child(1) { transform: rotate(-6deg) translateY(-8px); }
.kv-gcard:nth-child(2) { transform: rotate(-3deg) translateY(-4px); }
.kv-gcard:nth-child(3) { transform: rotate(0deg); }
.kv-gcard:nth-child(4) { transform: rotate(3deg) translateY(-4px); }
.kv-gcard:nth-child(5) { transform: rotate(6deg) translateY(-8px); }

.kv-gcard:hover {
    transform: rotate(0deg) translateY(-14px) scale(1.04) !important;
    box-shadow: 0 24px 56px rgba(214,51,108,.18), 0 0 0 4px #fff;
}
.kv-gcard img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

/* ═══════════════════════════════════════════════════
   FOOTER (Yıldız tarzı — pembe, dalgalı)
   ═══════════════════════════════════════════════════ */
.kv-footer {
    position: relative;
    overflow: hidden;
    background: var(--kv-pink);
}
.kv-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('img/menu-pattern-bg.svg') repeat center / 400px;
    opacity: .19;
    pointer-events: none;
}
/* Wave: gallery → pink (WTB ile aynı mantık) */
.kv-ft-wave {
    line-height: 0;
    margin-top: -2px;
}
.kv-ft-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}
.kv-ft-floats {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.kv-ft-float {
    position: absolute;
}
.kv-ft-float-1 {
    width: 130px;
    top: 15%;
    left: 20px;
    animation: ftFloat1 14s ease-in-out infinite;
}
.kv-ft-float-2 {
    width: 140px;
    top: 40%;
    right: -20px;
    animation: ftFloat2 18s ease-in-out infinite;
}
.kv-ft-float-3 {
    width: 110px;
    bottom: 10%;
    left: 45%;
    animation: ftFloat3 16s ease-in-out infinite;
}

@keyframes ftFloat1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(8deg); }
    66% { transform: translateY(12px) rotate(-5deg); }
}
@keyframes ftFloat2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    40% { transform: translateY(18px) rotate(-10deg); }
    70% { transform: translateY(-14px) rotate(6deg); }
}
@keyframes ftFloat3 {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-16px) rotate(12deg) scale(1.05); }
}

.kv-ft-body {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 44px 48px 40px;
}
.kv-ft-brand-block {
    text-align: center;
    margin-bottom: 40px;
}
.kv-ft-brand-logo {
    height: 58px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: 12px;
}
.kv-ft-slogan {
    font-family: var(--kv-font);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,.75);
    text-align: center;
    margin: 0;
    letter-spacing: .02em;
}
.kv-ft-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}
.kv-ft-menu {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.kv-ft-menu a {
    font-family: var(--kv-font);
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: opacity .3s;
}
.kv-ft-menu a:hover { opacity: .85; }
.kv-ft-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,.6);
}
.kv-ft-social {
    display: flex;
    align-items: center;
    gap: 20px;
}
.kv-ft-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: opacity .3s;
}
.kv-ft-social a svg { width: 20px; height: 20px; }
.kv-ft-social a:hover { opacity: .8; }
.kv-ft-bottom-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}
.kv-ft-bottom-left {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-self: start;
}
.kv-ft-bottom-row .kv-ft-top { justify-self: center; }
.kv-ft-bottom-row .kv-ft-legal { justify-self: end; }
.kv-ft-logo {
    height: 46px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.kv-ft-republic {
    height: 58px;
    object-fit: contain;
}
.kv-ft-legal {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
.kv-ft-copy {
    font-size: 12px;
    color: rgba(255,255,255,.9);
}
.kv-ft-top {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.4);
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all .4s cubic-bezier(.4,0,.2,1);
}
.kv-ft-top svg { width: 18px; height: 18px; }
.kv-ft-top:hover {
    background: rgba(255,255,255,.3);
    border-color: rgba(255,255,255,.5);
    transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════
   Scroll Reveal
   ═══════════════════════════════════════════════════ */
.kv-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}
.kv-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.kv-about-hero .kv-reveal,
.kv-hero .kv-reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .kv-bg-seker { width: 420px; }
    .kv-main-product { width: 300px; }
}
@media (max-width: 992px) {
    .kv-intro { padding: 60px 0 60px; }
    .kv-intro-inner { padding: 0 24px; }
    .kv-intro-top { flex-direction: column; gap: 32px; margin-bottom: 48px; }
    .kv-intro-heading { flex: none; text-align: left; padding-top: 0; }
    .kv-intro-text { flex: none; max-width: 100%; padding-top: 0; }
    .kv-intro-curve { opacity: .5; }
    .kv-intro-cards { gap: 12px; }
    .kv-intro-card { aspect-ratio: 2.5 / 4; }
    .kv-intro-card:nth-child(n) { transform: none; }

    .kv-prod-deco { width: 60px !important; opacity: .06; }
    .kv-ft-float-1 { width: 80px; }
    .kv-ft-float-2 { width: 90px; }
    .kv-ft-float-3 { width: 70px; }
    .kv-culture-icon-1 { width: 100px; }
    .kv-culture-icon-2 { width: 70px; }
    .kv-culture-icon-3 { width: 60px; }

    .kv-about-inner { flex-direction: column; padding: 0 24px; gap: 40px; }
    .kv-about-left, .kv-about-right { flex: none; max-width: 100%; }
    .kv-about-left { text-align: center; }
    .kv-about-desc { margin: 0 auto 36px; }
    .kv-about-right { min-height: 320px; display: flex; align-items: center; justify-content: center; }
    .kv-bg-seker { display: none !important; transform: none !important; }
    .kv-roller-1, .kv-roller-2, .kv-roller-3 { display: none !important; transform: none !important; }
    .kv-main-product {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 260px;
        margin: 0 auto;
        will-change: auto !important;
    }
    .kv-roller {
        will-change: auto !important;
    }

    .kv-prod-showcase-inner { padding: 0 24px; }
    .kv-prod-showcase-title { font-size: clamp(32px, 5vw, 52px); }
    .kv-pslide-img { width: 170px; height: 170px; }
    .swiper-slide-active .kv-pslide-img { width: 220px; height: 220px; }
    .kv-pslide-circle { width: 220px; height: 220px; }
    .swiper-slide-active .kv-pslide-circle { width: 270px; height: 270px; }

    .kv-spot-inner { padding: 60px 24px 50px; }
    .kv-spot-info { flex-direction: column; text-align: center; gap: 20px; }
    .kv-spot-text p { text-align: center; }
    .kv-spot-float-1 { left: -20px; width: 70px; }
    .kv-spot-float-2 { right: -20px; width: 50px; }

    .kv-blog-inner { padding: 0 24px; }

    .kv-names { padding: 60px 0; }
    .kv-names-inner { padding: 0 24px; }
    .kv-name-item { padding: 32px 16px; }
    .kv-name-circle { width: 180px; height: 180px; }

    .kv-ft-body { padding: 32px 24px 28px; }
    .kv-ft-nav-row { flex-direction: column; align-items: center; gap: 20px; margin-bottom: 32px; }
    .kv-ft-bottom-row {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    .kv-ft-bottom-left,
    .kv-ft-bottom-row .kv-ft-top,
    .kv-ft-bottom-row .kv-ft-legal { justify-self: center; }
    .kv-ft-bottom-left { flex-direction: column; gap: 12px; }
    .kv-ft-legal { align-items: center; }

    .kv-five-inner { padding: 0 24px; }
    .kv-five-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        min-height: auto;
        gap: 12px;
    }
    .kv-five-info {
        grid-column: 1 / 3;
        grid-row: 1;
        padding: 28px 24px;
    }
    .kv-five-img--wide {
        grid-column: 1;
        grid-row: 2;
        height: 220px;
    }
    .kv-five-img--tall {
        grid-column: 2;
        grid-row: 2 / 4;
        height: auto;
    }
    .kv-five-img--right-top {
        grid-column: 1;
        grid-row: 3;
        height: 220px;
    }
    .kv-five-img--right-bottom { display: none; }

    .kv-culture-wrap { padding: 0 24px; }
    .kv-culture { min-height: 560px; padding: 50px 36px 40px; border-radius: 22px; }
    .kv-culture-photo-1 { width: 290px; height: 220px; }
    .kv-culture-photo-2 { width: 190px; height: 220px; right: 20%; }
    .kv-culture-photo-3 { width: 170px; height: 230px; }
    .kv-culture-card { width: 270px; padding: 22px 22px 26px; right: 14%; top: 18%; }
    .kv-culture-card-title { font-size: 15px; }

    .kv-wtb-top { flex-direction: column; gap: 20px; }
    .kv-wtb-content { flex-direction: column; gap: 24px; }
    .kv-wtb-tabs-col { flex: none; position: static; }
    .kv-wtb-tabs { flex-direction: row; flex-wrap: wrap; gap: 6px; }
    .kv-wtb-tab { border-left: none; border-bottom: 3px solid transparent; padding: 10px 18px; font-size: 13px; }
    .kv-wtb-tab.active { border-left-color: transparent; border-bottom-color: #fff; }
    .kv-wtb-inner { padding: 0 24px; }
    .kv-firm { flex: 1 1 calc(50% - 10px); min-width: 220px; max-width: 100%; }
}
@media (max-width: 768px) {
    .kv-intro { padding: 48px 0 48px; }
    .kv-intro-inner { padding: 0 16px; }
    .kv-intro-heading h2 { font-size: clamp(28px, 7vw, 42px); }
    .kv-intro-text p { font-size: 14px; }
    .kv-intro-curve { display: none; }
    .kv-intro-cards { flex-wrap: wrap; gap: 10px; }
    .kv-intro-card { flex: 1 1 calc(50% - 10px); min-width: calc(50% - 10px); aspect-ratio: 4 / 3; }
    .kv-intro-card:last-child { display: none; }

    .kv-ft-float { opacity: .04; }
    .kv-ft-float-1 { width: 60px; }
    .kv-ft-float-2 { width: 70px; }
    .kv-ft-float-3 { width: 50px; }

    .kv-unions-arc { width: 500px; height: 500px; top: -260px; right: -60px; }
    .kv-union-card img { max-height: 34px; max-width: 100px; }

    /* Products: hide wave + deco, full mobile layout */
    .kv-prod-wave { display: none; }
    .kv-prod-deco { display: none; }
    .kv-prod-curve-wrap { display: none; }
    .kv-prod-showcase { padding: 40px 0 60px; }

    .kv-p2-curve-wrap { display: none; }
    .kv-p2-inner { padding: 0 20px; }
    .kv-p2-header { flex-direction: column; gap: 20px; margin-bottom: 32px; }
    .kv-p2-title { font-size: clamp(26px, 6vw, 38px); }
    .kv-p2-img { width: 140px; height: 170px; }
    .kv-p2-card-images { height: 190px; }
    .kv-prod-showcase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-bottom: 30px;
    }
    .kv-prod-showcase-title { font-size: clamp(28px, 7vw, 40px); }
    .kv-prod-nav { flex-direction: row; }
    .kv-prod-showcase-header .kv-view-all-btn { display: none; }
    .kv-product-swiper { overflow: hidden !important; }
    .kv-pslide-img { width: 150px; height: 150px; }
    .swiper-slide-active .kv-pslide-img { width: 190px; height: 190px; }
    .kv-pslide-circle { width: 180px; height: 180px; }
    .swiper-slide-active .kv-pslide-circle { width: 220px; height: 220px; }

    .kv-names-grid { grid-template-columns: repeat(2, 1fr); }
    .kv-name-circle { width: 140px; height: 140px; }

    /* Footer: hide wave */
    .kv-ft-wave { display: none; }
    .kv-ft-body { padding: 28px 16px 24px; }
    .kv-ft-slogan { font-size: 13px; }
    .kv-ft-menu { justify-content: center; gap: 16px; }
    .kv-ft-bottom-row { gap: 20px; }
    .kv-ft-nav-row { flex-direction: column; margin-bottom: 28px; }

    /* Gallery: straight cards, no tilt */
    .kv-gallery { padding: 70px 0 90px; }
    .kv-gallery-inner { padding: 0 24px; }
    .kv-gallery-cards { flex-wrap: wrap; }
    .kv-gcard { flex: 0 0 calc(50% - 12px); width: calc(50% - 12px); height: 200px; }
    .kv-gcard:nth-child(1),
    .kv-gcard:nth-child(2),
    .kv-gcard:nth-child(3),
    .kv-gcard:nth-child(4),
    .kv-gcard:nth-child(5) { transform: none; }
    .kv-gcard:hover { transform: scale(1.02) !important; }
    .kv-gallery-curve-wrap { display: none; }

    .kv-five-curve-wrap { display: none; }
    .kv-five-kicker { font-size: 14px; margin-bottom: 28px; }
    .kv-five-grid { gap: 10px; }
    .kv-five-title { font-size: 24px; }
    .kv-five-desc { font-size: 13px; }
    .kv-five-img--wide { height: 200px; }
    .kv-five-img--right-top { height: 200px; }

    .kv-culture-wrap { padding: 0 16px; }
    .kv-culture { min-height: 480px; padding: 36px 24px 32px; border-radius: 18px; flex-direction: column; align-items: flex-start; }
    .kv-culture-photo-1 { width: 220px; height: 180px; top: 5%; left: 4%; }
    .kv-culture-photo-2 { width: 150px; height: 180px; right: 4%; bottom: 8%; }
    .kv-culture-photo-3 { display: none; }
    .kv-culture-card { position: relative; top: auto; right: auto; width: 100%; margin-bottom: 24px; order: -1; }
    .kv-culture-headline { font-size: clamp(28px, 7vw, 40px); }
    .kv-culture-icon-3 { display: none; }
    .kv-culture-curve-wrap { display: none; }

    .kv-blog-title { font-size: clamp(26px, 5vw, 36px); margin-bottom: 28px; }
    .kv-blog-read-btn { display: none; }
    .kv-blog-card-img { border-radius: 12px; }
    .kv-blog-card-title { font-size: 14px; }
    .kv-blog-card-desc { font-size: 12px; -webkit-line-clamp: 2; }
}
@media (max-width: 576px) {
    .kv-intro { padding: 36px 0 36px; }
    .kv-intro-top { margin-bottom: 32px; }
    .kv-intro-heading h2 { font-size: 28px; }
    .kv-intro-card { flex: 1 1 100%; min-width: 100%; aspect-ratio: 4 / 3; }
    .kv-intro-card:nth-child(n+4) { display: none; }
    .kv-intro-card--plain .kv-intro-card-label { font-size: 16px; }

    .kv-unions-arc { display: none; }
    .kv-unions-strip { padding-top: 40px; }
    .kv-union-card img { max-height: 28px; max-width: 80px; }
    .kv-prod-wave-bottom { display: none; }

    .kv-spot-inner { padding: 50px 16px 40px; }
    .kv-spot-image { height: 220px; }
    .kv-spot-float-1 { width: 55px; top: 30px; left: -10px; }
    .kv-spot-float-2 { width: 40px; right: -10px; }
    .kv-spot-float-3 { display: none; }
    .kv-spot-logo img { height: 40px; }
    .kv-spot-text p { font-size: 13px; }

    .kv-about { padding: 80px 0 60px; }
    .kv-about-inner { padding: 0 16px; }
    .kv-about-right { min-height: 240px; }
    .kv-main-product { width: 200px; }

    .kv-prod-showcase { padding: 30px 0 60px; }
    .kv-prod-showcase-inner { padding: 0 16px; }

    .kv-p2-inner { padding: 0 16px; }
    .kv-p2-body { padding: 30px 0 40px; }
    .kv-p2-nav-btn { width: 38px; height: 38px; }
    .kv-p2-nav-btn svg { width: 15px; height: 15px; }
    .kv-p2-all-btn { font-size: 12px; padding: 10px 18px 10px 14px; }
    .kv-p2-img { width: 120px; height: 150px; border-radius: 12px; }
    .kv-p2-card-images { height: 170px; }
    .kv-p2-card { padding: 18px 18px 22px; border-radius: 16px; }
    .kv-p2-card-name { font-size: 16px; }
    .kv-p2-card-desc { font-size: 12px; }
    .kv-prod-nav-btn { width: 42px; height: 42px; }
    .kv-prod-nav-btn svg { width: 16px; height: 16px; }
    .kv-pslide-img { width: 130px; height: 130px; }
    .swiper-slide-active .kv-pslide-img { width: 160px; height: 160px; }
    .kv-pslide-circle { width: 150px; height: 150px; }
    .swiper-slide-active .kv-pslide-circle { width: 190px; height: 190px; }
    .kv-pslide-name { font-size: 13px; margin-top: 14px; }

    /* WTB: hide wave */
    .kv-wtb-wave { display: none; }
    .kv-wtb-body { padding: 40px 0 60px; }
    .kv-wtb-inner { padding: 0 16px; }
    .kv-wtb-title { font-size: clamp(28px, 7vw, 40px); }
    .kv-wtb-tab { font-size: 12px; padding: 8px 14px; }
    .kv-firm { flex: 1 1 100%; max-width: 100%; min-width: 0; }
    .kv-firm-logo { height: 110px; }
    .kv-firm-body { padding: 16px 18px 20px; }
    .kv-view-all-btn { font-size: 12px; padding: 10px 16px 10px 18px; }
    .kv-view-all-icon { width: 28px; height: 28px; }
    .kv-view-all-icon svg { width: 12px; height: 12px; }

    .kv-blog-wave { display: none; }
    .kv-blog-body { padding: 40px 0 50px; }
    .kv-blog-inner { padding: 0 16px; }
    .kv-blog-kicker { letter-spacing: 2px; font-size: 11px; }
    .kv-blog-title { font-size: clamp(24px, 7vw, 32px); margin-bottom: 20px; }
    .kv-blog-toolbar { margin-bottom: 24px; }
    .kv-blog-nav-btn { width: 38px; height: 38px; }
    .kv-blog-nav-btn svg { width: 15px; height: 15px; }
    .kv-blog-card-img { border-radius: 10px; margin-bottom: 12px; }
    .kv-blog-card-title { font-size: 14px; margin-bottom: 4px; }
    .kv-blog-card-desc { font-size: 12px; }

    /* Gallery */
    .kv-gallery { padding: 50px 0 60px; }
    .kv-gallery-inner { padding: 0 16px; }
    .kv-gcard { flex: 0 0 calc(50% - 8px); width: calc(50% - 8px); height: 160px; border-radius: 14px; }
    .kv-gallery-cards { gap: 12px; }

    .kv-names { padding: 40px 0; }
    .kv-names-inner { padding: 0 16px; }
    .kv-names-grid { grid-template-columns: 1fr; }
    .kv-name-item { padding: 28px 12px; }
    .kv-name-circle { width: 120px; height: 120px; }

    .kv-five-inner { padding: 0 16px; }
    .kv-five-kicker { font-size: 13px; margin-bottom: 24px; }
    .kv-five-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 10px;
    }
    .kv-five-info {
        grid-column: 1;
        grid-row: 1;
        text-align: center;
        align-items: center;
        padding: 28px 20px;
    }
    .kv-five-btn { align-self: center; }
    .kv-five-desc { margin: 0 auto; }
    .kv-five-img--wide {
        grid-column: 1;
        grid-row: 2;
        height: 200px;
    }
    .kv-five-img--tall {
        grid-column: 1;
        grid-row: 3;
        height: 300px;
    }
    .kv-five-img--right-top {
        grid-column: 1;
        grid-row: 4;
        height: 200px;
    }
    .kv-five-img--right-bottom {
        display: block;
        grid-column: 1;
        grid-row: 5;
        height: 200px;
    }
    .kv-five-title { font-size: 22px; }
    .kv-five-desc { font-size: 13px; }
    .kv-five-btn { font-size: 13px; padding: 12px 24px; }

    .kv-culture-wrap { padding: 0 12px; }
    .kv-culture { min-height: 400px; padding: 24px 16px 24px; border-radius: 16px; }
    .kv-culture-photo-1 { width: 170px; height: 140px; top: auto; bottom: 50px; left: 2%; border-radius: 12px; }
    .kv-culture-photo-2 { width: 130px; height: 150px; right: 2%; bottom: 50px; border-radius: 12px; }
    .kv-culture-card { padding: 18px; border-radius: 14px; }
    .kv-culture-card-title { font-size: 14px; margin-bottom: 12px; }
    .kv-culture-badge { font-size: 11px; padding: 6px 12px 6px 10px; margin-bottom: 16px; }
    .kv-culture-headline { font-size: clamp(22px, 8vw, 30px); }
    .kv-culture-icon { display: none; }
    .kv-ft-floats { display: none; }
    .kv-prod-deco { display: none !important; }
}


/* ============================================================
   ABOUT PAGE — kv-about-*
   ============================================================ */

/* ─── 1. Hero ─── */
.kv-about-hero {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 420px;
    max-height: 700px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}
.kv-about-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.kv-about-hero.is-loaded .kv-about-hero-bg {
    transform: scale(1);
}
.kv-about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%);
    pointer-events: none;
}
.kv-about-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 48px 64px;
}
.kv-about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,.7);
    margin-bottom: 16px;
    font-family: var(--kv-font);
}
.kv-about-breadcrumb a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    transition: color .3s;
}
.kv-about-breadcrumb a:hover { color: #fff; }
.kv-about-breadcrumb-sep { display: flex; align-items: center; }
.kv-about-breadcrumb-sep svg { width: 14px; height: 14px; }
.kv-about-breadcrumb span:last-child { color: #fff; }
.kv-about-hero-title {
    font-family: var(--kv-font);
    font-weight: 900;
    font-size: clamp(40px, 5vw, 64px);
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0;
}
.kv-about-hero-subtitle {
    font-family: var(--kv-font);
    font-weight: 400;
    font-size: clamp(15px, 1.6vw, 19px);
    color: rgba(255,255,255,.85);
    margin-top: 14px;
    max-width: 560px;
    line-height: 1.6;
}

/* Page-specific hero backgrounds (fallback dark gradients) */
.kv-page-hero-contact {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%) !important;
}
.kv-page-hero-policy {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b2838 40%, #2a4054 100%) !important;
}
.kv-page-hero-products {
    background: linear-gradient(135deg, #2d1b3d 0%, #3d1f4e 40%, #5c2d82 100%) !important;
}
.kv-page-hero-news {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b3d 40%, #4a1942 100%) !important;
}
.kv-about-hero-bg:not([style*="background-image:url('"]):not([style*="background-image:url(''"]) {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
}

/* Scroll hint */
.kv-about-scroll-hint {
    position: absolute;
    bottom: 28px;
    right: 48px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.6);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--kv-font);
}
.kv-about-scroll-line {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,.25);
    position: relative;
    overflow: hidden;
}
.kv-about-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    animation: aboutScrollLine 2s ease-in-out infinite;
}
@keyframes aboutScrollLine {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

/* ─── 2. Story ─── */
.kv-about-story {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
    background: var(--kv-light);
}
.kv-about-story-curve {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 720px;
    pointer-events: none;
    z-index: 0;
    opacity: .7;
}
.kv-about-story-curve-path {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
}
.kv-about-story-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}
.kv-about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.kv-about-story-heading {
    font-family: var(--kv-font);
    font-weight: 900;
    font-size: clamp(32px, 4vw, 52px);
    color: var(--kv-dark);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin: 0 0 40px;
}
.kv-about-accent {
    color: var(--kv-pink);
    position: relative;
    display: inline-block;
    font-style: italic;
}
.kv-about-swoosh {
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 12px;
}
.kv-about-story-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.1);
}
.kv-about-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.kv-about-story-img:hover img {
    transform: scale(1.03);
}
.kv-about-story-text {
    font-family: var(--kv-font);
    font-size: 15px;
    line-height: 1.8;
    color: var(--kv-gray);
    margin-bottom: 48px;
}
.kv-about-story-text p { margin-bottom: 16px; }
.kv-about-story-text strong { color: var(--kv-dark); }

/* Stats */
.kv-about-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(0,0,0,.08);
}
.kv-about-stat {
    text-align: center;
}
.kv-about-stat-num {
    font-family: var(--kv-font);
    font-weight: 900;
    font-size: clamp(36px, 3.5vw, 52px);
    color: var(--kv-pink);
    line-height: 1;
    display: inline;
}
.kv-about-stat-plus,
.kv-about-stat-suffix {
    font-family: var(--kv-font);
    font-weight: 700;
    font-size: clamp(20px, 2vw, 28px);
    color: var(--kv-pink);
}
.kv-about-stat-label {
    display: block;
    margin-top: 6px;
    font-family: var(--kv-font);
    font-size: 13px;
    font-weight: 600;
    color: var(--kv-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ─── 3. Gallery / Bento ─── */
.kv-about-gallery {
    padding: 80px 0 100px;
    background: #fff;
    overflow: hidden;
}
.kv-about-gallery-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}
.kv-about-gallery-header {
    text-align: center;
    margin-bottom: 48px;
}
.kv-about-kicker {
    display: inline-block;
    font-family: var(--kv-font);
    font-weight: 700;
    font-size: 13px;
    color: var(--kv-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.kv-about-gallery-title {
    font-family: var(--kv-font);
    font-weight: 900;
    font-size: clamp(28px, 3.5vw, 48px);
    color: var(--kv-dark);
    line-height: 1.15;
}
.kv-about-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 280px 280px;
    gap: 16px;
}
.kv-about-bento-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
}
.kv-about-bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.kv-about-bento-item:hover img {
    transform: scale(1.06);
}
.kv-about-bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(214,51,108,.85) 100%);
    opacity: 0;
    transition: opacity .4s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.kv-about-bento-item:hover .kv-about-bento-overlay {
    opacity: 1;
}
.kv-about-bento-overlay span {
    font-family: var(--kv-font);
    font-weight: 700;
    font-size: 15px;
    color: #fff;
}
.kv-about-bento--large {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}
.kv-about-bento--tall {
    grid-column: 3;
    grid-row: 1 / 3;
}
.kv-about-bento--wide {
    grid-column: 4;
    grid-row: 1 / 3;
}
.kv-about-bento--sm1 {
    grid-column: 1;
    grid-row: 2;
}
.kv-about-bento--sm2 {
    grid-column: 2;
    grid-row: 2;
}

/* ─── 4. Showcase (Component 9+10) ─── */
.kv-about-showcase {
    padding: 80px 0 90px;
    background: var(--kv-light);
    overflow: hidden;
}
.kv-about-showcase-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}
.kv-about-showcase-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.kv-about-showcase-text { max-width: 600px; }
.kv-about-showcase-title {
    font-family: var(--kv-font);
    font-weight: 900;
    font-size: clamp(28px, 3.5vw, 44px);
    color: var(--kv-dark);
    line-height: 1.15;
    margin: 6px 0 12px;
}
.kv-about-showcase-desc {
    font-family: var(--kv-font);
    font-size: 15px;
    line-height: 1.7;
    color: var(--kv-gray);
    margin: 0;
}
.kv-about-showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--kv-pink);
    color: #fff;
    font-family: var(--kv-font);
    font-weight: 700;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all .3s;
    white-space: nowrap;
    flex-shrink: 0;
}
.kv-about-showcase-btn:hover {
    background: var(--kv-pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(214,51,108,.3);
}
.kv-about-showcase-btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
}
.kv-about-showcase-btn-arrow svg { width: 14px; height: 14px; color: #fff; }

/* Mosaic grid — asymmetric, different from homepage five */
.kv-about-showcase-mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 180px;
    gap: 16px;
}
.kv-about-showcase-tile {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.kv-about-showcase-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.kv-about-showcase-tile:hover img { transform: scale(1.05); }
.kv-about-showcase-tile-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,.6));
    color: #fff;
    transform: translateY(100%);
    transition: transform .4s ease;
}
.kv-about-showcase-tile:hover .kv-about-showcase-tile-info { transform: translateY(0); }
.kv-about-showcase-tile-info h4 {
    font-family: var(--kv-font);
    font-weight: 800;
    font-size: 15px;
    margin: 0 0 4px;
}
.kv-about-showcase-tile-info p {
    font-family: var(--kv-font);
    font-size: 12px;
    opacity: .85;
    margin: 0;
}
.kv-about-showcase-tile--1 { grid-column: 1 / 5; grid-row: 1 / 3; }
.kv-about-showcase-tile--2 { grid-column: 5 / 8; grid-row: 1 / 2; }
.kv-about-showcase-tile--3 { grid-column: 8 / 13; grid-row: 1 / 2; }
.kv-about-showcase-tile--4 { grid-column: 5 / 9; grid-row: 2 / 3; }
.kv-about-showcase-tile--5 { grid-column: 9 / 13; grid-row: 2 / 3; }

/* ─── 6. CTA ─── */
.kv-about-cta {
    position: relative;
    padding: 0 0 80px;
    background: var(--kv-pink);
    overflow: hidden;
    text-align: center;
}
.kv-about-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('img/menu-pattern-bg.svg') repeat center / 400px;
    opacity: .19;
    pointer-events: none;
}
.kv-about-cta-wave-top {
    position: relative;
    line-height: 0;
    margin-bottom: -1px;
    z-index: 3;
}
.kv-about-cta-wave-top svg {
    display: block;
    width: 100%;
    height: 80px;
}
.kv-about-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.kv-about-cta-icon {
    position: absolute;
    pointer-events: none;
    opacity: .15;
    z-index: 1;
}
.kv-about-cta-icon-1 { width: 90px; top: 80px; left: 8%; animation: aboutCtaFloat1 6s ease-in-out infinite; }
.kv-about-cta-icon-2 { width: 70px; bottom: 60px; right: 10%; animation: aboutCtaFloat2 7s ease-in-out infinite; }
.kv-about-cta-icon-3 { width: 55px; top: 50%; right: 20%; animation: aboutCtaFloat3 5s ease-in-out infinite; }
@keyframes aboutCtaFloat1 { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-18px) rotate(8deg); } }
@keyframes aboutCtaFloat2 { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-14px) rotate(-6deg); } }
@keyframes aboutCtaFloat3 { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-20px) rotate(10deg); } }
.kv-about-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 32px;
}
.kv-about-cta-title {
    font-family: var(--kv-font);
    font-weight: 900;
    font-size: clamp(28px, 4vw, 48px);
    color: #fff;
    line-height: 1.15;
    margin: 0 0 16px;
}
.kv-about-cta-desc {
    font-family: var(--kv-font);
    font-size: 16px;
    color: rgba(255,255,255,.8);
    line-height: 1.7;
    margin: 0 0 32px;
}
.kv-about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--kv-pink);
    font-family: var(--kv-font);
    font-weight: 700;
    font-size: 15px;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.kv-about-cta-btn:hover {
    background: var(--kv-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.kv-about-cta-btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--kv-pink);
    transition: background .3s;
}
.kv-about-cta-btn-arrow svg { width: 14px; height: 14px; color: #fff; }
.kv-about-cta-btn:hover .kv-about-cta-btn-arrow { background: var(--kv-pink); }


/* ============================================================
   ABOUT PAGE — Responsive
   ============================================================ */

@media (max-width: 1200px) {
    .kv-about-hero-inner { padding: 0 32px 56px; }
    .kv-about-scroll-hint { right: 32px; }
    .kv-about-story-inner,
    .kv-about-gallery-inner,
    .kv-about-showcase-inner { padding: 0 32px; }
    .kv-about-story-grid { gap: 48px; }
    .kv-about-bento { grid-template-rows: 240px 240px; }
    .kv-about-showcase-mosaic { grid-auto-rows: 160px; }
}

@media (max-width: 992px) {
    .kv-about-hero { height: 55vh; min-height: 360px; }
    .kv-about-hero-inner { padding: 0 24px 48px; }
    .kv-about-scroll-hint { display: none; }
    .kv-about-story { padding: 72px 0 64px; }
    .kv-about-story-inner,
    .kv-about-gallery-inner,
    .kv-about-showcase-inner { padding: 0 24px; }
    .kv-about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .kv-about-story-img { max-width: 500px; }
    .kv-about-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .kv-about-bento--large { grid-column: 1 / 3; grid-row: auto; }
    .kv-about-bento--tall { grid-column: 1; grid-row: auto; }
    .kv-about-bento--wide { grid-column: 2; grid-row: auto; }
    .kv-about-bento--sm1 { grid-column: 1; grid-row: auto; }
    .kv-about-bento--sm2 { grid-column: 2; grid-row: auto; }
    .kv-about-bento-item { height: 220px; }
    .kv-about-bento--large { height: 280px; }
    .kv-about-showcase { padding: 60px 0 70px; }
    .kv-about-showcase-header { flex-direction: column; align-items: flex-start; }
    .kv-about-showcase-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    .kv-about-showcase-tile--1 { grid-column: 1 / 3; grid-row: auto; }
    .kv-about-showcase-tile--2,
    .kv-about-showcase-tile--3,
    .kv-about-showcase-tile--4,
    .kv-about-showcase-tile--5 { grid-column: auto; grid-row: auto; }
    .kv-about-cta { padding: 0 0 60px; }
}

@media (max-width: 768px) {
    .kv-about-hero { height: 50vh; min-height: 320px; }
    .kv-about-hero-inner { padding: 0 20px 40px; }
    .kv-about-hero-title { font-size: clamp(32px, 8vw, 44px); }
    .kv-about-story { padding: 56px 0 48px; }
    .kv-about-story-inner,
    .kv-about-gallery-inner,
    .kv-about-showcase-inner { padding: 0 20px; }
    .kv-about-stats { flex-wrap: wrap; gap: 24px; }
    .kv-about-stat { flex: 1; min-width: 80px; }
    .kv-about-gallery { padding: 56px 0 64px; }
    .kv-about-bento {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .kv-about-bento-item { height: 180px; }
    .kv-about-bento--large { height: 220px; }
    .kv-about-showcase-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 160px;
        gap: 12px;
    }
    .kv-about-showcase-tile--1 { grid-column: 1 / 3; }
    .kv-about-cta-icon { display: none; }
    .kv-about-cta-wave-top svg { height: 50px; }
}

@media (max-width: 576px) {
    .kv-about-hero { height: 45vh; min-height: 280px; }
    .kv-about-hero-inner { padding: 0 16px 32px; }
    .kv-about-hero-title { font-size: clamp(28px, 9vw, 36px); }
    .kv-about-hero-subtitle { font-size: 14px; }
    .kv-about-story { padding: 40px 0 36px; }
    .kv-about-story-inner,
    .kv-about-gallery-inner,
    .kv-about-showcase-inner { padding: 0 16px; }
    .kv-about-story-heading { font-size: clamp(26px, 7vw, 34px); margin-bottom: 24px; }
    .kv-about-story-curve { display: none; }
    .kv-about-stats { gap: 16px; }
    .kv-about-stat-num { font-size: 32px; }
    .kv-about-gallery { padding: 40px 0 48px; }
    .kv-about-bento {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .kv-about-bento--large,
    .kv-about-bento--tall,
    .kv-about-bento--wide,
    .kv-about-bento--sm1,
    .kv-about-bento--sm2 {
        grid-column: 1;
        grid-row: auto;
        height: 200px;
    }
    .kv-about-showcase { padding: 40px 0 48px; }
    .kv-about-showcase-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: 180px;
    }
    .kv-about-showcase-tile--1,
    .kv-about-showcase-tile--2,
    .kv-about-showcase-tile--3,
    .kv-about-showcase-tile--4,
    .kv-about-showcase-tile--5 { grid-column: 1; }
    .kv-about-cta { padding: 0 0 48px; }
    .kv-about-cta-title { font-size: clamp(24px, 7vw, 32px); }
    .kv-about-cta-wave-top svg { height: 36px; }
}


/* ═══════════════════════════════════════════════════
   NEWS INDEX PAGE
   ═══════════════════════════════════════════════════ */

/* ─── Featured Slider Section ─── */
.kv-news-featured-section {
    position: relative;
    padding: 40px 0 60px;
    background: var(--kv-light);
    overflow: hidden;
}
.kv-news-featured-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.kv-news-featured-swiper {
    position: relative;
    z-index: 3;
    overflow: visible !important;
    perspective: 1200px;
}
.kv-news-featured-swiper .swiper-wrapper {
    align-items: center;
}
.kv-news-fslide {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 40px rgba(0,0,0,.15);
    transition: transform .6s cubic-bezier(.4,0,.2,1), box-shadow .6s ease, opacity .6s ease;
}
.kv-news-featured-swiper .swiper-slide {
    opacity: .55;
    transform: scale(.78) rotateY(0deg);
    transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
    transform-style: preserve-3d;
}
.kv-news-featured-swiper .swiper-slide-prev {
    transform: scale(.78) rotateY(6deg) translateX(30px);
    opacity: .65;
}
.kv-news-featured-swiper .swiper-slide-next {
    transform: scale(.78) rotateY(-6deg) translateX(-30px);
    opacity: .65;
}
.kv-news-featured-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
    z-index: 2;
}
.kv-news-featured-swiper .swiper-slide-active .kv-news-fslide {
    box-shadow: 0 20px 60px rgba(0,0,0,.22);
}
.kv-news-fslide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
.kv-news-featured-nav {
    position: absolute;
    right: 0;
    bottom: -60px;
    display: flex;
    gap: 8px;
    z-index: 5;
}
.kv-news-fnav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,.15);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
}
.kv-news-fnav-btn svg {
    width: 18px;
    height: 18px;
    color: var(--kv-dark);
}
.kv-news-fnav-btn:hover {
    background: var(--kv-pink);
    border-color: var(--kv-pink);
}
.kv-news-fnav-btn:hover svg {
    color: #fff;
}

/* ─── Featured Info ─── */
.kv-news-featured-info {
    padding: 40px 0 0;
}
.kv-news-finfo-date {
    font-family: var(--kv-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--kv-gray);
    display: block;
    margin-bottom: 12px;
}
.kv-news-finfo-line {
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,.1);
    margin-bottom: 20px;
}
.kv-news-finfo-title {
    font-family: var(--kv-font);
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 700;
    color: var(--kv-dark);
    line-height: 1.3;
    margin-bottom: 12px;
}
.kv-news-finfo-desc {
    font-family: var(--kv-font);
    font-size: 15px;
    color: var(--kv-gray);
    line-height: 1.7;
    max-width: 600px;
}

/* ─── News Grid Section ─── */
.kv-news-grid {
    padding: 60px 24px 80px;
    background: var(--kv-light);
}
.kv-news-grid-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* ─── Card Grid ─── */
.kv-news-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.kv-news-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,.05);
    transition: box-shadow .4s ease, transform .4s ease;
}
.kv-news-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
    transform: translateY(-4px);
}
.kv-news-card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}
.kv-news-card-img {
    position: relative;
    overflow: hidden;
    margin: 14px 14px 0;
    border-radius: 12px;
    height: 200px;
}
.kv-news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.kv-news-card:hover .kv-news-card-img img {
    transform: scale(1.06);
}
.kv-news-card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.kv-news-card-title {
    font-family: var(--kv-font);
    font-size: 17px;
    font-weight: 700;
    color: var(--kv-dark);
    line-height: 1.4;
    margin-bottom: 8px;
}
.kv-news-card-desc {
    font-size: 14px;
    color: var(--kv-gray);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}
.kv-news-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(0,0,0,.06);
}
.kv-news-card-readmore {
    font-family: var(--kv-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--kv-dark);
    transition: color .3s;
}
.kv-news-card:hover .kv-news-card-readmore {
    color: var(--kv-pink);
}
.kv-news-card-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    flex-shrink: 0;
}
.kv-news-card-arrow svg {
    width: 16px;
    height: 16px;
    color: var(--kv-dark);
    transition: color .3s;
}
.kv-news-card:hover .kv-news-card-arrow {
    background: var(--kv-pink);
    border-color: var(--kv-pink);
}
.kv-news-card:hover .kv-news-card-arrow svg {
    color: #fff;
}

/* ─── Category badge (used in detail/related) ─── */
.kv-news-card-cat {
    display: inline-block;
    font-family: var(--kv-font);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--kv-pink);
    background: rgba(214,51,108,.08);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
    width: fit-content;
}

/* ─── Pagination ─── */
.kv-news-pagination {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}
.kv-news-pagination nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.kv-news-pagination a,
.kv-news-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    font-family: var(--kv-font);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: var(--kv-gray);
    background: #fff;
    transition: all .3s;
}
.kv-news-pagination a:hover {
    background: var(--kv-pink);
    color: #fff;
}
.kv-news-pagination .active span,
.kv-news-pagination span[aria-current="page"] {
    background: var(--kv-pink);
    color: #fff;
}
.kv-news-pagination .disabled span {
    opacity: .4;
    cursor: not-allowed;
}

/* ─── Empty State ─── */
.kv-news-empty {
    text-align: center;
    padding: 80px 24px;
}
.kv-news-empty p {
    font-family: var(--kv-font);
    font-size: 18px;
    color: var(--kv-gray);
}

/* ═══════════════════════════════════════════════════
   NEWS DETAIL PAGE
   ═══════════════════════════════════════════════════ */

/* ─── Article Hero ─── */
.kv-article-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: flex-end;
    padding: 0 24px 60px;
    overflow: hidden;
}
.kv-article-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}
.kv-article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.75) 100%);
    z-index: 1;
}
.kv-article-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}
.kv-article-hero-cat {
    display: inline-block;
    font-family: var(--kv-font);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: #fff;
    background: var(--kv-pink);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.kv-article-hero-title {
    font-family: var(--kv-font);
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 20px;
}
.kv-article-body-title {
    display: none;
    font-family: var(--kv-font);
    font-size: 24px;
    font-weight: 800;
    color: var(--kv-dark);
    line-height: 1.3;
    margin-bottom: 24px;
}
.kv-article-hero-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.kv-article-hero-author,
.kv-article-hero-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--kv-font);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,.8);
}
.kv-article-hero-author svg,
.kv-article-hero-date svg {
    width: 18px;
    height: 18px;
    opacity: .7;
}

/* ─── Article Body ─── */
.kv-article-body {
    padding: 60px 24px 40px;
    background: #fff;
}
.kv-article-body-inner {
    max-width: 800px;
    margin: 0 auto;
}
.kv-article-content {
    font-family: var(--kv-font);
    font-size: 16px;
    line-height: 1.85;
    color: #333;
}
.kv-article-content p {
    margin-bottom: 20px;
}
.kv-article-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--kv-dark);
    margin: 36px 0 16px;
}
.kv-article-content h3 {
    font-size: 21px;
    font-weight: 700;
    color: var(--kv-dark);
    margin: 28px 0 12px;
}
.kv-article-content blockquote {
    border-left: 4px solid var(--kv-pink);
    padding: 16px 24px;
    margin: 28px 0;
    background: rgba(214,51,108,.04);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--kv-dark);
}
.kv-article-content ul,
.kv-article-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
}
.kv-article-content li {
    margin-bottom: 8px;
}
.kv-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}
.kv-article-content a {
    color: var(--kv-pink);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ─── Tags ─── */
.kv-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 32px 0 0;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,.08);
}
.kv-article-tag {
    display: inline-block;
    font-family: var(--kv-font);
    font-size: 12px;
    font-weight: 600;
    color: var(--kv-gray);
    background: var(--kv-light);
    padding: 6px 16px;
    border-radius: 50px;
    transition: all .3s;
}
.kv-article-tag:hover {
    background: var(--kv-pink);
    color: #fff;
}

/* ─── Share Bar ─── */
.kv-article-share {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,.08);
}
.kv-article-share-label {
    font-family: var(--kv-font);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--kv-dark);
}
.kv-article-share-btns {
    display: flex;
    gap: 10px;
}
.kv-article-share-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    transition: all .3s;
}
.kv-article-share-btn svg {
    width: 18px;
    height: 18px;
}
.kv-article-share-fb { background: #1877f2; }
.kv-article-share-tw { background: #1a1a1a; }
.kv-article-share-li { background: #0a66c2; }
.kv-article-share-wa { background: #25d366; }
.kv-article-share-btn:hover {
    transform: scale(1.12);
    opacity: .85;
}

/* ─── Article Gallery ─── */
.kv-article-gallery {
    padding: 40px 24px 60px;
    background: var(--kv-light);
}
.kv-article-gallery-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.kv-article-gallery-title {
    font-family: var(--kv-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--kv-dark);
    margin-bottom: 28px;
    text-align: center;
}
.kv-article-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.kv-article-gallery-item {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.kv-article-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.kv-article-gallery-item:hover img {
    transform: scale(1.06);
}

/* ─── Related Posts ─── */
.kv-article-related {
    padding: 60px 24px 80px;
    background: #fff;
}
.kv-article-related-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.kv-article-related-header {
    text-align: center;
    margin-bottom: 40px;
}
.kv-article-related-title {
    font-family: var(--kv-font);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--kv-dark);
}
.kv-article-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ═══════════════════════════════════════════════════
   NEWS & ARTICLE RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .kv-news-cards { grid-template-columns: repeat(2, 1fr); }
    .kv-article-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
    .kv-news-cards { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .kv-news-fslide img { height: 320px; }
    .kv-article-hero { min-height: 45vh; }
    .kv-article-related-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
    .kv-news-grid { padding: 40px 16px 60px; }
    .kv-news-cards { grid-template-columns: 1fr; gap: 20px; }
    .kv-news-fslide img { height: 240px; }
    .kv-news-featured-nav { bottom: -50px; }
    .kv-news-featured-info { padding-top: 30px; }
    .kv-article-hero { min-height: 40vh; padding: 0 16px 40px; }
    .kv-article-hero-title { display: none; }
    .kv-article-body-title { display: block; font-size: 22px; }
    .kv-article-body { padding: 40px 16px 32px; }
    .kv-article-content { font-size: 15px; }
    .kv-article-share { flex-direction: column; align-items: flex-start; }
    .kv-article-gallery-grid { grid-template-columns: 1fr 1fr; }
    .kv-article-related { padding: 40px 16px 60px; }
    .kv-article-related-grid { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 576px) {
    .kv-news-card-img { height: 180px; margin: 10px 10px 0; }
    .kv-news-fslide img { height: 200px; }
    .kv-article-hero { min-height: 35vh; }
    .kv-article-hero-meta { gap: 12px; }
    .kv-article-gallery-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════ */

/* --- HERO --- */
.kv-contact-hero {
    position: relative;
    padding: 180px 48px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(160deg, #fff 0%, #fdf0f4 40%, #ffe3ec 100%);
}
.kv-contact-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 25% 80%, rgba(214,51,108,.08) 0%, transparent 50%),
                radial-gradient(ellipse at 75% 20%, rgba(0,151,167,.06) 0%, transparent 50%);
    pointer-events: none;
}
.kv-contact-hero-float {
    position: absolute;
    opacity: .12;
    pointer-events: none;
    animation: kvContactFloat 8s ease-in-out infinite;
}
.kv-contact-hero-float-1 { width: 90px; top: 15%; left: 6%; animation-delay: 0s; }
.kv-contact-hero-float-2 { width: 70px; bottom: 20%; right: 8%; animation-delay: -3s; }
.kv-contact-hero-float-3 { width: 60px; top: 30%; right: 15%; animation-delay: -5s; }
@keyframes kvContactFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(12deg); }
}
.kv-contact-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
}
.kv-contact-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}
.kv-contact-breadcrumb a {
    color: var(--kv-gray);
    text-decoration: none;
    transition: color .3s;
}
.kv-contact-breadcrumb a:hover { color: var(--kv-pink); }
.kv-contact-breadcrumb-sep { color: #ccc; }
.kv-contact-breadcrumb-current { color: var(--kv-pink); font-weight: 600; }
.kv-contact-hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: var(--kv-dark);
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}
.kv-contact-hero-desc {
    font-size: 17px;
    color: var(--kv-gray);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
}

/* --- INFO CARDS --- */
.kv-contact-info {
    padding: 0 48px 60px;
    margin-top: -40px;
    position: relative;
    z-index: 3;
}
.kv-contact-info-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}
.kv-contact-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(0,0,0,.06);
    transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s;
    border: 1px solid rgba(214,51,108,.06);
}
.kv-contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(214,51,108,.1);
}
.kv-contact-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--kv-pink), #e64980);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.kv-contact-info-icon svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
}
.kv-contact-info-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--kv-pink);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
}
.kv-contact-info-value {
    font-size: 14px;
    color: var(--kv-dark);
    line-height: 1.6;
    word-break: break-word;
}
.kv-contact-info-value a {
    color: var(--kv-dark);
    text-decoration: none;
    transition: color .3s;
}
.kv-contact-info-value a:hover {
    color: var(--kv-pink);
}

/* Social row inside card */
.kv-contact-social-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}
.kv-contact-social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--kv-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    border: 1px solid transparent;
}
.kv-contact-social-link svg {
    width: 20px;
    height: 20px;
    stroke: var(--kv-dark);
    transition: stroke .3s;
}
.kv-contact-social-link:hover {
    background: var(--kv-pink);
    border-color: var(--kv-pink);
    transform: translateY(-3px);
}
.kv-contact-social-link:hover svg {
    stroke: #fff;
    fill: #fff;
}
.kv-contact-social-x svg {
    fill: var(--kv-dark);
    stroke: none;
}
.kv-contact-social-x:hover svg {
    fill: #fff;
    stroke: none;
}

/* --- FORM SECTION --- */
.kv-contact-form-section {
    padding: 80px 48px 100px;
    background: var(--kv-light);
    position: relative;
    overflow: hidden;
}
.kv-contact-form-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--kv-pink) 50%, transparent 100%);
    opacity: .3;
}
.kv-contact-form-inner {
    max-width: 860px;
    margin: 0 auto;
}
.kv-contact-form-header {
    text-align: center;
    margin-bottom: 48px;
}
.kv-contact-form-title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--kv-dark);
    margin: 12px 0 12px;
}
.kv-contact-form-desc {
    font-size: 16px;
    color: var(--kv-gray);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Toast */
.kv-contact-toast {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 28px;
    border-radius: 16px;
    margin-bottom: 28px;
    font-family: var(--kv-font);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    animation: kvToastIn .6s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.kv-contact-toast svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}
.kv-contact-toast-success {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #065f46;
    border: 1px solid #86efac;
}
.kv-contact-toast-success svg { stroke: #16a34a; }
.kv-contact-toast-error {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: #991b1b;
    border: 1px solid #fca5a5;
}
.kv-contact-toast-error svg { stroke: #ef4444; }
@keyframes kvToastIn {
    from { opacity: 0; transform: translateY(-16px) scale(.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Form grid */
.kv-contact-form {
    display: block;
}
.kv-contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.kv-contact-field-full {
    grid-column: 1 / -1;
}
.kv-contact-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--kv-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.kv-contact-field input,
.kv-contact-field textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: var(--kv-font);
    color: var(--kv-dark);
    background: #fff;
    border: 2px solid #e8e8ec;
    border-radius: 14px;
    outline: none;
    transition: border-color .3s, box-shadow .3s;
    resize: vertical;
}
.kv-contact-field input:focus,
.kv-contact-field textarea:focus {
    border-color: var(--kv-pink);
    box-shadow: 0 0 0 4px rgba(214,51,108,.08);
}
.kv-contact-field input::placeholder,
.kv-contact-field textarea::placeholder {
    color: #b0b0b0;
    font-weight: 400;
}
.kv-contact-form-actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}
.kv-contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 44px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--kv-pink) 0%, #e64980 100%);
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all .35s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 6px 24px rgba(214,51,108,.25);
    font-family: var(--kv-font);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.kv-contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(214,51,108,.35);
    background: linear-gradient(135deg, #e64980 0%, var(--kv-pink) 100%);
}
.kv-contact-submit-btn svg {
    width: 18px;
    height: 18px;
}

/* Field focus/filled state enhancements */
.kv-contact-field.is-focused label {
    color: var(--kv-pink);
}
.kv-contact-field.is-filled label {
    color: var(--kv-teal);
}

/* ═══════ CONTACT RESPONSIVE ═══════ */
@media (max-width: 1200px) {
    .kv-contact-info-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
    .kv-contact-hero { padding: 160px 24px 60px; }
    .kv-contact-info { padding: 0 24px 50px; }
    .kv-contact-form-section { padding: 60px 24px 80px; }
}
@media (max-width: 768px) {
    .kv-contact-hero { padding: 140px 16px 50px; }
    .kv-contact-hero-title { font-size: clamp(26px, 6vw, 36px); }
    .kv-contact-info { padding: 0 16px 40px; margin-top: -30px; }
    .kv-contact-info-inner { grid-template-columns: 1fr; gap: 16px; }
    .kv-contact-info-card { padding: 28px 20px; }
    .kv-contact-form-section { padding: 50px 16px 60px; }
    .kv-contact-form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .kv-contact-hero { padding: 130px 12px 40px; }
    .kv-contact-hero-desc { font-size: 15px; }
    .kv-contact-info { padding: 0 12px 30px; margin-top: -24px; }
    .kv-contact-form-section { padding: 40px 12px 50px; }
    .kv-contact-submit-btn { width: 100%; justify-content: center; }
}


/* ═══════════════════════════════════════════════════
   POLICIES INDEX PAGE
   ═══════════════════════════════════════════════════ */

/* --- HERO --- */
.kv-policy-hero {
    position: relative;
    padding: 180px 48px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(160deg, #fff 0%, #eef9fa 40%, #e0f4f5 100%);
}
.kv-policy-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 75%, rgba(0,151,167,.07) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 25%, rgba(214,51,108,.05) 0%, transparent 50%);
    pointer-events: none;
}
.kv-policy-hero-float {
    position: absolute;
    opacity: .1;
    pointer-events: none;
    animation: kvContactFloat 8s ease-in-out infinite;
}
.kv-policy-hero-float-1 { width: 80px; top: 18%; left: 5%; animation-delay: 0s; }
.kv-policy-hero-float-2 { width: 65px; bottom: 15%; right: 7%; animation-delay: -3s; }
.kv-policy-hero-float-3 { width: 55px; top: 25%; right: 12%; animation-delay: -5s; }
.kv-policy-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
}
.kv-policy-hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: var(--kv-dark);
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}
.kv-policy-hero-desc {
    font-size: 17px;
    color: var(--kv-gray);
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
}

/* --- GRID --- */
.kv-policy-grid {
    padding: 60px 48px 80px;
    background: #fff;
}
.kv-policy-grid-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1280px;
    margin: 0 auto;
}

/* --- CARD --- */
.kv-policy-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: var(--kv-dark);
    box-shadow: 0 4px 24px rgba(0,0,0,.05);
    border: 1px solid #f0f0f2;
    transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s;
    display: flex;
    flex-direction: column;
}
.kv-policy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,151,167,.12);
}
.kv-policy-card-visual {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--kv-light);
}
.kv-policy-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.kv-policy-card:hover .kv-policy-card-visual img {
    transform: scale(1.06);
}
.kv-policy-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f2, #e8e8ec);
}
.kv-policy-card-placeholder svg {
    width: 48px;
    height: 48px;
    stroke: #c0c0c0;
}
.kv-policy-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,151,167,.85) 0%, rgba(0,151,167,.2) 40%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity .4s;
}
.kv-policy-card:hover .kv-policy-card-overlay {
    opacity: 1;
}
.kv-policy-card-view {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    background: rgba(255,255,255,.2);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,.3);
}
.kv-policy-card-view svg {
    width: 16px;
    height: 16px;
}
.kv-policy-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.kv-policy-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--kv-dark);
    line-height: 1.4;
    margin-bottom: 8px;
    transition: color .3s;
}
.kv-policy-card:hover .kv-policy-card-title {
    color: var(--kv-teal);
}
.kv-policy-card-summary {
    font-size: 14px;
    color: var(--kv-gray);
    line-height: 1.6;
    margin-bottom: 12px;
    flex: 1;
}
.kv-policy-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 8px;
    background: #fef2f2;
    color: #dc2626;
    font-size: 12px;
    font-weight: 700;
    width: fit-content;
}
.kv-policy-card-badge svg {
    width: 14px;
    height: 14px;
    stroke: #dc2626;
}


/* ═══════════════════════════════════════════════════
   POLICY DETAIL PAGE
   ═══════════════════════════════════════════════════ */

.kv-policy-detail-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    padding: 0 48px 60px;
    overflow: hidden;
}
.kv-policy-detail-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--kv-dark) 0%, #2a2a2a 100%);
}
.kv-policy-detail-hero-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .3;
}
.kv-policy-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,.95) 0%, rgba(26,26,26,.4) 50%, transparent 100%);
}
.kv-policy-detail-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.kv-policy-detail-hero .kv-contact-breadcrumb a,
.kv-policy-detail-hero .kv-contact-breadcrumb-sep {
    color: rgba(255,255,255,.6);
}
.kv-policy-detail-hero .kv-contact-breadcrumb a:hover {
    color: var(--kv-pink);
}
.kv-policy-detail-hero .kv-contact-breadcrumb-current {
    color: #fff;
}
.kv-policy-detail-hero-title {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
}
.kv-policy-detail-hero-summary {
    font-size: 16px;
    color: rgba(255,255,255,.7);
    line-height: 1.6;
    max-width: 600px;
}

/* --- CONTENT LAYOUT --- */
.kv-policy-content {
    padding: 60px 48px 80px;
    background: #fff;
}
.kv-policy-content-inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    max-width: 1280px;
    margin: 0 auto;
}

/* Article */
.kv-policy-article-lead {
    font-size: 17px;
    color: var(--kv-dark);
    line-height: 1.7;
    font-weight: 500;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #f0f0f2;
}
.kv-policy-article-body {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
}
.kv-policy-article-body h1,
.kv-policy-article-body h2,
.kv-policy-article-body h3,
.kv-policy-article-body h4 {
    color: var(--kv-dark);
    margin: 32px 0 12px;
    font-weight: 700;
}
.kv-policy-article-body h2 { font-size: 24px; }
.kv-policy-article-body h3 { font-size: 20px; }
.kv-policy-article-body p { margin-bottom: 16px; }
.kv-policy-article-body ul,
.kv-policy-article-body ol {
    padding-left: 24px;
    margin-bottom: 16px;
}
.kv-policy-article-body li { margin-bottom: 8px; }
.kv-policy-article-body img {
    max-width: 100%;
    border-radius: 12px;
    margin: 20px 0;
}
.kv-policy-article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
.kv-policy-article-body table th,
.kv-policy-article-body table td {
    padding: 10px 14px;
    border: 1px solid #e8e8ec;
    text-align: left;
    font-size: 14px;
}
.kv-policy-article-body table th {
    background: var(--kv-light);
    font-weight: 700;
}
.kv-policy-article-action {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f2;
}
.kv-policy-dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--kv-teal) 0%, #00838f 100%);
    border-radius: 50px;
    text-decoration: none;
    transition: all .35s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 4px 16px rgba(0,151,167,.25);
}
.kv-policy-dl-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,151,167,.35);
}
.kv-policy-dl-btn svg {
    width: 18px;
    height: 18px;
}

/* Sidebar */
.kv-policy-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.kv-policy-sidebar-block {
    background: var(--kv-light);
    border-radius: 20px;
    padding: 28px;
}
.kv-policy-sidebar-heading {
    font-size: 16px;
    font-weight: 800;
    color: var(--kv-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--kv-teal);
}
.kv-policy-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.kv-policy-sidebar-list li {
    margin-bottom: 4px;
}
.kv-policy-sidebar-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--kv-dark);
    font-size: 14px;
    font-weight: 500;
    transition: all .3s;
}
.kv-policy-sidebar-list li a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke: var(--kv-gray);
    transition: stroke .3s;
}
.kv-policy-sidebar-list li a:hover {
    background: #fff;
    color: var(--kv-teal);
}
.kv-policy-sidebar-list li a:hover svg {
    stroke: var(--kv-teal);
}
.kv-policy-sidebar-list li.is-active a {
    background: var(--kv-teal);
    color: #fff;
    font-weight: 700;
}
.kv-policy-sidebar-list li.is-active a svg {
    stroke: #fff;
}

/* Support block */
.kv-policy-sidebar-support {
    background: linear-gradient(135deg, var(--kv-pink) 0%, #e64980 100%);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    color: #fff;
}
.kv-policy-sidebar-support-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.kv-policy-sidebar-support-icon svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
}
.kv-policy-sidebar-support-title {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 8px;
}
.kv-policy-sidebar-support-desc {
    font-size: 14px;
    opacity: .85;
    line-height: 1.5;
    margin-bottom: 16px;
}
.kv-policy-sidebar-support-phone,
.kv-policy-sidebar-support-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 40px;
    background: rgba(255,255,255,.2);
    backdrop-filter: blur(8px);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    transition: background .3s;
}
.kv-policy-sidebar-support-phone:hover,
.kv-policy-sidebar-support-email:hover {
    background: rgba(255,255,255,.35);
}
.kv-policy-sidebar-support-phone svg,
.kv-policy-sidebar-support-email svg {
    width: 16px;
    height: 16px;
}

/* ═══════ POLICY RESPONSIVE ═══════ */
@media (max-width: 1200px) {
    .kv-policy-grid-inner { grid-template-columns: repeat(2, 1fr); }
    .kv-policy-content-inner { grid-template-columns: 1fr 300px; gap: 32px; }
}
@media (max-width: 992px) {
    .kv-policy-hero { padding: 160px 24px 60px; }
    .kv-policy-grid { padding: 40px 24px 60px; }
    .kv-policy-detail-hero { padding: 0 24px 50px; min-height: 320px; }
    .kv-policy-content { padding: 40px 24px 60px; }
    .kv-policy-content-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .kv-policy-hero { padding: 140px 16px 50px; }
    .kv-policy-hero-title { font-size: clamp(26px, 6vw, 36px); }
    .kv-policy-grid { padding: 30px 16px 50px; }
    .kv-policy-grid-inner { grid-template-columns: 1fr; gap: 20px; }
    .kv-policy-detail-hero { padding: 0 16px 40px; min-height: 280px; }
    .kv-policy-detail-hero-title { font-size: clamp(22px, 5vw, 32px); }
    .kv-policy-content { padding: 30px 16px 50px; }
}
@media (max-width: 576px) {
    .kv-policy-hero { padding: 130px 12px 40px; }
    .kv-policy-grid { padding: 24px 12px 40px; }
    .kv-policy-card-body { padding: 18px; }
    .kv-policy-detail-hero { min-height: 260px; padding: 0 12px 30px; }
    .kv-policy-content { padding: 24px 12px 40px; }
    .kv-policy-sidebar-block { padding: 20px; }
}


/* ═══════════════════════════════════════════════════
   PRODUCTS INDEX PAGE
   ═══════════════════════════════════════════════════ */

/* --- HERO --- */
.kv-prod-hero {
    position: relative;
    padding: 180px 48px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(160deg, #fff 0%, #fff5f8 40%, #ffe8ef 100%);
}
.kv-prod-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(214,51,108,.06) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(0,151,167,.05) 0%, transparent 50%);
    pointer-events: none;
}
.kv-prod-hero-float {
    position: absolute;
    opacity: .1;
    pointer-events: none;
    animation: kvContactFloat 8s ease-in-out infinite;
}
.kv-prod-hero-float-1 { width: 85px; top: 16%; left: 5%; animation-delay: 0s; }
.kv-prod-hero-float-2 { width: 65px; bottom: 18%; right: 6%; animation-delay: -3s; }
.kv-prod-hero-float-3 { width: 55px; top: 28%; right: 14%; animation-delay: -5s; }
.kv-prod-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
}
.kv-prod-hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: var(--kv-dark);
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}
.kv-prod-hero-desc {
    font-size: 17px;
    color: var(--kv-gray);
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
}

/* --- LAYOUT --- */
.kv-prod-section {
    padding: 50px 48px 80px;
    background: #fff;
}
.kv-prod-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- SIDEBAR --- */
.kv-prod-sidebar-block {
    background: var(--kv-light);
    border-radius: 20px;
    padding: 28px;
    position: sticky;
    top: 120px;
}
.kv-prod-sidebar-heading {
    font-size: 16px;
    font-weight: 800;
    color: var(--kv-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--kv-pink);
}
.kv-prod-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.kv-prod-sidebar-list li { margin-bottom: 3px; }
.kv-prod-sidebar-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--kv-dark);
    font-size: 14px;
    font-weight: 500;
    transition: all .3s;
}
.kv-prod-sidebar-list li a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: var(--kv-gray);
    transition: stroke .3s;
}
.kv-prod-sidebar-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
}
.kv-prod-sidebar-count {
    margin-left: auto;
    font-size: 12px;
    font-weight: 700;
    color: var(--kv-gray);
    background: #e8e8ec;
    padding: 2px 8px;
    border-radius: 10px;
}
.kv-prod-sidebar-list li a:hover {
    background: #fff;
    color: var(--kv-pink);
}
.kv-prod-sidebar-list li a:hover svg { stroke: var(--kv-pink); }
.kv-prod-sidebar-list li.is-active a {
    background: var(--kv-pink);
    color: #fff;
    font-weight: 700;
}
.kv-prod-sidebar-list li.is-active a svg { stroke: #fff; }
.kv-prod-sidebar-list li.is-active .kv-prod-sidebar-count {
    background: rgba(255,255,255,.25);
    color: #fff;
}

/* --- TOOLBAR --- */
.kv-prod-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 28px;
    border-bottom: 1px solid #f0f0f2;
}
.kv-prod-toolbar-total {
    font-size: 14px;
    color: var(--kv-gray);
    font-weight: 500;
}
.kv-prod-sort-select {
    padding: 8px 16px;
    border: 2px solid #e8e8ec;
    border-radius: 10px;
    font-size: 13px;
    font-family: var(--kv-font);
    color: var(--kv-dark);
    background: #fff;
    cursor: pointer;
    outline: none;
    transition: border-color .3s;
}
.kv-prod-sort-select:focus { border-color: var(--kv-pink); }

/* --- PRODUCT GRID --- */
.kv-prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* --- PRODUCT CARD --- */
.kv-prod-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: var(--kv-dark);
    box-shadow: 0 4px 24px rgba(0,0,0,.05);
    border: 1px solid #f0f0f2;
    transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s;
    display: flex;
    flex-direction: column;
}
.kv-prod-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(214,51,108,.1);
}
.kv-prod-card-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--kv-light);
    margin: 12px 12px 0;
    border-radius: 14px;
}
.kv-prod-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.kv-prod-card:hover .kv-prod-card-img img {
    transform: scale(1.06);
}
.kv-prod-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(214,51,108,.8) 0%, rgba(214,51,108,.15) 40%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 16px;
    opacity: 0;
    transition: opacity .4s;
    border-radius: 14px;
}
.kv-prod-card:hover .kv-prod-card-overlay { opacity: 1; }
.kv-prod-card-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    background: rgba(255,255,255,.2);
    backdrop-filter: blur(8px);
    padding: 8px 18px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,.3);
}
.kv-prod-card-view-btn svg { width: 14px; height: 14px; }
.kv-prod-card-body {
    padding: 18px 20px 8px;
    flex: 1;
}
.kv-prod-card-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--kv-pink);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 6px;
}
.kv-prod-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--kv-dark);
    line-height: 1.35;
    margin-bottom: 6px;
    transition: color .3s;
}
.kv-prod-card:hover .kv-prod-card-title { color: var(--kv-pink); }
.kv-prod-card-summary {
    font-size: 13px;
    color: var(--kv-gray);
    line-height: 1.5;
}
.kv-prod-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-top: 1px solid #f0f0f2;
}
.kv-prod-card-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--kv-pink);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.kv-prod-card-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--kv-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}
.kv-prod-card-arrow svg { width: 16px; height: 16px; stroke: var(--kv-pink); }
.kv-prod-card:hover .kv-prod-card-arrow {
    background: var(--kv-pink);
}
.kv-prod-card:hover .kv-prod-card-arrow svg { stroke: #fff; }

/* Pagination */
.kv-prod-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}
.kv-prod-pagination nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}
.kv-prod-pagination p {
    font-family: var(--kv-font);
    font-size: 13px;
    color: var(--kv-gray);
    margin: 0;
}
.kv-prod-pagination nav > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}
.kv-prod-pagination span[aria-current="page"] > span,
.kv-prod-pagination a,
.kv-prod-pagination span[aria-disabled="true"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    font-family: var(--kv-font);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s;
    line-height: 1;
}
.kv-prod-pagination span[aria-current="page"] > span {
    background: var(--kv-pink);
    color: #fff;
    box-shadow: 0 4px 16px rgba(214,51,108,.25);
}
.kv-prod-pagination a {
    color: var(--kv-dark);
    background: #f5f5f8;
}
.kv-prod-pagination a:hover {
    background: var(--kv-teal);
    color: #fff;
}
.kv-prod-pagination svg {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0;
}
.kv-prod-pagination span[aria-disabled="true"] {
    background: #f0f0f2;
    color: #bbb;
    cursor: not-allowed;
}

/* Empty */
.kv-prod-empty {
    text-align: center;
    padding: 80px 20px;
}
.kv-prod-empty svg {
    width: 56px;
    height: 56px;
    stroke: #ccc;
    margin-bottom: 16px;
}
.kv-prod-empty p {
    font-size: 16px;
    color: var(--kv-gray);
}


/* ═══════════════════════════════════════════════════
   PRODUCT DETAIL PAGE V2 (kv-pdv-*)
   Minimal, clean product detail layout
   ═══════════════════════════════════════════════════ */

/* --- Main product section --- */
.kv-pdv {
    padding: 60px 48px 80px;
    background: #fff;
}
.kv-pdv-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* --- Gallery --- */
.kv-pdv-gallery {
    position: sticky;
    top: 120px;
}
.kv-pdv-main-img {
    border-radius: 20px;
    overflow: hidden;
    background: var(--kv-light);
    max-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.kv-pdv-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .3s ease;
}
/* Gallery prev/next navigation */
.kv-pdv-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all .3s;
    box-shadow: 0 2px 12px rgba(0,0,0,.1);
}
.kv-pdv-nav:hover {
    background: var(--kv-pink);
}
.kv-pdv-nav svg {
    width: 20px;
    height: 20px;
    stroke: var(--kv-dark);
    transition: stroke .3s;
}
.kv-pdv-nav:hover svg { stroke: #fff; }
.kv-pdv-prev { left: 12px; }
.kv-pdv-next { right: 12px; }
.kv-pdv-no-img {
    background: #f5f5f8;
}
.kv-pdv-no-img svg {
    width: 80px;
    height: 80px;
    stroke: #ccc;
}
.kv-pdv-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
}
.kv-pdv-thumb {
    width: 60px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    flex-shrink: 0;
    background: var(--kv-light);
    padding: 0;
    transition: border-color .25s, opacity .25s;
    opacity: .6;
}
.kv-pdv-thumb.is-active {
    border-color: var(--kv-pink);
    opacity: 1;
}
.kv-pdv-thumb:hover { opacity: 1; }
.kv-pdv-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Product info --- */
.kv-pdv-info {
    padding-top: 0;
}
.kv-pdv-cat {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--kv-pink);
    background: rgba(214,51,108,.08);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.kv-pdv-title {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    color: var(--kv-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}
.kv-pdv-summary {
    font-size: 16px;
    line-height: 1.75;
    color: var(--kv-gray);
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #eee;
}

/* Quick specs */
.kv-pdv-quick-specs {
    margin-bottom: 32px;
    background: #f9f9fb;
    border-radius: 16px;
    padding: 20px 24px;
}
.kv-pdv-qs-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eeeff2;
    font-size: 14px;
    line-height: 1.5;
}
.kv-pdv-qs-row:last-child { border-bottom: none; padding-bottom: 0; }
.kv-pdv-qs-row:first-child { padding-top: 0; }
.kv-pdv-qs-label {
    font-weight: 700;
    color: var(--kv-dark);
    min-width: 140px;
    flex-shrink: 0;
}
.kv-pdv-qs-value {
    color: var(--kv-gray);
}

/* Action buttons */
.kv-pdv-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.kv-pdv-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--kv-font);
    border-radius: 50px;
    text-decoration: none;
    transition: all .35s cubic-bezier(.4,0,.2,1);
    cursor: pointer;
    border: none;
}
.kv-pdv-btn svg { width: 18px; height: 18px; }
.kv-pdv-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--kv-pink) 0%, #e64980 100%);
    box-shadow: 0 6px 28px rgba(214,51,108,.25);
}
.kv-pdv-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(214,51,108,.35);
}
.kv-pdv-btn-outline {
    color: var(--kv-dark);
    background: #fff;
    border: 2px solid #e8e8ec;
}
.kv-pdv-btn-outline:hover {
    border-color: var(--kv-teal);
    color: var(--kv-teal);
    transform: translateY(-3px);
}

/* --- Details section (Tabs) --- */
.kv-pdv-detail {
    padding: 0 48px 80px;
    background: #fff;
}
.kv-pdv-detail-inner {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #eee;
    padding-top: 48px;
}

/* Tabs */
.kv-pdv-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 32px;
    border-bottom: 2px solid #f0f0f2;
}
.kv-pdv-tab {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--kv-font);
    color: var(--kv-gray);
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: color .25s;
}
.kv-pdv-tab::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: var(--kv-pink);
    transform: scaleX(0);
    transition: transform .3s;
}
.kv-pdv-tab:hover { color: var(--kv-dark); }
.kv-pdv-tab.is-active {
    color: var(--kv-dark);
}
.kv-pdv-tab.is-active::after {
    transform: scaleX(1);
}

/* Tab content */
.kv-pdv-tab-content {
    display: none;
}
.kv-pdv-tab-content.is-active {
    display: block;
    animation: kvPdvFadeIn .35s ease;
}
@keyframes kvPdvFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Description body */
.kv-pdv-desc-body {
    font-size: 15px;
    color: #444;
    line-height: 1.85;
    max-width: 800px;
}
.kv-pdv-desc-body p { margin-bottom: 14px; }
.kv-pdv-desc-body img { max-width: 100%; border-radius: 12px; margin: 16px 0; }
.kv-pdv-desc-body ul, .kv-pdv-desc-body ol { padding-left: 20px; margin-bottom: 14px; }
.kv-pdv-desc-body li { margin-bottom: 6px; }

/* Specs table */
.kv-pdv-specs-table {
    max-width: 700px;
}
.kv-pdv-spec-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f2;
}
.kv-pdv-spec-row:last-child { border-bottom: none; }
.kv-pdv-spec-key {
    font-weight: 700;
    color: var(--kv-dark);
    min-width: 200px;
    flex-shrink: 0;
}
.kv-pdv-spec-val {
    color: var(--kv-gray);
}

/* --- Related products --- */
.kv-pdv-related {
    padding: 80px 48px;
    background: var(--kv-light);
}
.kv-pdv-related-inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}
.kv-pdv-related-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--kv-dark);
    margin: 8px 0 40px;
}
.kv-pdv-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: left;
}

/* ═══════ PRODUCTS RESPONSIVE ═══════ */
@media (max-width: 1200px) {
    .kv-prod-grid { grid-template-columns: repeat(2, 1fr); }
    .kv-pdv-inner { gap: 40px; }
    .kv-pdv-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
    .kv-prod-section { padding: 40px 24px 60px; }
    .kv-prod-layout { grid-template-columns: 1fr; }
    .kv-prod-sidebar-block { position: static; }
    .kv-pdv { padding: 40px 24px 60px; }
    .kv-pdv-inner { grid-template-columns: 1fr; gap: 32px; }
    .kv-pdv-gallery { position: static; max-width: 560px; margin: 0 auto; }
    .kv-pdv-detail { padding: 0 24px 60px; }
    .kv-pdv-related { padding: 60px 24px; }
    .kv-pdv-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .kv-prod-section { padding: 30px 16px 50px; }
    .kv-prod-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .kv-pdv { padding: 30px 16px 50px; }
    .kv-pdv-detail { padding: 0 16px 50px; }
    .kv-pdv-related { padding: 50px 16px; }
    .kv-pdv-related-grid { grid-template-columns: 1fr; gap: 20px; }
    .kv-pdv-tab { padding: 10px 18px; font-size: 14px; }
}
@media (max-width: 576px) {
    .kv-prod-section { padding: 24px 12px 40px; }
    .kv-prod-grid { grid-template-columns: 1fr; }
    .kv-prod-card-img { margin: 10px 10px 0; }
    .kv-pdv { padding: 24px 12px 40px; }
    .kv-pdv-actions { flex-direction: column; }
    .kv-pdv-btn { width: 100%; justify-content: center; }
    .kv-pdv-detail { padding: 0 12px 40px; }
    .kv-pdv-related { padding: 40px 12px; }
    .kv-pdv-spec-key { min-width: 120px; }
    .kv-pdv-thumb { width: 48px; height: 64px; }
}

/* ═══════════════════════════════════════════════════
   COOKIE CONSENT MODAL
   ═══════════════════════════════════════════════════ */
.kp-consent-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s;
}
.kp-consent-overlay-visible {
    opacity: 1;
    pointer-events: auto;
}
.kp-consent {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    z-index: 9999;
    width: 94%;
    max-width: 520px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,.18), 0 0 0 1px rgba(0,0,0,.04);
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s, transform .4s cubic-bezier(.4,0,.2,1);
    font-family: var(--kv-font);
    overflow: hidden;
}
.kp-consent-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.kp-consent-hiding {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
}
.kp-consent-inner {
    padding: 28px 28px 24px;
}
.kp-consent-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.kp-consent-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.kp-consent-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(28,169,93,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.kp-consent-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--kv-dark);
    margin: 0;
}
.kp-consent-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f5f5f8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s;
    color: var(--kv-gray);
}
.kp-consent-close:hover {
    background: #eee;
    color: var(--kv-dark);
}
.kp-consent-body p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--kv-gray);
    margin: 0 0 20px;
}
.kp-consent-body a {
    color: var(--kv-teal);
    text-decoration: underline;
    font-weight: 600;
}
.kp-consent-body a:hover { color: var(--kv-pink); }
.kp-consent-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 4px;
}
.kp-consent-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 14px;
    background: #f8f8fa;
    transition: background .2s;
}
.kp-consent-option:hover { background: #f0f0f4; }
.kp-consent-option-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--kv-dark);
    display: block;
}
.kp-consent-option-desc {
    font-size: 11px;
    color: var(--kv-gray);
    display: block;
    margin-top: 2px;
}
.kp-consent-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}
.kp-consent-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
.kp-consent-slider {
    position: absolute;
    inset: 0;
    background: #ddd;
    border-radius: 24px;
    cursor: pointer;
    transition: background .25s;
}
.kp-consent-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    top: 3px;
    left: 3px;
    transition: transform .25s;
    box-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.kp-consent-toggle input:checked + .kp-consent-slider {
    background: var(--kv-teal);
}
.kp-consent-toggle input:checked + .kp-consent-slider::before {
    transform: translateX(20px);
}
.kp-consent-toggle.disabled .kp-consent-slider {
    background: var(--kv-teal);
    opacity: .6;
    cursor: not-allowed;
}
.kp-consent-toggle.disabled input:checked + .kp-consent-slider::before {
    transform: translateX(20px);
}
.kp-consent-actions {
    display: flex;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f2;
    margin-top: 20px;
}
.kp-consent-btn {
    flex: 1;
    padding: 13px 20px;
    border-radius: 14px;
    font-family: var(--kv-font);
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all .25s;
    text-align: center;
}
.kp-consent-btn-outline {
    background: #f5f5f8;
    color: var(--kv-dark);
}
.kp-consent-btn-outline:hover {
    background: #eaeaee;
}
.kp-consent-btn-primary {
    background: linear-gradient(135deg, var(--kv-pink) 0%, #e64980 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(214,51,108,.25);
}
.kp-consent-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(214,51,108,.35);
}
@media (max-width: 576px) {
    .kp-consent { bottom: 12px; width: 96%; border-radius: 20px; }
    .kp-consent-inner { padding: 22px 20px 20px; }
    .kp-consent-title { font-size: 14px; }
    .kp-consent-option { padding: 10px 12px; }
    .kp-consent-btn { padding: 12px 16px; font-size: 13px; }
}
