﻿/* =================================
    Author  : Vastraa Kids Theme
    Version : 1.0
================================== */
/* =================================
    CSS TABLE OF CONTENTS
================================== */
/*
01. Root Variables
02. Base Reset & Typography
03. Header & Navigation
04. Hero & Featured Sections
05. Product Cards & Shop
06. Testimonials & Blog
07. Account Pages (Dashboard, Wishlist, Cart)
08. Policy / Utility Pages
09. Footer
10. Effects & Animations
11. Plugin Overrides
*/

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:wght@400;600;700;800&display=swap');

:root {
    --kf-primary: #FF8FAB;
    --kf-primary-soft: rgba(255, 143, 171, 0.1);
    --kf-secondary: #9EE5FF;
    --kf-secondary-soft: rgba(158, 229, 255, 0.15);
    --kf-accent: #FFD166;
    --kf-accent-soft: rgba(255, 209, 102, 0.2);
    --kf-success: #06D6A0;
    --kf-purple: #D4A5FF;
    --kf-orange: #FFB347;
    --kf-dark: #2B2D42;
    --kf-text: #6C757D;
    --kf-bg: #FAFAFA;
    --kf-white: #FFFFFF;
    --kf-border: #F0F0F0;
    --kf-bg-pink: #FFF0F3;
    --kf-bg-blue: #F0F8FF;
    --kf-bg-gradient: linear-gradient(135deg, #FFF0F3 0%, #F0F8FF 50%, #FFFDF0 100%);
    --kf-font-head: 'Fredoka', sans-serif;
    --kf-font-body: 'Nunito', sans-serif;
    --kf-font-script: 'Satisfy', cursive;
    --kf-radius-sm: 12px;
    --kf-radius-md: 24px;
    --kf-radius-lg: 32px;
    --kf-shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.03);
    --kf-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
    --kf-shadow-hover: 0 15px 40px rgba(255, 143, 171, 0.15);
    --kf-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--kf-font-body);
    color: var(--kf-text);
    background-color: var(--kf-bg);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 143, 171, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(158, 229, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--kf-font-head);
    color: var(--kf-dark);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: inherit;
}

/* Utilities */
.bg-pastel-pink {
    background-color: #FFF0F3;
}

.bg-pastel-blue {
    background-color: #F0F8FF;
}

.bg-pastel-yellow {
    background-color: #FFFDF0;
}

.bg-pastel-green {
    background-color: #F0FFF4;
}

.bg-pastel-purple {
    background-color: #F4F0FF;
}

.text-primary {
    color: var(--kf-primary) !important;
}

.bg-primary-soft {
    background-color: var(--kf-primary-soft);
}

.text-danger {
    color: #EF476F !important;
}

.bg-danger-soft {
    background-color: rgba(239, 71, 111, 0.1);
}

.text-warning {
    color: var(--kf-accent) !important;
}

.bg-warning-soft {
    background-color: var(--kf-accent-soft);
}

/* Premium Gradients */
.gradient-pink {
    background: linear-gradient(135deg, #FF8FAB 0%, #FFB3D9 100%);
}

.gradient-blue {
    background: linear-gradient(135deg, #9EE5FF 0%, #5DADE2 100%);
}

.gradient-multi {
    background: linear-gradient(135deg, #FF8FAB 0%, #FFD166 50%, #06D6A0 100%);
}

hr {
    border-bottom: 2px dashed var(--kf-secondary);
    color: transparent;
    opacity: 0.60;
}

/* Animated Floating Elements */
@keyframes float-up {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes float-down {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(20px) rotate(-2deg);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 143, 171, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 143, 171, 0);
    }
}

@keyframes shimmer {

    0%,
    100% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes rotate-slow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes particle-float {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-100vh) rotate(360deg);
    }
}

.text-primary {
    color: var(--kf-primary) !important;
}

.bg-primary-soft {
    background-color: var(--kf-primary-soft);
}

.text-danger {
    color: #EF476F !important;
}

.bg-danger-soft {
    background-color: rgba(239, 71, 111, 0.1);
}

.text-warning {
    color: var(--kf-accent) !important;
}

.bg-warning-soft {
    background-color: var(--kf-accent-soft);
}

/* ===================
   PAGE LOADER
===================== */
.vk2-kids-loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFAF2;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s ease;
    visibility: visible;
    opacity: 1;
}

.vk2-kids-loader-wrapper.vk2-loaded {
    opacity: 0;
    visibility: hidden;
}

.vk2-loader-animation-box {
    width: 100px;
    height: 100px;
}

.vk2-loader-ring {
    width: 100%;
    height: 100%;
    border: 5px solid var(--kf-bg-blue);
    border-top-color: var(--kf-primary);
    border-bottom-color: var(--kf-secondary);
    border-radius: 50%;
    animation: vk2-ring-spin 1.2s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
}

.vk2-loader-heart {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    color: var(--kf-primary);
    animation: vk2-heart-bounce 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite alternate;
}

.vk2-loader-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--kf-dark);
}

.vk2-loader-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@keyframes vk2-ring-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes vk2-heart-bounce {
    from {
        transform: translate(-50%, -42%) scale(0.9);
    }

    to {
        transform: translate(-50%, -58%) scale(1.1);
    }
}

/* ========================
    Header
=========================== */
.vk2-header {
    background: var(--kf-white);
    border-bottom: 2px dashed var(--kf-secondary);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1100;
    overflow: visible;
    transition: var(--kf-transition-smooth, all 0.4s cubic-bezier(0.4, 0, 0.2, 1));
}

.vk2-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.vk2-action-suite {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.vk2-header.scrolled {
    padding: 8px 0;
    box-shadow: 0 12px 30px rgba(43, 45, 66, 0.06);
}

.vk2-logo-img {
    height: 54px;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vk2-brand-logo:hover .vk2-logo-img {
    transform: scale(1.08) rotate(-2deg);
}

.vk2-nav-menu {
    gap: 10px;
}

.vk2-nav-link {
    font-family: var(--kf-font-head);
    font-size: 16px;
    font-weight: 600;
    color: var(--kf-dark);
    padding: 10px 18px !important;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.vk2-nav-link:hover,
.vk2-nav-link.active {
    color: var(--kf-primary) !important;
    background: var(--kf-bg-pink);
}

.vk2-drop-arrow {
    font-size: 11px;
    transition: transform 0.3s ease;
    color: var(--kf-text);
}

/* Dropdown */
.vk2-dropdown {
    position: relative;
    cursor: pointer;
}

.vk2-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--kf-white);
    border: 2px solid var(--kf-border);
    border-radius: 16px;
    min-width: 210px;
    padding: 10px;
    box-shadow: 0 15px 35px rgba(43, 45, 66, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
}

.vk2-dropdown:hover .vk2-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vk2-dropdown:hover .vk2-drop-arrow {
    transform: rotate(180deg);
    color: var(--kf-primary);
}

.vk2-dropdown-link {
    font-family: var(--kf-font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--kf-text);
    padding: 10px 14px;
    display: block;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.vk2-dropdown-link:hover {
    background: var(--kf-bg-blue);
    color: var(--kf-secondary) !important;
    padding-left: 18px;
}

/* Playful Badges */
.vk2-badge-container {
    position: relative;
}

.vk2-menu-badge {
    position: absolute;
    top: -4px;
    right: -2px;
    background: var(--kf-accent);
    color: var(--kf-dark);
    font-size: 9px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255, 209, 102, 0.4);
}

/* Action Icon */
.vk2-action-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--kf-bg);
    color: var(--kf-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
}

.vk2-action-icon:hover {
    background: var(--kf-white);
    color: var(--kf-primary);
    border-color: var(--kf-primary-soft);
    transform: translateY(-3px) scale(1.05);
}

.vk2-basket-highlight {
    background: var(--kf-primary);
    color: var(--kf-white);
    box-shadow: 0 8px 20px rgba(255, 143, 171, 0.35);
}

.vk2-basket-highlight:hover {
    background: var(--kf-dark);
    color: var(--kf-white);
}

.vk2-indicator-bubble {
    position: absolute;
    top: -3px;
    right: -3px;
    background: var(--kf-success);
    color: var(--kf-white);
    font-size: 10px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--kf-white);
}

/* Inline Desktop Search */
.vk2-search-input {
    background: var(--kf-bg);
    border: 2px solid transparent;
    padding: 10px 45px 10px 20px;
    font-size: 14px;
    width: 220px;
    font-family: var(--kf-font-body);
    font-weight: 600;
    transition: all 0.3s ease;
}

.vk2-search-input:focus {
    width: 260px;
    background: var(--kf-white);
    border-color: var(--kf-secondary);
    outline: none;
    box-shadow: 0 8px 20px rgba(158, 229, 255, 0.25);
}

.vk2-search-submit {
    color: var(--kf-text);
    transition: color 0.2s;
}

.vk2-search-submit:hover {
    color: var(--kf-secondary);
}

/* Account Dropdown */
.vk2-account-dropdown {
    position: absolute;
    top: 130%;
    right: 0;
    background: var(--kf-white);
    border: 2px solid var(--kf-border);
    border-radius: 14px;
    min-width: 200px;
    padding: 8px;
    box-shadow: 0 15px 35px rgba(43, 45, 66, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
}

.vk2-account-menu.active .vk2-account-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vk2-account-dropdown a:hover {
    background: var(--kf-bg);
}

/* Collapsible Mobile Panel */
.vk2-mobile-search-panel {
    display: none;
}

.vk2-mobile-search-panel.show {
    display: block;
    animation: slideDownIn 0.3s ease;
    margin-top: 20px;
}

@keyframes slideDownIn {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ========================
    Buttons
=========================== */
.vk2-btn {
    font-family: var(--kf-font-head);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 50px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Icon Animation Effect */
.vk2-btn i {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.vk2-btn:hover i {
    transform: translateX(4px);
}

.vk2-btn-sm {
    padding: 10px 22px;
    font-size: 13px;
}

.vk2-btn-md {
    padding: 15px 34px;
    font-size: 15px;
}

.vk2-btn-lg {
    padding: 18px 44px;
    font-size: 17px;
}

.vk2-btn-primary {
    background: var(--kf-primary);
    color: var(--kf-white) !important;
    box-shadow: 0 8px 24px rgba(255, 143, 171, 0.3);
}

.vk2-btn-primary:hover {
    background: var(--kf-dark);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 32px rgba(43, 45, 66, 0.15) !important;
}

.vk2-btn-secondary {
    background: var(--kf-white);
    color: var(--kf-dark) !important;
    border-color: var(--kf-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.vk2-btn-secondary:hover {
    background: var(--kf-bg-blue);
    color: var(--kf-secondary) !important;
    border-color: var(--kf-secondary);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 32px rgba(158, 229, 255, 0.2) !important;
}

.vk2-btn-outline {
    background: transparent;
    color: var(--kf-dark) !important;
    border-color: var(--kf-dark);
}

.vk2-btn-outline:hover {
    background: var(--kf-dark);
    color: var(--kf-white) !important;
    transform: translateY(-3px);
}

/* ========================
    Hero Section
=========================== */
.vk2-hero-section {
    background: #FFFAF2;
    padding: 100px 0;
    min-height: calc(100vh - 86px);
    display: flex;
    align-items: center;
}

.vk2-z-index-2 {
    z-index: 2;
}

.vk2-shape-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.5;
}

.vk2-blob-1 {
    width: 400px;
    height: 400px;
    background: var(--kf-bg-pink);
    top: -10%;
    right: -5%;
}

.vk2-blob-2 {
    width: 350px;
    height: 350px;
    background: var(--kf-bg-blue);
    bottom: -10%;
    left: -5%;
}

.vk2-hero-badge {
    background: var(--kf-white);
    border: 2px solid var(--kf-border);
    padding: 8px 18px;
}

.vk2-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--kf-primary);
    border-radius: 50%;
    display: inline-block;
    animation: vk2-pulse-dot 1.5s infinite ease-in-out;
}

.vk2-badge-text {
    font-family: var(--kf-font-body);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--kf-dark);
}

.vk2-hero-title {
    font-family: var(--kf-font-head);
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--kf-dark);
}

.vk2-text-gradient {
    background: linear-gradient(135deg, var(--kf-primary) 0%, var(--kf-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.vk2-hero-desc {
    font-family: var(--kf-font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--kf-text);
    max-width: 520px;
}

.vk2-hero-media-wrapper {
    max-width: 480px;
    width: 100%;
}

.vk2-hero-main-frame {
    aspect-ratio: 4/5;
    border-radius: 30px 80px 40px 100px;
    border: 8px solid var(--kf-white) !important;
    transform: rotate(1deg);
    transition: transform 0.5s ease;
}

.vk2-hero-media-wrapper:hover .vk2-hero-main-frame {
    transform: rotate(0deg) scale(1.02);
}

.vk2-floating-tag {
    background: var(--kf-white);
    padding: 12px 20px;
    z-index: 5;
    border: 2px solid var(--kf-border);
}

.vk2-tag-top {
    top: 10%;
    left: -15%;
    animation: vk2-float-y 4s infinite ease-in-out;
}

.vk2-tag-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.vk2-bg-pink-soft {
    background: rgba(255, 143, 171, 0.15);
}

.vk2-tag-info strong {
    font-family: var(--kf-font-head);
    font-size: 14px;
    color: var(--kf-dark);
}

.vk2-tag-info small {
    font-size: 11px;
}

.vk2-floating-badge {
    width: 100px;
    height: 100px;
    background: var(--kf-accent);
    border: 4px solid var(--kf-white);
    z-index: 5;
}

.vk2-badge-bottom {
    bottom: 5%;
    right: -10%;
    animation: vk2-float-y 4.5s infinite ease-in-out reverse;
}

.vk2-badge-title,
.vk2-badge-off {
    font-family: var(--kf-font-body);
    font-size: 10px;
    font-weight: 800;
    color: var(--kf-dark);
    letter-spacing: 0.5px;
}

.vk2-badge-pct {
    font-family: var(--kf-font-head);
    font-size: 26px;
    font-weight: 700;
    color: var(--kf-dark);
    line-height: 1;
}

@keyframes vk2-float-y {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ========================
   Floating Kids Icons
=========================== */
.vk2-fi {
    position: absolute;
    font-size: 28px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.75;
    line-height: 1;
    user-select: none;
}

@keyframes vk2-fi-drift {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    33% {
        transform: translateY(-18px) rotate(8deg) scale(1.08);
    }

    66% {
        transform: translateY(-8px) rotate(-5deg) scale(0.95);
    }
}

@keyframes vk2-fi-spin-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-22px) rotate(180deg);
    }
}

@keyframes vk2-fi-wiggle {

    0%,
    100% {
        transform: rotate(-10deg) scale(1);
    }

    50% {
        transform: rotate(10deg) scale(1.12);
    }
}

@keyframes vk2-fi-bounce {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    40% {
        transform: translateY(-24px) scale(1.1);
    }

    60% {
        transform: translateY(-16px) scale(1.05);
    }
}

.vk2-fi-1 {
    top: 8%;
    left: 4%;
    font-size: 32px;
    animation: vk2-fi-drift 5.2s ease-in-out infinite;
}

.vk2-fi-2 {
    top: 15%;
    right: 6%;
    font-size: 36px;
    animation: vk2-fi-bounce 4.0s ease-in-out infinite;
}

.vk2-fi-3 {
    top: 55%;
    left: 2%;
    font-size: 26px;
    animation: vk2-fi-wiggle 3.8s ease-in-out infinite;
}

.vk2-fi-4 {
    top: 72%;
    right: 4%;
    font-size: 30px;
    animation: vk2-fi-drift 6.0s ease-in-out infinite 0.5s;
}

.vk2-fi-5 {
    top: 5%;
    left: 42%;
    font-size: 24px;
    animation: vk2-fi-spin-float 7.0s ease-in-out infinite 1.0s;
}

.vk2-fi-6 {
    top: 80%;
    left: 12%;
    font-size: 22px;
    animation: vk2-fi-bounce 4.5s ease-in-out infinite 0.8s;
}

.vk2-fi-7 {
    top: 40%;
    right: 2%;
    font-size: 28px;
    animation: vk2-fi-drift 5.8s ease-in-out infinite 1.5s;
}

.vk2-fi-8 {
    top: 84%;
    right: 50%;
    font-size: 26px;
    animation: vk2-fi-wiggle 4.2s ease-in-out infinite 0.3s;
}

@keyframes vk2-pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }
}

/* ========================
    Categories Section
=========================== */
.vk2-category-section {
    padding: 100px 0;
    background: linear-gradient(160deg, #FFFAF2 0%, #F0F8FF 50%, #FFF0F3 100%);
    position: relative;
}

/* Background decorative blurred dots */
.vk2-cat-bg-dot {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
}

.vk2-cat-dot-1 {
    width: 320px;
    height: 320px;
    background: rgba(255, 143, 171, 0.12);
    top: -60px;
    left: -80px;
}

.vk2-cat-dot-2 {
    width: 280px;
    height: 280px;
    background: rgba(158, 229, 255, 0.14);
    bottom: -40px;
    right: -60px;
}

.vk2-cat-dot-3 {
    width: 200px;
    height: 200px;
    background: rgba(255, 209, 102, 0.12);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
}

.vk2-section-subtitle {
    font-family: var(--kf-font-body);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--kf-primary);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.vk2-section-title {
    font-family: var(--kf-font-head);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--kf-dark);
}

.vk2-title-highlight {
    color: var(--kf-primary);
    position: relative;
    display: inline-block;
}

.vk2-section-desc {
    font-family: var(--kf-font-body);
    font-size: 15px;
    color: var(--kf-text);
    max-width: 500px;
    margin-top: 10px;
}

/* ========================
    Category Card
=========================== */
.vk2-cat2-card {
    border-radius: 28px;
    overflow: hidden;
    background: var(--kf-white);
    box-shadow: 0 8px 30px rgba(43, 45, 66, 0.06);
    border: 2px solid var(--kf-border);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.3s ease;
    display: block;
}

.vk2-cat2-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 60px rgba(43, 45, 66, 0.13);
}

/* Colored top accent bar */
.vk2-cat2-accent {
    height: 6px;
    width: 100%;
    border-radius: 28px 28px 0 0;
    transition: height 0.3s ease;
}

.vk2-cat2-card:hover .vk2-cat2-accent {
    height: 8px;
}

.vk2-cat2-blue .vk2-cat2-accent {
    background: linear-gradient(90deg, #9EE5FF, #5DADE2);
}

.vk2-cat2-pink .vk2-cat2-accent {
    background: linear-gradient(90deg, #FF8FAB, #FFB3D9);
}

.vk2-cat2-yellow .vk2-cat2-accent {
    background: linear-gradient(90deg, #FFD166, #FFB347);
}

.vk2-cat2-purple .vk2-cat2-accent {
    background: linear-gradient(90deg, #D4A5FF, #b07fd4);
}

/* Border color on hover per theme */
.vk2-cat2-blue:hover {
    border-color: #9EE5FF;
}

.vk2-cat2-pink:hover {
    border-color: #FF8FAB;
}

.vk2-cat2-yellow:hover {
    border-color: #FFD166;
}

.vk2-cat2-purple:hover {
    border-color: #D4A5FF;
}

/* Image wrapper — square crop */
.vk2-cat2-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f8f8f8;
    position: relative;
}

.vk2-cat2-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vk2-cat2-card:hover .vk2-cat2-img {
    transform: scale(1.1);
}

/* Info body */
.vk2-cat2-body {
    padding: 18px 20px 14px;
    position: relative;
}

.vk2-cat2-badge {
    display: inline-block;
    font-family: var(--kf-font-body);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.vk2-cat2-blue .vk2-cat2-badge {
    background: rgba(158, 229, 255, 0.25);
    color: #1a8ab5;
}

.vk2-cat2-pink .vk2-cat2-badge {
    background: rgba(255, 143, 171, 0.18);
    color: #c0506a;
}

.vk2-cat2-yellow .vk2-cat2-badge {
    background: rgba(255, 209, 102, 0.25);
    color: #b07a00;
}

.vk2-cat2-purple .vk2-cat2-badge {
    background: rgba(212, 165, 255, 0.25);
    color: #7a3fb0;
}

.vk2-cat2-name {
    font-family: var(--kf-font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--kf-dark);
    margin: 0 0 4px;
    transition: color 0.3s ease;
}

.vk2-cat2-blue:hover .vk2-cat2-name {
    color: #1a8ab5;
}

.vk2-cat2-pink:hover .vk2-cat2-name {
    color: #c0506a;
}

.vk2-cat2-yellow:hover .vk2-cat2-name {
    color: #b07a00;
}

.vk2-cat2-purple:hover .vk2-cat2-name {
    color: #7a3fb0;
}

.vk2-cat2-sub {
    font-family: var(--kf-font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--kf-text);
    display: block;
}

/* Hover reveal bottom panel */
.vk2-cat2-hover-panel {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.vk2-cat2-card:hover .vk2-cat2-hover-panel {
    max-height: 60px;
    padding: 0 20px 18px;
}

.vk2-cat2-shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--kf-font-head);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vk2-cat2-blue .vk2-cat2-shop-btn {
    background: linear-gradient(90deg, #9EE5FF, #5DADE2);
    color: #fff;
    box-shadow: 0 6px 18px rgba(93, 173, 226, 0.35);
}

.vk2-cat2-pink .vk2-cat2-shop-btn {
    background: linear-gradient(90deg, #FF8FAB, #FFB3D9);
    color: #fff;
    box-shadow: 0 6px 18px rgba(255, 143, 171, 0.35);
}

.vk2-cat2-yellow .vk2-cat2-shop-btn {
    background: linear-gradient(90deg, #FFD166, #FFB347);
    color: #2B2D42;
    box-shadow: 0 6px 18px rgba(255, 209, 102, 0.35);
}

.vk2-cat2-purple .vk2-cat2-shop-btn {
    background: linear-gradient(90deg, #D4A5FF, #b07fd4);
    color: #fff;
    box-shadow: 0 6px 18px rgba(212, 165, 255, 0.35);
}

.vk2-cat2-shop-btn:hover {
    transform: translateX(4px);
}

/* =====================
   Promo Banner Section
======================= */
.vk2-promo2-section {
    padding: 100px 0;
    background: linear-gradient(160deg, #F0F8FF 0%, #FFFAF2 50%, #FFF0F3 100%);
    position: relative;
}

/* Background blobs */
.vk2-promo2-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.vk2-promo2-blob-l {
    width: 380px;
    height: 380px;
    background: rgba(158, 229, 255, 0.18);
    top: -80px;
    left: -100px;
}

.vk2-promo2-blob-r {
    width: 340px;
    height: 340px;
    background: rgba(255, 143, 171, 0.15);
    bottom: -60px;
    right: -80px;
}

/* Card wrapper */
.vk2-promo2-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 20px 60px rgba(43, 45, 66, 0.12);
    transition: transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.45s ease;
    cursor: pointer;
}

.vk2-promo2-card:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow: 0 32px 80px rgba(43, 45, 66, 0.18);
}

.vk2-promo2-img-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.vk2-promo2-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vk2-promo2-card:hover .vk2-promo2-img {
    transform: scale(1.07);
}

.vk2-promo2-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.vk2-promo2-boys .vk2-promo2-overlay {
    background: linear-gradient(to top, rgba(29, 114, 184, 0.92) 0%, rgba(29, 114, 184, 0.55) 45%, rgba(29, 114, 184, 0.08) 100%);
}

.vk2-promo2-girls .vk2-promo2-overlay {
    background: linear-gradient(to top, rgba(181, 38, 84, 0.90) 0%, rgba(255, 143, 171, 0.55) 45%, rgba(255, 143, 171, 0.06) 100%);
}

/* Floating discount badge — top-right */
.vk2-promo2-disc-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 4;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    animation: vk2-float-y 3.5s ease-in-out infinite;
    line-height: 1;
    gap: 1px;
}

.vk2-promo2-boys .vk2-promo2-disc-badge {
    background: rgba(255, 209, 102, 0.92);
}

.vk2-promo2-girls .vk2-promo2-disc-badge {
    background: rgba(255, 209, 102, 0.92);
}

.vk2-promo2-disc-off {
    font-family: var(--kf-font-body);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--kf-dark);
}

.vk2-promo2-disc-pct {
    font-family: var(--kf-font-head);
    font-size: 28px;
    font-weight: 700;
    color: var(--kf-dark);
    line-height: 1;
}

/* Content block — sits above overlay */
.vk2-promo2-content {
    position: relative;
    z-index: 3;
    padding: 36px 32px;
    width: 100%;
    transform: translateY(8px);
    transition: transform 0.4s ease;
}

.vk2-promo2-card:hover .vk2-promo2-content {
    transform: translateY(0);
}

/* Tag pill */
.vk2-promo2-tag {
    display: inline-flex;
    align-items: center;
    font-family: var(--kf-font-body);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(4px);
}

/* Title */
.vk2-promo2-title {
    font-family: var(--kf-font-head);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 10px;
}

.vk2-promo2-title span {
    color: var(--kf-accent);
}

/* Description */
.vk2-promo2-desc {
    font-family: var(--kf-font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 18px;
}

/* Feature pills row */
.vk2-promo2-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.vk2-promo2-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--kf-font-body);
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.vk2-promo2-pill i {
    font-size: 10px;
    color: var(--kf-accent);
}

/* CTA button */
.vk2-promo2-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--kf-font-head);
    font-size: 15px;
    font-weight: 700;
    padding: 13px 30px;
    border-radius: 50px;
    color: var(--kf-dark) !important;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.vk2-promo2-btn:hover {
    background: var(--kf-accent);
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 32px rgba(255, 209, 102, 0.4);
}

.vk2-promo2-btn i {
    transition: transform 0.3s ease;
}

.vk2-promo2-btn:hover i {
    transform: translateX(5px);
}

/* ==========================
   Product Section
========================== */
.vk2-products-section {
    padding: 100px 0;
    background: linear-gradient(160deg, #FFFAF2 0%, #FFF0F3 50%, #F0F8FF 100%);
    position: relative;
}

.vk2-prod-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.vk2-prod-blob-tl {
    width: 360px;
    height: 360px;
    background: rgba(255, 209, 102, 0.12);
    top: -80px;
    left: -80px;
}

.vk2-prod-blob-br {
    width: 300px;
    height: 300px;
    background: rgba(212, 165, 255, 0.13);
    bottom: -60px;
    right: -60px;
}

/* Tab pills with icons */
.vk2-prod-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    border: none;
}

.vk2-prod-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--kf-font-head);
    font-size: 14px;
    font-weight: 600;
    color: var(--kf-text);
    background: var(--kf-white);
    border: 2px solid var(--kf-border);
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(43, 45, 66, 0.04);
}

.vk2-prod-tab i {
    font-size: 12px;
}

.vk2-prod-tab:hover,
.vk2-prod-tab.active {
    background: var(--kf-primary);
    color: #fff;
    border-color: var(--kf-primary);
    box-shadow: 0 8px 20px rgba(255, 143, 171, 0.3);
    transform: translateY(-2px);
}

/* Product Card */
.vk2-pc {
    background: var(--kf-white);
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid var(--kf-border);
    box-shadow: 0 8px 28px rgba(43, 45, 66, 0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.3s ease;
}

.vk2-pc:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 56px rgba(43, 45, 66, 0.11);
    border-color: var(--kf-primary-soft);
}

/* Image area with pastel bg */
.vk2-pc-media {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.vk2-pc-bg-blue {
    background: linear-gradient(135deg, #E8F7FF, #C8EEFF);
}

.vk2-pc-bg-pink {
    background: linear-gradient(135deg, #FFF0F5, #FFD6E5);
}

.vk2-pc-bg-yellow {
    background: linear-gradient(135deg, #FFFBEA, #FFF0B3);
}

.vk2-pc-bg-purple {
    background: linear-gradient(135deg, #F5EEFF, #E8D5FF);
}

.vk2-pc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vk2-pc:hover .vk2-pc-img {
    transform: scale(1.08);
}

/* Badge — top-left */
.vk2-pc-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    font-family: var(--kf-font-body);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 11px;
    border-radius: 20px;
}

.vk2-pc-badge-sale {
    background: var(--kf-primary);
    color: #fff;
}

.vk2-pc-badge-hot {
    background: var(--kf-accent);
    color: var(--kf-dark);
}

.vk2-pc-badge-new {
    background: var(--kf-success);
    color: #fff;
}

/* Wishlist — top-right */
.vk2-pc-wish {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1.5px solid var(--kf-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--kf-text);
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
}

.vk2-pc-wish:hover {
    background: var(--kf-primary);
    color: #fff;
    border-color: var(--kf-primary);
    transform: scale(1.1);
}

/* Hover action buttons — slide up from bottom of image */
.vk2-pc-actions {
    position: absolute;
    bottom: 56px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    z-index: 3;
    display: flex;
    gap: 8px;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vk2-pc:hover .vk2-pc-actions {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.vk2-pc-act-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--kf-border);
    color: var(--kf-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(43, 45, 66, 0.08);
}

.vk2-pc-act-btn:hover {
    background: var(--kf-dark);
    color: #fff;
    border-color: var(--kf-dark);
}

/* Add to Cart — slides up from bottom edge */
.vk2-pc-cart {
    position: absolute;
    bottom: -52px;
    left: 0;
    width: 100%;
    z-index: 3;
    background: var(--kf-primary);
    color: #fff;
    border: none;
    padding: 13px;
    font-family: var(--kf-font-head);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: bottom 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.25s ease;
}

.vk2-pc:hover .vk2-pc-cart {
    bottom: 0;
}

.vk2-pc-cart:hover {
    background: var(--kf-dark);
}

/* Info body */
.vk2-pc-body {
    padding: 18px 18px 16px;
}

.vk2-pc-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.vk2-pc-cat {
    font-family: var(--kf-font-body);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--kf-text);
}

.vk2-pc-rating {
    font-family: var(--kf-font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--kf-dark);
    display: flex;
    align-items: center;
    gap: 3px;
}

.vk2-pc-rating i {
    color: var(--kf-accent);
    font-size: 11px;
}

.vk2-pc-name {
    font-family: var(--kf-font-head);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.3;
}

.vk2-pc-name a {
    color: var(--kf-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.vk2-pc-name a:hover {
    color: var(--kf-primary);
}

/* Size pills */
.vk2-pc-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.vk2-pc-size {
    font-family: var(--kf-font-body);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    border: 1.5px solid var(--kf-border);
    color: var(--kf-text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.vk2-pc-size:hover,
.vk2-pc-size.active {
    background: var(--kf-primary);
    color: #fff;
    border-color: var(--kf-primary);
}

/* Price row + save badge */
.vk2-pc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vk2-pc-prices {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.vk2-pc-price {
    font-family: var(--kf-font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--kf-primary);
}

.vk2-pc-old {
    font-family: var(--kf-font-body);
    font-size: 13px;
    text-decoration: line-through;
    color: var(--kf-text);
}

.vk2-pc-save {
    font-family: var(--kf-font-body);
    font-size: 11px;
    font-weight: 800;
    background: rgba(6, 214, 160, 0.12);
    color: #06a87a;
    padding: 3px 9px;
    border-radius: 20px;
}

/* View All CTA */
.vk2-prod-viewall {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--kf-font-head);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 50px;
    background: var(--kf-dark);
    color: #fff !important;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(43, 45, 66, 0.18);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vk2-prod-viewall:hover {
    background: var(--kf-primary);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 40px rgba(255, 143, 171, 0.3);
}

.vk2-prod-viewall i {
    transition: transform 0.3s ease;
}

.vk2-prod-viewall:hover i {
    transform: translateX(5px);
}

/* ==========================
   Quick View Modal
========================== */
.vk2-qv-modal {
    background: var(--kf-white);
    box-shadow: 0 30px 80px rgba(43, 45, 66, 0.2);
}

.vk2-qv-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--kf-white);
    border: 2px solid var(--kf-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--kf-dark);
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(43, 45, 66, 0.1);
}

.vk2-qv-close:hover {
    background: var(--kf-primary);
    color: #fff;
    border-color: var(--kf-primary);
    transform: rotate(90deg);
}

/* Left image panel */
.vk2-qv-img-panel {
    background: linear-gradient(135deg, #FFF0F5, #F0F8FF);
    height: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px 20px;
    gap: 16px;
}

.vk2-qv-main-img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

.vk2-qv-main-img:hover {
    transform: scale(1.04);
}

.vk2-qv-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.vk2-qv-thumb {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--kf-border);
    cursor: pointer;
    transition: border-color 0.2s ease;
    background: #fff;
}

.vk2-qv-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vk2-qv-thumb:hover,
.vk2-qv-thumb.active {
    border-color: var(--kf-primary);
}

/* Right info panel */
.vk2-qv-info {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
}

.vk2-qv-cat {
    font-family: var(--kf-font-body);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--kf-primary);
    display: block;
    margin-bottom: 8px;
}

.vk2-qv-title {
    font-family: var(--kf-font-head);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--kf-dark);
    margin-bottom: 12px;
    line-height: 1.25;
}

.vk2-qv-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.vk2-qv-stars {
    color: var(--kf-accent);
    font-size: 15px;
    letter-spacing: 2px;
}

.vk2-qv-reviews {
    font-family: var(--kf-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--kf-text);
}

.vk2-qv-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.vk2-qv-price {
    font-family: var(--kf-font-head);
    font-size: 28px;
    font-weight: 700;
    color: var(--kf-primary);
}

.vk2-qv-old {
    font-family: var(--kf-font-body);
    font-size: 16px;
    text-decoration: line-through;
    color: var(--kf-text);
}

.vk2-qv-save {
    font-family: var(--kf-font-body);
    font-size: 12px;
    font-weight: 800;
    background: rgba(6, 214, 160, 0.12);
    color: #06a87a;
    padding: 4px 10px;
    border-radius: 20px;
}

.vk2-qv-desc {
    font-family: var(--kf-font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--kf-text);
    margin-bottom: 16px;
}

.vk2-qv-divider {
    border-color: var(--kf-border);
    margin: 4px 0 16px;
}

.vk2-qv-field {
    margin-bottom: 18px;
}

.vk2-qv-label {
    font-family: var(--kf-font-body);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--kf-dark);
    display: block;
    margin-bottom: 8px;
}

.vk2-qv-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vk2-qv-size-btn {
    font-family: var(--kf-font-body);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    border: 2px solid var(--kf-border);
    background: var(--kf-white);
    color: var(--kf-text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.vk2-qv-size-btn:hover,
.vk2-qv-size-btn.active {
    background: var(--kf-primary);
    color: #fff;
    border-color: var(--kf-primary);
}

/* Actions row */
.vk2-qv-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.vk2-qv-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid var(--kf-border);
    border-radius: 50px;
    overflow: hidden;
    width: fit-content;
}

.vk2-qv-qty-btn {
    width: 38px;
    height: 38px;
    background: var(--kf-bg);
    border: none;
    font-size: 12px;
    color: var(--kf-dark);
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vk2-qv-qty-btn:hover {
    background: var(--kf-primary);
    color: #fff;
}

.vk2-qv-qty-val {
    min-width: 36px;
    text-align: center;
    font-family: var(--kf-font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--kf-dark);
}

.vk2-qv-cart-btn {
    flex: 1;
    min-width: 140px;
    background: var(--kf-primary);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--kf-font-head);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 143, 171, 0.3);
}

.vk2-qv-cart-btn:hover {
    background: var(--kf-dark);
    box-shadow: 0 10px 24px rgba(43, 45, 66, 0.2);
    transform: translateY(-2px);
}

.vk2-qv-wish-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--kf-border);
    background: var(--kf-white);
    color: var(--kf-text);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.vk2-qv-wish-btn:hover {
    background: var(--kf-primary);
    color: #fff;
    border-color: var(--kf-primary);
}

.vk2-qv-meta {
    font-family: var(--kf-font-body);
    font-size: 13px;
    color: var(--kf-text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.vk2-qv-meta span {
    font-weight: 700;
    color: var(--kf-dark);
}

.vk2-qv-detail-link {
    font-family: var(--kf-font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--kf-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 2px solid var(--kf-primary);
    padding-bottom: 2px;
    transition: color 0.2s ease;
    width: fit-content;
}

.vk2-qv-detail-link:hover {
    color: var(--kf-primary);
}

/* ==========================
   INSTAGRAM SECTION
========================== */
.vk2-ig-section {
    padding: 100px 0;
    background: linear-gradient(160deg, #FFF0F3 0%, #FFFAF2 50%, #F0F8FF 100%);
    position: relative;
}

.vk2-ig-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.vk2-ig-blob-tl {
    width: 340px;
    height: 340px;
    background: rgba(255, 143, 171, 0.12);
    top: -80px;
    left: -80px;
}

.vk2-ig-blob-br {
    width: 300px;
    height: 300px;
    background: rgba(158, 229, 255, 0.14);
    bottom: -60px;
    right: -60px;
}

/* Follow button */
.vk2-ig-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--kf-font-head);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff !important;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(220, 39, 67, 0.3);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vk2-ig-follow-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 32px rgba(220, 39, 67, 0.4);
}

.vk2-ig-follow-btn i {
    font-size: 16px;
}

/* Mosaic grid */
.vk2-ig-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 12px;
    margin-bottom: 20px;
}

/* Middle column stacks 2 tiles */
.vk2-ig-col {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
}

/* Tall tiles span 2 rows */
.vk2-ig-tile-tall {
    grid-row: span 2;
}

/* Base tile */
.vk2-ig-tile {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    display: block;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(43, 45, 66, 0.08);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.vk2-ig-tile:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(43, 45, 66, 0.16);
}

.vk2-ig-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vk2-ig-tile:hover img {
    transform: scale(1.1);
}

/* Gradient overlay */
.vk2-ig-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220, 39, 67, 0.75), rgba(188, 24, 136, 0.75));
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.vk2-ig-tile:hover .vk2-ig-overlay {
    opacity: 1;
}

.vk2-ig-overlay-inner {
    display: flex;
    gap: 20px;
    align-items: center;
}

.vk2-ig-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--kf-font-head);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.vk2-ig-stat i {
    font-size: 18px;
}

/* Small Instagram icon badge — top-right corner */
.vk2-ig-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #dc2743;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.vk2-ig-tile:hover .vk2-ig-icon {
    opacity: 1;
    transform: scale(1);
}

/* Bottom follow banner */
.vk2-ig-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    background: var(--kf-white);
    border: 2px solid var(--kf-border);
    border-radius: 20px;
    padding: 20px 28px;
    box-shadow: 0 8px 28px rgba(43, 45, 66, 0.05);
    margin-top: 20px;
}

.vk2-ig-banner-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.vk2-ig-banner-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 6px 18px rgba(220, 39, 67, 0.3);
}

.vk2-ig-banner-handle {
    font-family: var(--kf-font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--kf-dark);
    display: block;
    margin-bottom: 2px;
}

.vk2-ig-banner-sub {
    font-family: var(--kf-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--kf-text);
}

/* ==========================
   FOOTER SECTION
========================== */
.vk2-footer2 {
    position: relative;
    background: #1a1c2e;
}

/* Newsletter strip */
.vk2-footer2-newsletter {
    background: linear-gradient(135deg, var(--kf-primary) 0%, #c0506a 50%, #9b3a8a 100%);
    padding: 36px 0;
}

.vk2-footer2-nl-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.vk2-footer2-nl-text {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 240px;
}

.vk2-footer2-nl-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}

.vk2-footer2-nl-title {
    font-family: var(--kf-font-head);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 2px;
}

.vk2-footer2-nl-sub {
    font-family: var(--kf-font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

.vk2-footer2-nl-form {
    display: flex;
    gap: 0;
    flex: 1;
    max-width: 440px;
    min-width: 260px;
}

.vk2-footer2-nl-form input {
    flex: 1;
    border: none;
    border-radius: 50px 0 0 50px;
    padding: 13px 22px;
    font-family: var(--kf-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--kf-dark);
    outline: none;
    background: #fff;
}

.vk2-footer2-nl-form button {
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 13px 24px;
    background: var(--kf-dark);
    color: #fff;
    font-family: var(--kf-font-head);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.vk2-footer2-nl-form button:hover {
    background: var(--kf-accent);
    color: var(--kf-dark);
}

/* Main body */
.vk2-footer2-body {
    padding: 70px 0 50px;
}

/* Logo */
.vk2-footer2-logo {
    font-family: var(--kf-font-head);
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 16px;
    transition: opacity 0.3s;
}

.vk2-footer2-logo:hover {
    opacity: 0.85;
}

.vk2-footer2-logo span {
    color: var(--kf-primary);
}

/* About text */
.vk2-footer2-about {
    font-family: var(--kf-font-body);
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

/* Contact list */
.vk2-footer2-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--kf-font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    line-height: 1.5;
}

.vk2-footer2-contact i {
    color: var(--kf-primary);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Social links */
.vk2-footer2-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.vk2-footer2-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.vk2-footer2-socials a:hover {
    background: var(--kf-primary);
    border-color: var(--kf-primary);
    color: #fff;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 143, 171, 0.35);
}

/* Column title */
.vk2-footer2-title {
    font-family: var(--kf-font-head);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.vk2-footer2-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background: linear-gradient(90deg, var(--kf-primary), var(--kf-accent));
    border-radius: 2px;
}

/* Links */
.vk2-footer2-links li {
    margin-bottom: 10px;
}

.vk2-footer2-links a {
    font-family: var(--kf-font-body);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.vk2-footer2-links a i {
    font-size: 10px;
    color: var(--kf-primary);
    transition: transform 0.25s ease;
}

.vk2-footer2-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.vk2-footer2-links a:hover i {
    transform: translateX(3px);
}

/* App download buttons */
.vk2-footer2-app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 12px 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.vk2-footer2-app-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--kf-primary);
    transform: translateY(-2px);
}

.vk2-footer2-app-btn i {
    font-size: 24px;
    color: #fff;
}

.vk2-footer2-app-sub {
    font-family: var(--kf-font-body);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    line-height: 1;
    margin-bottom: 2px;
}

.vk2-footer2-app-store {
    font-family: var(--kf-font-head);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1;
}

/* Trust badges */
.vk2-footer2-trust {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vk2-footer2-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--kf-font-body);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
}

.vk2-footer2-trust-badge i {
    color: var(--kf-success);
    font-size: 12px;
}

/* Bottom bar */
.vk2-footer2-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.2);
}

.vk2-footer2-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.vk2-footer2-copy {
    font-family: var(--kf-font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.vk2-footer2-payments {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vk2-footer2-payments i {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.25s ease;
}

.vk2-footer2-payments i:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================
   Back to top button
========================== */
.vk2-footer2-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--kf-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 8px 24px rgba(255, 143, 171, 0.45);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
}

.vk2-footer2-top.vk2-top-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vk2-footer2-top:hover {
    background: var(--kf-accent);
    color: var(--kf-dark);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 14px 32px rgba(255, 209, 102, 0.45);
}

/* ==========================
   FEATURES SECTION
========================== */
.vk2-feat-section {
    padding: 100px 0;
    background: linear-gradient(160deg, #FFF0F3 0%, #FFFAF2 50%, #F0F8FF 100%);
    position: relative;
}

.vk2-feat-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.vk2-feat-blob-tl {
    width: 350px;
    height: 350px;
    background: rgba(255, 143, 171, 0.12);
    top: -80px;
    left: -80px;
}

.vk2-feat-blob-br {
    width: 300px;
    height: 300px;
    background: rgba(158, 229, 255, 0.14);
    bottom: -60px;
    right: -60px;
}

/* Card */
.vk2-feat-card {
    background: var(--kf-white);
    border-radius: 28px;
    padding: 36px 28px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--kf-border);
    box-shadow: 0 8px 30px rgba(43, 45, 66, 0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.3s ease;
}

.vk2-feat-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 60px rgba(43, 45, 66, 0.12);
}

.vk2-feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    border-radius: 28px 0 0 28px;
    transition: width 0.3s ease;
}

.vk2-feat-card:hover::before {
    width: 7px;
}

.vk2-feat-pink::before {
    background: linear-gradient(180deg, #FF8FAB, #FFB3D9);
}

.vk2-feat-green::before {
    background: linear-gradient(180deg, #06D6A0, #00b386);
}

.vk2-feat-yellow::before {
    background: linear-gradient(180deg, #FFD166, #FFB347);
}

.vk2-feat-blue::before {
    background: linear-gradient(180deg, #9EE5FF, #5DADE2);
}

.vk2-feat-pink:hover {
    border-color: rgba(255, 143, 171, 0.4);
}

.vk2-feat-green:hover {
    border-color: rgba(6, 214, 160, 0.4);
}

.vk2-feat-yellow:hover {
    border-color: rgba(255, 209, 102, 0.4);
}

.vk2-feat-blue:hover {
    border-color: rgba(158, 229, 255, 0.5);
}

/* Icon circle */
.vk2-feat-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vk2-feat-card:hover .vk2-feat-icon-wrap {
    transform: scale(1.12) rotate(-6deg);
}

.vk2-feat-pink .vk2-feat-icon-wrap {
    background: rgba(255, 143, 171, 0.15);
    color: #c0506a;
}

.vk2-feat-green .vk2-feat-icon-wrap {
    background: rgba(6, 214, 160, 0.12);
    color: #06a87a;
}

.vk2-feat-yellow .vk2-feat-icon-wrap {
    background: rgba(255, 209, 102, 0.18);
    color: #b07a00;
}

.vk2-feat-blue .vk2-feat-icon-wrap {
    background: rgba(158, 229, 255, 0.2);
    color: #1a8ab5;
}

/* Number watermark */
.vk2-feat-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--kf-font-head);
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    opacity: 0.06;
    color: var(--kf-dark);
    pointer-events: none;
    user-select: none;
}

.vk2-feat-title {
    font-family: var(--kf-font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--kf-dark);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.vk2-feat-pink:hover .vk2-feat-title {
    color: #c0506a;
}

.vk2-feat-green:hover .vk2-feat-title {
    color: #06a87a;
}

.vk2-feat-yellow:hover .vk2-feat-title {
    color: #b07a00;
}

.vk2-feat-blue:hover .vk2-feat-title {
    color: #1a8ab5;
}

.vk2-feat-desc {
    font-family: var(--kf-font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--kf-text);
    margin-bottom: 20px;
}

/* Tag pills */
.vk2-feat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vk2-feat-tag {
    font-family: var(--kf-font-body);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 20px;
}

.vk2-feat-pink .vk2-feat-tag {
    background: rgba(255, 143, 171, 0.12);
    color: #c0506a;
}

.vk2-feat-green .vk2-feat-tag {
    background: rgba(6, 214, 160, 0.1);
    color: #06a87a;
}

.vk2-feat-yellow .vk2-feat-tag {
    background: rgba(255, 209, 102, 0.18);
    color: #b07a00;
}

.vk2-feat-blue .vk2-feat-tag {
    background: rgba(158, 229, 255, 0.2);
    color: #1a8ab5;
}

/* Stats row */
.vk2-feat-stats {
    border-top: 2px dashed var(--kf-border);
    padding-top: 40px;
}

.vk2-feat-stat {
    text-align: center;
    padding: 24px 16px;
    background: var(--kf-white);
    border-radius: 20px;
    border: 2px solid var(--kf-border);
    box-shadow: 0 6px 20px rgba(43, 45, 66, 0.04);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vk2-feat-stat:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(255, 143, 171, 0.15);
    border-color: var(--kf-primary-soft);
}

.vk2-feat-stat-num {
    font-family: var(--kf-font-head);
    font-size: 32px;
    font-weight: 700;
    color: var(--kf-primary);
    line-height: 1;
}

.vk2-feat-stat-label {
    font-family: var(--kf-font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--kf-text);
}

/* ==========================
   TESTIMONIALS SECTION
========================== */
.vk2-testi-section {
    padding: 100px 0;
    background: linear-gradient(160deg, #FFFDF0 0%, #FFF0F3 50%, #F0F8FF 100%);
    position: relative;
}

.vk2-testi-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.vk2-testi-blob-tl {
    width: 320px;
    height: 320px;
    background: rgba(255, 209, 102, 0.14);
    top: -70px;
    left: -70px;
}

.vk2-testi-blob-br {
    width: 280px;
    height: 280px;
    background: rgba(255, 143, 171, 0.12);
    bottom: -50px;
    right: -50px;
}

/* Summary bar */
.vk2-testi-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: var(--kf-white);
    border: 2px solid var(--kf-border);
    border-radius: 20px;
    padding: 24px 32px;
    margin-bottom: 40px;
    box-shadow: 0 8px 28px rgba(43, 45, 66, 0.05);
}

.vk2-testi-sum-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 32px;
    flex: 1;
    min-width: 120px;
}

.vk2-testi-sum-num {
    font-family: var(--kf-font-head);
    font-size: 32px;
    font-weight: 700;
    color: var(--kf-dark);
    line-height: 1;
}

.vk2-testi-sum-stars {
    color: var(--kf-accent);
    font-size: 13px;
    letter-spacing: 2px;
}

.vk2-testi-sum-label {
    font-family: var(--kf-font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--kf-text);
    text-align: center;
}

.vk2-testi-sum-divider {
    width: 1px;
    height: 50px;
    background: var(--kf-border);
    flex-shrink: 0;
}

/* Card */
.vk2-testi-card {
    background: var(--kf-white);
    border-radius: 28px;
    padding: 32px 28px;
    border: 2px solid var(--kf-border);
    box-shadow: 0 8px 28px rgba(43, 45, 66, 0.05);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.3s ease;
}

.vk2-testi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 56px rgba(43, 45, 66, 0.1);
    border-color: var(--kf-primary-soft);
}

/* Featured card */
.vk2-testi-card-featured {
    background: linear-gradient(160deg, #FFF0F3 0%, #FFFAF2 100%);
    border-color: var(--kf-primary-soft);
    box-shadow: 0 12px 40px rgba(255, 143, 171, 0.15);
}

.vk2-testi-card-featured:hover {
    border-color: var(--kf-primary);
    box-shadow: 0 28px 64px rgba(255, 143, 171, 0.22);
}

.vk2-testi-featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--kf-primary), #FFB3D9);
    color: #fff;
    font-family: var(--kf-font-body);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 18px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(255, 143, 171, 0.35);
}

/* Quote icon */
.vk2-testi-quote {
    font-size: 28px;
    color: var(--kf-primary);
    opacity: 0.25;
    margin-bottom: 12px;
    line-height: 1;
}

.vk2-testi-card-featured .vk2-testi-quote {
    opacity: 0.4;
}

/* Stars */
.vk2-testi-stars {
    color: var(--kf-accent);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

/* Review text */
.vk2-testi-text {
    font-family: var(--kf-font-body);
    font-size: 14px;
    line-height: 1.8;
    color: var(--kf-text);
    font-style: italic;
    flex: 1;
    margin-bottom: 16px;
}

/* Product tag */
.vk2-testi-product-tag {
    display: inline-flex;
    align-items: center;
    font-family: var(--kf-font-body);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--kf-primary);
    background: var(--kf-primary-soft);
    padding: 4px 12px;
    border-radius: 20px;
}

/* Author row */
.vk2-testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 2px dashed var(--kf-border);
    margin-top: auto;
}

.vk2-testi-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--kf-font-head);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.vk2-testi-av-pink {
    background: linear-gradient(135deg, #FF8FAB, #FFB3D9);
}

.vk2-testi-av-blue {
    background: linear-gradient(135deg, #9EE5FF, #5DADE2);
}

.vk2-testi-av-green {
    background: linear-gradient(135deg, #06D6A0, #00b386);
}

.vk2-testi-name {
    font-family: var(--kf-font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--kf-dark);
    display: block;
    margin-bottom: 4px;
}

.vk2-testi-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.vk2-testi-verified {
    font-family: var(--kf-font-body);
    font-size: 11px;
    font-weight: 700;
    color: #06a87a;
    display: flex;
    align-items: center;
    gap: 4px;
}

.vk2-testi-verified i {
    font-size: 11px;
}

.vk2-testi-date {
    font-family: var(--kf-font-body);
    font-size: 11px;
    color: var(--kf-text);
}

/* ==========================
   WHY CHOOSE US SECTION
========================== */
.vk2-why-section {
    padding: 100px 0;
    background: linear-gradient(160deg, #F0F8FF 0%, #FFFAF2 50%, #FFF0F3 100%);
    position: relative;
}

.vk2-why-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.vk2-why-blob-tl {
    width: 340px;
    height: 340px;
    background: rgba(158, 229, 255, 0.15);
    top: -80px;
    left: -80px;
}

.vk2-why-blob-br {
    width: 300px;
    height: 300px;
    background: rgba(255, 143, 171, 0.12);
    bottom: -60px;
    right: -60px;
}

/* Left highlight card */
.vk2-why-highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--kf-white);
    border: 2px solid var(--kf-border);
    border-radius: 20px;
    padding: 22px 24px;
    margin-bottom: 20px;
    box-shadow: 0 8px 28px rgba(43, 45, 66, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.vk2-why-highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(255, 143, 171, 0.14);
    border-color: var(--kf-primary-soft);
}

.vk2-why-hl-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #FFD166, #FFB347);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 6px 16px rgba(255, 209, 102, 0.35);
}

.vk2-why-hl-title {
    font-family: var(--kf-font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--kf-dark);
    display: block;
    margin-bottom: 4px;
}

.vk2-why-hl-text {
    font-family: var(--kf-font-body);
    font-size: 13px;
    color: var(--kf-text);
    line-height: 1.6;
    margin: 0;
}

/* Trust badges row */
.vk2-why-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.vk2-why-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--kf-font-body);
    font-size: 12px;
    font-weight: 700;
    color: #06a87a;
    background: rgba(6, 214, 160, 0.1);
    border: 1.5px solid rgba(6, 214, 160, 0.25);
    padding: 5px 14px;
    border-radius: 20px;
}

.vk2-why-badge i {
    font-size: 11px;
}

/* CTA button */
.vk2-why-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--kf-font-head);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    background: var(--kf-primary);
    color: #fff !important;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(255, 143, 171, 0.3);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vk2-why-cta:hover {
    background: var(--kf-dark);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 32px rgba(43, 45, 66, 0.18);
}

.vk2-why-cta i {
    transition: transform 0.3s ease;
}

.vk2-why-cta:hover i {
    transform: translateX(5px);
}

/* Right feature list */
.vk2-why-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.vk2-why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 28px;
    border-radius: 20px;
    background: var(--kf-white);
    border: 2px solid var(--kf-border);
    margin-bottom: 14px;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.35s ease, border-color 0.3s ease;
    box-shadow: 0 4px 16px rgba(43, 45, 66, 0.04);
}

.vk2-why-item:last-child {
    margin-bottom: 0;
}

.vk2-why-item:hover {
    transform: translateX(6px);
    box-shadow: 0 12px 36px rgba(43, 45, 66, 0.09);
}

/* Icon box */
.vk2-why-icon-box {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vk2-why-item:hover .vk2-why-icon-box {
    transform: scale(1.12) rotate(-6deg);
}

.vk2-why-icon-blue {
    background: rgba(158, 229, 255, 0.2);
    color: #1a8ab5;
}

.vk2-why-icon-pink {
    background: rgba(255, 143, 171, 0.15);
    color: #c0506a;
}

.vk2-why-icon-yellow {
    background: rgba(255, 209, 102, 0.18);
    color: #b07a00;
}

.vk2-why-icon-green {
    background: rgba(6, 214, 160, 0.12);
    color: #06a87a;
}

.vk2-why-item:has(.vk2-why-icon-blue):hover {
    border-color: rgba(158, 229, 255, 0.5);
}

.vk2-why-item:has(.vk2-why-icon-pink):hover {
    border-color: rgba(255, 143, 171, 0.4);
}

.vk2-why-item:has(.vk2-why-icon-yellow):hover {
    border-color: rgba(255, 209, 102, 0.4);
}

.vk2-why-item:has(.vk2-why-icon-green):hover {
    border-color: rgba(6, 214, 160, 0.35);
}

.vk2-why-body {
    flex: 1;
}

.vk2-why-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
}

.vk2-why-title {
    font-family: var(--kf-font-head);
    font-size: 17px;
    font-weight: 700;
    color: var(--kf-dark);
    margin: 0;
}

.vk2-why-badge-sm {
    font-family: var(--kf-font-body);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 20px;
    background: var(--kf-primary-soft);
    color: var(--kf-primary);
    white-space: nowrap;
}

.vk2-why-text {
    font-family: var(--kf-font-body);
    font-size: 13px;
    color: var(--kf-text);
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Progress bar */
.vk2-why-bar {
    height: 5px;
    background: var(--kf-border);
    border-radius: 10px;
    overflow: hidden;
}

.vk2-why-bar-fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--kf-primary), var(--kf-secondary));
    transition: width 1s ease;
}

/* Collections Carousel */
.vk2-collection-slide {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: flex-end;
}

.vk2-collection-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vk2-collection-slide:hover img {
    transform: scale(1.1);
}

.vk2-collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(43, 45, 66, 0.7) 100%);
}

.vk2-collection-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: var(--kf-white);
}

.vk2-collection-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--kf-white);
}

.vk2-collection-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

/* Mobile Menu Enhanced */
.vk2-mobile-toggle {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--kf-dark);
    cursor: pointer;
    transition: all 0.3s;
}

.vk2-mobile-toggle:hover {
    color: var(--kf-primary);
}

.vk2-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, #FFF0F3 0%, #F0F8FF 100%);
    z-index: 1000;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 30px;
    overflow-y: auto;
}

.vk2-mobile-menu.active {
    right: 0;
}

.vk2-close-menu {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--kf-dark);
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.vk2-close-menu:hover {
    color: var(--kf-primary);
    transform: rotate(90deg);
}

.vk2-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
}

.vk2-mobile-nav a {
    font-size: 18px;
    font-weight: 700;
    color: var(--kf-dark);
    transition: all 0.3s;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}

.vk2-mobile-nav a:hover {
    color: var(--kf-primary);
    border-bottom-color: var(--kf-primary);
    padding-left: 10px;
}

.vk2-footer2-links a:hover::after {
    width: 100%;
}

/* =================================
   BREADCRUMB SECTION
==================================== */
.vk2-breadcrumb-section {
    background: #FFFAF2;
    padding: 60px 0;
    border-bottom: 2px dashed var(--kf-secondary);
}

.vk2-breadcrumb-title {
    font-size: clamp(28px, 4vw, 44px);
    margin: 0;
}

.vk2-breadcrumb-list {
    background: var(--kf-white);
    padding: 10px 24px;
    border: 2px solid var(--kf-border);
    box-shadow: var(--kf-shadow-sm);
}

.vk2-breadcrumb-item {
    font-family: var(--kf-font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--kf-text);
    display: inline-flex;
    align-items: center;
}

.vk2-breadcrumb-item a {
    color: var(--kf-dark);
}

.vk2-breadcrumb-item a:hover {
    color: var(--kf-primary);
}

.vk2-breadcrumb-item a i {
    font-size: 12px;
    color: var(--kf-primary);
}

.vk2-breadcrumb-separator {
    padding: 0 14px;
    color: var(--kf-secondary);
    font-size: 11px;
    display: inline-flex;
    align-items: center;
}

.vk2-breadcrumb-item.vk2-active {
    color: var(--kf-primary);
    pointer-events: none;
}

.vk2-breadcrumb-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 1;
    opacity: 0.4;
}

.vk2-bread-blob-1 {
    width: 200px;
    height: 200px;
    background: var(--kf-bg-pink);
    top: -20px;
    left: -20px;
}

.vk2-bread-blob-2 {
    width: 180px;
    height: 180px;
    background: var(--kf-bg-blue);
    bottom: -20px;
    right: -20px;
}

.vk2-fi-breadcrumb-1 {
    top: 25%;
    left: 8%;
    animation: vk2-fi-drift 4.8s ease-in-out infinite;
}

.vk2-fi-breadcrumb-2 {
    bottom: 25%;
    right: 8%;
    animation: vk2-fi-bounce 4.2s ease-in-out infinite;
}

/* =================================
   SHOP PAGE
==================================== */
.vk2-shop-topbar {
    background: var(--kf-white);
    padding: 16px 24px;
    border-radius: 50px;
    border: 2px solid var(--kf-border);
    box-shadow: var(--kf-shadow-sm);
}

.vk2-products-result-text {
    font-family: var(--kf-font-body);
    font-weight: 700;
    color: var(--kf-dark);
}

.vk2-sort-select {
    width: 200px;
    font-family: var(--kf-font-body);
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--kf-border);
    padding: 8px 16px;
    color: var(--kf-text);
}

.vk2-sort-select:focus {
    border-color: var(--kf-primary);
    box-shadow: none;
}

/* Sidebar Widgets Architecture */
.vk2-shop-sidebar {
    background: var(--kf-white);
    border: 2px solid var(--kf-border);
    border-radius: var(--kf-radius-lg);
    padding: 24px;
    box-shadow: var(--kf-shadow-sm);
}

.vk2-widget-title {
    font-size: 18px;
    border-bottom: 2px dashed var(--kf-secondary);
    padding-bottom: 10px;
    margin-bottom: 16px;
    position: relative;
}

.vk2-widget-links li {
    margin-bottom: 12px;
}

.vk2-widget-links a {
    font-family: var(--kf-font-body);
    font-weight: 700;
    font-size: 14px;
    color: var(--kf-text);
    display: flex;
    justify-content: space-between;
    transition: all 0.25s ease;
}

.vk2-widget-links a:hover,
.vk2-widget-links a.active {
    color: var(--kf-primary);
    padding-left: 6px;
}

.vk2-widget-count {
    font-weight: 600;
    color: var(--kf-text);
    opacity: 0.6;
}

/* Custom Input Ranges */
.custom-range::-webkit-slider-thumb {
    background: var(--kf-primary) !important;
}

.vk2-price-range-label {
    font-family: var(--kf-font-body);
    font-size: 13px;
}

/* Sidebar Size Filter Matrix */
.vk2-sidebar-size-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--kf-border);
    background: var(--kf-white);
    font-family: var(--kf-font-body);
    font-weight: 700;
    font-size: 12px;
    color: var(--kf-text);
    transition: all 0.2s;
}

.vk2-sidebar-size-btn:hover,
.vk2-sidebar-size-btn.active {
    background: var(--kf-primary);
    color: var(--kf-white);
    border-color: var(--kf-primary);
    box-shadow: 0 4px 12px var(--kf-primary-soft);
}

/* Pagination Control Structure */
.vk2-pagination a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--kf-border);
    background: var(--kf-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--kf-font-head);
    font-weight: 600;
    font-size: 15px;
    color: var(--kf-dark);
}

.vk2-pag-link.active,
.vk2-pagination a:hover:not(.disabled) {
    background: var(--kf-primary);
    color: var(--kf-white) !important;
    border-color: var(--kf-primary);
    box-shadow: 0 8px 20px rgba(255, 143, 171, 0.35);
}

.vk2-pag-arrow.disabled {
    opacity: 0.5;
    pointer-events: none;
    background: var(--kf-bg);
}

/* ==========================
   SHOP DETAIL PAGE
========================== */
.vk2-product-gallery .vk2-gallery-main {
    height: 480px;
    background-color: var(--kf-bg-blue);
}

.vk2-gallery-thumb-item {
    width: 80px;
    height: 80px;
    cursor: pointer;
    background: var(--kf-white);
    transition: all 0.25s ease;
}

.vk2-gallery-thumb-item:hover,
.vk2-gallery-thumb-item.active {
    border-color: var(--kf-primary) !important;
    box-shadow: var(--kf-shadow-sm);
    transform: translateY(-2px);
}

.vk2-detail-cat {
    font-family: var(--kf-font-body);
    font-size: 12px;
    font-weight: 800;
    color: var(--kf-primary);
}

.vk2-detail-title {
    font-size: clamp(24px, 3.5vw, 36px);
    color: var(--kf-dark);
}

.vk2-detail-current-price {
    font-family: var(--kf-font-head);
    font-size: clamp(28px, 4vw, 38px);
    color: var(--kf-primary);
    line-height: 1;
}

.vk2-detail-old-price {
    font-size: 18px;
    color: var(--kf-text);
    opacity: 0.7;
}

.vk2-detail-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--kf-text);
}

.vk2-detail-trust-footer {
    border: 2px solid var(--kf-border) !important;
    background: var(--kf-white) !important;
}

.vk2-detail-trust-footer i {
    font-size: 14px;
}

/* =================================
   SINGLE PRODUCT
==================================== */
.vk2-product-extended-section .vk2-prod-tabs {
    border-bottom: 2px dashed var(--kf-border) !important;
}

.vk2-specs-table {
    font-family: var(--kf-font-body);
    font-size: 14px;
}

.vk2-specs-table th {
    font-family: var(--kf-font-head);
    font-size: 14px;
    letter-spacing: 0.5px;
    color: var(--kf-dark) !important;
}

.vk2-specs-table td {
    color: var(--kf-text);
}

.vk2-review-item {
    border: 2px solid var(--kf-border) !important;
}

.vk2-product-extended-section .min-height-250 {
    min-height: 250px;
}

/* =================================
   WISHLIST PAGE
==================================== */
.vk2-wishlist-remove-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--kf-white);
    border: 2px solid var(--kf-border);
    color: var(--kf-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    box-shadow: var(--kf-shadow-sm);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vk2-wishlist-remove-btn:hover {
    background: var(--kf-dark);
    color: var(--kf-white);
    border-color: var(--kf-dark);
    transform: scale(1.1) rotate(90deg);
}

.vk2-wishlist-oos .vk2-pc-img {
    filter: grayscale(40%);
    opacity: 0.8;
}

.vk2-wishlist-oos .vk2-pc-cart.disabled {
    background: var(--kf-text) !important;
    cursor: not-allowed;
    bottom: 0 !important;
}

.bg-success-soft {
    background-color: rgba(6, 214, 160, 0.12) !important;
}

.bg-danger-soft {
    background-color: rgba(239, 71, 111, 0.12) !important;
}

/* =================================
   CART PAGE
==================================== */
.vk2-cart-table th {
    font-family: var(--kf-font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--kf-dark);
    padding: 16px 12px;
    background: var(--kf-bg-blue);
    border: none;
}

.vk2-cart-table td {
    padding: 16px 12px;
    border-color: var(--kf-border);
}

.vk2-cart-img-wrap {
    width: 64px;
    height: 64px;
}

.vk2-cart-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vk2-cart-del-icon {
    transition: color 0.25s ease, transform 0.2s;
}

.vk2-cart-del-icon:hover {
    color: #EF476F !important;
    transform: scale(1.15);
}

.width-fit {
    width: fit-content;
}

.max-width-360 {
    max-width: 360px;
}

/* =================================
   CHECKOUT PAGE
==================================== */
.vk2-checkout-label {
    font-family: var(--kf-font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--kf-dark);
    margin-bottom: 6px;
    display: block;
}

.vk2-checkout-input {
    border: 2px solid var(--kf-border) !important;
    border-radius: 12px !important;
    padding: 10px 16px !important;
    font-family: var(--kf-font-body);
    font-size: 14px !important;
    color: var(--kf-dark);
    font-weight: 600;
    background-color: var(--kf-bg);
    transition: all 0.3s ease;
}

.vk2-checkout-input:focus {
    background-color: var(--kf-white);
    border-color: var(--kf-primary) !important;
    box-shadow: none !important;
}

.vk2-checkout-textarea {
    min-height: 120px;
    resize: none;
}

.vk2-checkout-summary-sticky {
    top: 100px;
    z-index: 10;
}

.vk2-checkout-review-list li {
    font-family: var(--kf-font-body);
    font-size: 14px;
    margin-bottom: 12px;
}

.vk2-checkout-prod-name {
    color: var(--kf-text);
}

.vk2-checkout-prod-price {
    font-weight: 700;
    color: var(--kf-dark);
}

.vk2-checkout-subtotal-row,
.vk2-checkout-shipping-row {
    color: var(--kf-text);
    font-size: 14px;
}

.vk2-checkout-free-badge {
    font-weight: 700;
    color: var(--kf-success);
    background: rgba(6, 214, 160, 0.12);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
}

.vk2-checkout-total-row {
    font-family: var(--kf-font-head);
    font-size: 18px;
    color: var(--kf-dark);
    font-weight: 700;
}

.vk2-checkout-grand-total {
    color: var(--kf-primary) !important;
    font-size: 24px;
}

.vk2-payment-methods-box {
    background: var(--kf-bg);
    border: 2px solid var(--kf-border);
}

.vk2-payment-option {
    padding-left: 1.8em;
}

.vk2-payment-option .form-check-input {
    border-color: var(--kf-text);
    cursor: pointer;
}

.vk2-payment-option .form-check-input:checked {
    background-color: var(--kf-primary);
    border-color: var(--kf-primary);
}

.vk2-payment-desc-text {
    font-family: var(--kf-font-body);
    font-size: 13px;
    line-height: 1.6;
    color: var(--kf-text);
    background: var(--kf-white);
    padding: 12px;
    border-radius: 10px;
    border-left: 3px solid var(--kf-primary);
}

/* =================================
   ABOUT US PAGE
==================================== */
.vk2-about-mini-badge {
    border: 2px solid var(--kf-border) !important;
    background-color: var(--kf-white);
}

.vk2-about-mini-badge span {
    font-size: 14px;
}

.vk2-about-image-matrix {
    max-width: 450px;
    height: 440px;
}

.vk2-about-frame {
    background-color: var(--kf-white);
    border: 6px solid var(--kf-white) !important;
}

.vk2-frame-primary {
    width: 80%;
    height: 360px;
    transform: rotate(-2deg);
}

.vk2-frame-secondary {
    width: 55%;
    height: 240px;
    bottom: 40px;
    right: 0;
    transform: rotate(4deg);
    z-index: 2;
}

/* Timeline */
.vk2-about-timeline {
    padding-left: 20px;
}

.vk2-about-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 6px;
    width: 4px;
    height: 100%;
    background-color: var(--kf-primary);
    border-radius: 10px;
}

.vk2-timeline-marker {
    top: 24px;
    left: -20px;
    width: 16px;
    height: 16px;
    z-index: 3;
    border-width: 3px !important;
    border-color: var(--kf-secondary-soft) !important;
    background-color: var(--kf-secondary) !important;
}

.vk2-timeline-year {
    font-size: 20px;
    display: block;
}

/* =================================
   CONTACT US PAGE
==================================== */
.vk2-contact-info-wrapper {
    position: relative;
    height: 100%;
}

.vk2-contact-card-box {
    border: 2px solid var(--kf-border) !important;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.vk2-contact-card-box:hover {
    transform: translateX(6px);
    box-shadow: var(--kf-shadow-sm);
    border-color: var(--kf-primary-soft) !important;
}

.vk2-contact-card-box .vk2-feat-icon-wrap {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.vk2-contact-map-container {
    height: 400px;
    width: 100%;
    background-color: var(--kf-bg);
}

.vk2-contact-map-container iframe {
    filter: grayscale(10%) contrast(95%);
}

/* =================================
   BLOG PAGE
==================================== */
.vk2-blog-post-card {
    border: 2px solid var(--kf-border) !important;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.vk2-blog-post-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--kf-shadow-sm);
    border-color: var(--kf-primary-soft) !important;
}

.vk2-blog-post-media {
    height: 240px;
    width: 100%;
}

.vk2-blog-post-media img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.vk2-blog-post-card:hover .vk2-blog-post-media img {
    transform: scale(1.08);
}

.vk2-blog-post-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    background-color: var(--kf-white);
    color: var(--kf-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-family: var(--kf-font-body);
    font-weight: 700;
    font-size: 11px;
    box-shadow: var(--kf-shadow-sm);
}

.vk2-blog-post-meta {
    font-family: var(--kf-font-body);
    font-size: 13px;
    color: var(--kf-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.vk2-blog-post-title {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

.vk2-blog-post-title a {
    transition: color 0.2s ease;
}

.vk2-blog-post-title a:hover {
    color: var(--kf-primary) !important;
}

.vk2-blog-readmore-btn {
    color: var(--kf-primary);
    font-size: 14px;
    transition: color 0.2s ease;
}

.vk2-blog-readmore-btn i {
    transition: transform 0.2s ease;
}

.vk2-blog-readmore-btn:hover {
    color: var(--kf-dark);
}

.vk2-blog-readmore-btn:hover i {
    transform: translateX(4px);
}

.vk2-blog-sidebar-sticky {
    position: sticky;
    z-index: 5;
}

.vk2-recent-blog-meta .vk2-why-title {
    font-size: 14px;
    line-height: 1.3;
}

/* =================================
   BLOG DETAIL PAGE
==================================== */
.vk2-blog-detail-main-title {
    font-size: clamp(22px, 3.8vw, 34px);
    line-height: 1.3;
    font-weight: 700;
    color: var(--kf-dark);
}

.vk2-blog-detail-featured-media {
    height: 420px;
    width: 100%;
    border: 2px solid var(--kf-border);
}

.vk2-blog-detail-content-body {
    margin-top: 24px;
}

.vk2-blog-detail-sub-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--kf-dark);
    margin-top: 30px;
}

.vk2-blog-blockquote {
    background-color: var(--kf-primary-soft);
    border-left: 4px solid var(--kf-primary);
    font-family: var(--kf-font-body);
    font-style: italic;
    font-size: 16px;
    line-height: 1.7;
    color: var(--kf-dark);
}

.vk2-quote-bg-icon {
    font-size: 60px;
    bottom: 10px;
    right: 20px;
    color: var(--kf-primary);
    opacity: 0.12;
    pointer-events: none;
}

.vk2-blog-detail-tags span {
    font-size: 12px;
}

/* =================================
   TESTIMONIAL PAGE
==================================== */
.vk2-testimonials-page-section .vk2-testi-summary {
    border: 2px dashed var(--kf-border);
    background-color: var(--kf-white);
    padding: 24px;
    border-radius: 24px;
}

.vk2-testi-stars {
    font-size: 14px;
}

.vk2-star-select-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--kf-text);
    opacity: 0.3;
    padding: 4px;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s, color 0.2s;
}

.vk2-star-select-btn:hover {
    transform: scale(1.2);
}

.vk2-star-select-btn.active {
    color: #FFB347;
    opacity: 1;
}

/* =================================
   COMING SOON PAGE
==================================== */
.vk2-comingsoon-layout-section {
    background-color: #FFFAF2;
}

.vk2-comingsoon-brand {
    font-family: var(--kf-font-head);
    font-size: 32px;
    font-weight: 700;
    color: var(--kf-dark);
    text-decoration: none;
}

.vk2-comingsoon-brand span {
    color: var(--kf-primary);
}

.vk2-comingsoon-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.2;
}

.vk2-comingsoon-desc {
    font-family: var(--kf-font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--kf-text);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Countdown */
.vk2-countdown-box {
    width: 110px;
    border: 2px solid var(--kf-border);
    box-shadow: var(--kf-shadow-sm);
    min-width: 90px;
}

.vk2-countdown-number {
    font-family: var(--kf-font-head);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--kf-dark);
    line-height: 1.1;
}

.vk2-countdown-label {
    font-family: var(--kf-font-body);
    font-size: 11px;
    font-weight: 800;
    color: var(--kf-text);
    letter-spacing: 1px;
}

.vk2-comingsoon-form-title {
    font-family: var(--kf-font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--kf-dark);
}

.vk2-comingsoon-nl-form input {
    border-radius: 50px 0 0 50px !important;
    font-family: var(--kf-font-body);
    font-size: 14px;
    color: var(--kf-dark);
    font-weight: 600;
}

.vk2-comingsoon-nl-form input:focus {
    background-color: var(--kf-white);
    border-color: var(--kf-primary);
    box-shadow: none;
}

.vk2-comingsoon-nl-form button {
    border-radius: 0 50px 50px 0 !important;
    font-size: 14px;
    white-space: nowrap;
}

/* =================================
   404 ERROR PAGE 
==================================== */
.vk2-error-layout-section {
    background-color: var(--kf-white);
}

.vk2-error-graphic-frame {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: inline-block;
}

.vk2-error-huge-digits {
    font-family: var(--kf-font-head);
    font-size: clamp(100px, 15vw, 160px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
    color: var(--kf-dark);
}

.vk2-error-floating-toy {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(36px, 6vw, 54px);
    animation: vk2-fi-bounce 3.5s ease-in-out infinite;
    z-index: 3;
}

.vk2-error-title {
    font-family: var(--kf-font-head);
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 700;
    color: var(--kf-dark);
}

.max-width-540 {
    max-width: 540px;
}

.vk2-error-action-btns .vk2-btn {
    min-width: 180px;
}

/* =================================
   FAQ PAGE
==================================== */
.vk2-faq-item {
    border: 2px solid var(--kf-border) !important;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.vk2-faq-trigger {
    outline: none !important;
    cursor: pointer;
}

.vk2-faq-question {
    font-family: var(--kf-font-head);
    font-size: 16px;
    line-height: 1.4;
    transition: color 0.25s ease;
}

.vk2-faq-icon-indicator {
    width: 32px;
    height: 32px;
    background-color: var(--kf-bg);
    border-radius: 50%;
    color: var(--kf-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: all 0.3s ease;
}

.vk2-faq-item.active {
    border-color: var(--kf-primary-soft) !important;
    box-shadow: var(--kf-shadow-sm);
}

.vk2-faq-item.active .vk2-faq-question {
    color: var(--kf-primary) !important;
}

.vk2-faq-item.active .vk2-faq-icon-indicator {
    background-color: var(--kf-primary);
    color: var(--kf-white);
    transform: rotate(180deg);
}

.vk2-faq-collapse-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.vk2-faq-item.active .vk2-faq-collapse-panel {
    max-height: 300px;
}

.vk2-faq-body-content {
    border-top: 1px dashed var(--kf-border);
    padding-top: 16px;
}

/* =================================
   TERMS & CONDITIONS PAGE
==================================== */
.vk2-terms-layout-section {
    background-color: var(--kf-bg);
}

.vk2-legal-document-block {
    position: relative;
}

.scroll-margin-top-120 {
    scroll-margin-top: 120px;
}

.vk2-blog-detail-content-body hr {
    border-top: 2px dashed var(--kf-border);
}

#vk2TermsAnchorsList a {
    position: relative;
}

#vk2TermsAnchorsList a.active {
    color: var(--kf-primary);
    font-weight: 800;
}

/* =================================
   RETURN POLICY PAGE
==================================== */
.vk2-policy-layout-section {
    background-color: var(--kf-bg);
}

.vk2-policy-highlight-card {
    border: 2px solid var(--kf-border) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vk2-policy-highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--kf-shadow-sm);
    border-color: var(--kf-primary-soft) !important;
}

.vk2-policy-highlight-card .vk2-feat-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.vk2-policy-highlight-title {
    font-family: var(--kf-font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--kf-dark);
    margin-bottom: 8px;
}

.vk2-policy-bullets li {
    font-family: var(--kf-font-body);
    font-size: 14px;
    color: var(--kf-text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.vk2-policy-numbered li {
    font-family: var(--kf-font-body);
    font-size: 14px;
    color: var(--kf-text);
    line-height: 1.6;
}

/* =================================
   SHIPPING POLICY PAGE
==================================== */
.vk2-policy-custom-table {
    border-collapse: collapse;
    width: 100%;
    background-color: var(--kf-white);
}

.vk2-policy-custom-table th {
    background-color: var(--kf-dark);
    color: var(--kf-white);
    font-family: var(--kf-font-head);
    font-size: 14px;
    font-weight: 700;
    padding: 14px 18px;
    border: none;
}

.vk2-policy-custom-table td {
    padding: 14px 18px;
    font-family: var(--kf-font-body);
    font-size: 14px;
    color: var(--kf-text);
    border-bottom: 1px solid var(--kf-border);
    vertical-align: middle;
}

.vk2-policy-custom-table tr:last-child td {
    border-bottom: none;
}

.vk2-table-free-pill {
    background-color: rgba(6, 214, 160, 0.12);
    color: var(--kf-success);
    font-weight: 800;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    text-transform: uppercase;
}

/* =================================
   PRIVACY POLICY PAGE
==================================== */
#vk2PrivacyAnchorsList a {
    position: relative;
    transition: all 0.2s ease;
}

#vk2PrivacyAnchorsList a.active {
    color: var(--kf-primary);
    font-weight: 800;
}

/* =================================
   AUTHORIZATION PAGE (LOGIN, REGISTER, FORGOT PASSWORD)
==================================== */
.vk2-auth-layout-section {
    background-color: var(--kf-bg);
}

.vk2-auth-forgot-link {
    font-size: 13px;
    color: var(--kf-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.vk2-auth-forgot-link:hover {
    color: var(--kf-primary);
}

.vk2-auth-layout-section .vk2-shop-sidebar {
    border: 2px solid var(--kf-border) !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.vk2-auth-layout-section .vk2-shop-sidebar:hover {
    border-color: var(--kf-primary-soft) !important;
    box-shadow: var(--kf-shadow-sm);
}

/* =================================
   REGISTRATION PAGE
==================================== */
.border-dashed {
    border-top-style: dashed !important;
    border-top-width: 2px !important;
    border-color: var(--kf-border) !important;
}

#vk2StandaloneRegisterForm .vk2-checkout-input::placeholder {
    font-weight: 500;
    opacity: 0.6;
}

/* =======================================
   FORGOT PASSWORD PAGE
========================================== */
#vk2ForgotPasswordRecoveryForm .border-top {
    border-top-style: dashed !important;
    border-top-width: 2px !important;
    border-color: var(--kf-border) !important;
}

#vk2ForgotPasswordRecoveryForm .vk2-checkout-input::placeholder {
    font-weight: 500;
    opacity: 0.6;
}

/* =================================
   USER DASHBOARD PAGE
==================================== */
.vk2-dashboard-layout-section {
    background-color: var(--kf-bg);
}

.vk2-dashboard-avatar {
    width: 80px;
    height: 80px;
    background-color: var(--kf-primary-soft);
    color: var(--kf-primary);
    font-family: var(--kf-font-head);
    font-size: 32px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--kf-white);
    box-shadow: var(--kf-shadow-sm);
}

.vk2-dashboard-username {
    font-family: var(--kf-font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--kf-dark);
}

.vk2-dashboard-user-role {
    font-family: var(--kf-font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--kf-text);
    opacity: 0.8;
}

.vk2-dash-tab-btn {
    font-family: var(--kf-font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--kf-dark);
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    outline: none !important;
}

.vk2-dash-tab-btn:hover,
.vk2-dash-tab-btn.active {
    background-color: var(--kf-bg) !important;
    color: var(--kf-primary) !important;
    padding-left: 20px !important;
}

.vk2-dash-stat-num {
    font-family: var(--kf-font-head);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.2;
}

.vk2-dash-stat-label {
    font-family: var(--kf-font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--kf-text);
}

.bg-warning-soft {
    background-color: rgba(255, 179, 71, 0.12) !important;
}

/* =======================================
   ORDER HISTORY PAGE
========================================== */
.vk2-history-order-card {
    border: 2px solid var(--kf-border) !important;
}

.vk2-history-card-header {
    border-bottom: 2px solid var(--kf-border) !important;
}

.vk2-history-meta-label {
    font-family: var(--kf-font-body);
    font-size: 10px;
    font-weight: 800;
    color: var(--kf-text);
    opacity: 0.7;
    letter-spacing: 0.5px;
}

.vk2-history-meta-val {
    font-family: var(--kf-font-body);
    font-size: 13px;
    color: var(--kf-dark);
}

.vk2-history-id-tag {
    font-family: var(--kf-font-body);
    font-size: 13px;
    color: var(--kf-text);
}

.vk2-history-prod-thumb {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.vk2-history-prod-title {
    font-family: var(--kf-font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--kf-dark);
    line-height: 1.3;
}

.vk2-history-prod-sub {
    font-family: var(--kf-font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--kf-text);
    opacity: 0.8;
    display: block;
    margin-top: 2px;
}

/* =======================================
   ADDRESS BOOK PAGE
========================================== */
.vk2-address-form-slide-wrapper {
    border: 2px solid var(--kf-border) !important;
    animation: vk2-fade-slide-down 0.3s ease-out;
}

.vk2-address-card-title {
    font-family: var(--kf-font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--kf-dark);
}

.vk2-address-body {
    line-height: 1.6;
    font-style: normal;
    margin: 0;
}

.vk2-address-actions-footer {
    border-top: 1px dashed var(--kf-border) !important;
}

.vk2-address-action-btn {
    background: none;
    border: none;
    padding: 0;
    font-family: var(--kf-font-body);
    font-size: 13px;
    font-weight: 700;
    outline: none !important;
    transition: opacity 0.2s ease;
}

.vk2-address-action-btn:hover {
    opacity: 0.7;
}

@keyframes vk2-fade-slide-down {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =======================================
   TRACK ORDER PAGE
========================================== */
.vk2-track-layout-section {
    background-color: var(--kf-bg);
}

.vk2-track-id-header,
.vk2-track-date-header {
    font-family: var(--kf-font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--kf-dark);
}

.vk2-track-timeline-matrix::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    width: 3px;
    height: 100%;
    background-color: var(--kf-border);
    z-index: 1;
}

.vk2-track-step {
    z-index: 2;
}

.vk2-track-indicator-node {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--kf-white);
    border: 3px solid var(--kf-border);
    color: var(--kf-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 3;
    transition: all 0.3s ease;
}

.vk2-track-step-title {
    font-family: var(--kf-font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--kf-dark);
}

.vk2-track-step-timestamp {
    font-family: var(--kf-font-body);
    font-size: 11px;
    font-weight: 700;
    color: var(--kf-text);
    opacity: 0.7;
}

.vk2-track-step.completed .vk2-track-indicator-node {
    background-color: var(--kf-success);
    border-color: var(--kf-success);
    color: var(--kf-white);
    font-size: 16px;
}

.vk2-track-step.active .vk2-track-indicator-node {
    background-color: var(--kf-primary);
    border-color: var(--kf-primary-soft);
    color: var(--kf-white);
    font-size: 13px;
    box-shadow: 0 0 0 4px var(--kf-primary-soft);
}

.vk2-track-step.active .vk2-track-step-title {
    color: var(--kf-primary);
}

.vk2-track-step.pending .vk2-track-indicator-node {
    color: transparent;
}
