/* ============================================================
   PLS Foods Redesign — Topbar, Navbar, Hero, Stats Bar
   ============================================================ */

/* ----- Topbar ----- */
.pls-topbar {
    background: #1a1f2e;
    padding: 10px 0;
}
.pls-topbar-text {
    color: #c8cdd8;
    font-size: 13.5px;
    letter-spacing: 0.02em;
}
.pls-topbar-text strong {
    color: #fff;
    font-weight: 600;
}
.pls-topbar-link {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.pls-topbar-link:hover {
    color: #93c5fd;
    text-decoration: underline;
}
.pls-topbar-close {
    background: none;
    border: none;
    color: #888;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    top: 50%;
    transform: translateY(-50%);
    transition: color 0.2s;
}
.pls-topbar-close:hover { color: #fff; }

/* ----- Navbar Wrapper ----- */
/* Ensure header always sits above page sections */
.gheader {
    position: sticky !important;
    top: 0;
    z-index: 1030 !important;
}

.pls-navbar-wrap {
    border-bottom: 1px solid #e8ecf0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

/* ----- Nav Menu ----- */
.pls-navmenu ul { gap: 0; margin: 0; padding: 0; }
.pls-nav-item { list-style: none; }
.pls-nav-link {
    display: inline-block;
    padding: 10px 13px;
    color: #374151;
    font-size: 14.5px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    white-space: nowrap;
    transition: color 0.2s;
}
.pls-nav-link:hover { color: #1a7a4a; }
.pls-nav-item.active .pls-nav-link { color: #1a7a4a; }
.pls-nav-item.active .pls-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 13px;
    right: 13px;
    height: 2px;
    background: #1a7a4a;
    border-radius: 2px;
}

/* Nav red notification dot */
.pls-nav-dot {
    position: absolute;
    top: 8px;
    right: 6px;
    width: 7px;
    height: 7px;
    background: #e63946;
    border-radius: 50%;
}

/* Dropdown */
.pls-has-dropdown { position: relative; }
.pls-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    min-width: 170px;
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 200;
}
.pls-has-dropdown:hover .pls-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.pls-dropdown-menu li a {
    display: block;
    padding: 9px 20px;
    color: #374151;
    font-size: 13.5px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.pls-dropdown-menu li a:hover {
    background: #f0faf4;
    color: #1a7a4a;
}

/* Bulk Inquiry Button */
.pls-btn-inquiry {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #f4a32a;
    color: #1a1a1a !important;
    font-weight: 700;
    font-size: 14px;
    padding: 9px 20px;
    border-radius: 7px;
    border: none;
    text-decoration: none !important;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
}
.pls-btn-inquiry:hover {
    background: #e8960e;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(244, 163, 42, 0.4);
    color: #1a1a1a !important;
}

/* Icon Buttons (user / cart) */
.pls-icon-btn {
    background: none;
    border: none;
    color: #555;
    padding: 8px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}
.pls-icon-btn:hover { color: #1a7a4a; }

/* ============================================================
   PLS Hero Section
   ============================================================ */
.pls-hero {
    height: 580px;
}
.pls-hero-slider,
.pls-hero-slider .swiper-wrapper {
    height: 100%;
}
.pls-hero-slide {
    position: relative;
    height: 580px;
}
.pls-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}
.pls-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(8, 20, 14, 0.75) 0%, rgba(10, 28, 20, 0.55) 60%, rgba(8, 20, 14, 0.35) 100%);
    z-index: 1;
}
.pls-hero-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Badge */
.pls-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #e0f7ff;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    padding: 7px 18px;
    border-radius: 30px;
}
.pls-badge-dot {
    width: 7px;
    height: 7px;
    background: #4fc3f7;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Title */
.pls-hero-title {
    font-size: clamp(2rem, 4.2vw, 3.6rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.01em;
}
.pls-hero-title-blue {
    color: #4fc3f7;
}

/* Subtitle block with left border */
.pls-hero-subtitle-block {
    border-left: 4px solid rgba(255, 255, 255, 0.35);
    padding-left: 20px;
}
.pls-hero-subtitle {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15.5px;
    line-height: 1.7;
}

/* Hero CTA */
.pls-btn-hero {
    display: inline-flex;
    align-items: center;
    background: #1565c0;
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 34px;
    border-radius: 7px;
    text-decoration: none !important;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    border: none;
}
.pls-btn-hero:hover {
    background: #0d47a1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 101, 192, 0.45);
    color: #fff !important;
}

/* Scroll Down */
.pls-scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.pls-scroll-line {
    width: 1px;
    height: 70px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
}
.pls-scroll-text {
    font-size: 10px;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.55);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-weight: 500;
}

/* Hero Pagination */
.pls-hero-pagination {
    position: absolute !important;
    bottom: 28px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10;
    display: flex;
    gap: 6px;
    width: auto !important;
}
.pls-hero-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s;
    cursor: pointer;
}
.pls-hero-pagination .swiper-pagination-bullet-active {
    background: #fff;
    width: 26px;
    border-radius: 4px;
}

/* Hero Arrows */
.pls-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s, transform 0.2s;
}
.pls-arrow:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-50%) scale(1.05);
}
.pls-arrow-prev { left: 20px; }
.pls-arrow-next { right: 20px; }

/* ============================================================
   Stats Bar
   ============================================================ */
.pls-stats-bar {
    background: #14321f;
    padding: 0;
}
.pls-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.pls-stat-item--last { border-right: none; }
.pls-stat-icon { font-size: 26px; flex-shrink: 0; }
.pls-stat-text {
    color: #e0ffe8;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 991.98px) {
    .pls-hero { height: 480px; }
    .pls-hero-slide { height: 480px; }
}
@media (max-width: 767.98px) {
    .pls-hero { height: 420px; }
    .pls-hero-slide { height: 420px; }
    .pls-stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 14px 16px;
    }
    .pls-stat-item--last { border-bottom: none; }
    .pls-arrow { display: none; }
}
@media (max-width: 575.98px) {
    .pls-hero-title { font-size: 1.8rem; }
    .pls-topbar-text { font-size: 12px; }
}

/* ============================================================
   Why Makhana — Dark Feature Row Layout
   ============================================================ */
.vk-why-section {
    background: #0b1e13;
    padding: 96px 0 104px;
    position: relative;
}

/* Ghost watermark text */
.vk-why-watermark {
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: clamp(100px, 16vw, 200px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.028);
    letter-spacing: 0.1em;
    pointer-events: none;
    z-index: 0;
    line-height: 1;
    user-select: none;
}

/* Split header */
.vk-why-header-row { margin-bottom: 64px; }

.vk-why-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #4ade80;
    padding-left: 14px;
    border-left: 3px solid #4ade80;
}

.vk-why-heading {
    font-size: clamp(2.1rem, 4vw, 3.3rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.13;
    letter-spacing: -0.02em;
}
.vk-why-accent { color: #f4a32a; }

.vk-why-subtext {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    line-height: 1.78;
    max-width: 480px;
}

/* Feature row — 4-column grid */
.vk-feat-row {
    display: grid;
    grid-template-columns: 64px 72px 220px 1fr;
    grid-template-areas: 'num icon body grid';
    align-items: center;
    gap: 0 36px;
    padding: 44px 0;
}
.vk-feat-num      { grid-area: num; }
.vk-feat-icon-wrap { grid-area: icon; }
.vk-feat-body     { grid-area: body; }
.vk-feat-grid     { grid-area: grid; }

/* Ghost number — visible on dark bg */
.vk-feat-num {
    font-size: 54px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.22);
    line-height: 1;
    letter-spacing: -0.05em;
    user-select: none;
    font-variant-numeric: tabular-nums;
}

/* Icon box */
.vk-feat-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--ic);
    transition: background 0.22s, border-color 0.22s;
}
.vk-feat-row:hover .vk-feat-icon {
    background: rgba(255, 255, 255, 0.11);
    border-color: var(--ic);
}

/* Title + desc */
.vk-feat-title {
    font-size: 16.5px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 5px;
    letter-spacing: -0.01em;
}
.vk-feat-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    margin: 0;
    line-height: 1.55;
}

/* 2-column bullet grid */
.vk-feat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px 44px;
}
.vk-feat-item {
    position: relative;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13.5px;
    line-height: 1.5;
}
.vk-feat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f4a32a;
}

/* Row divider */
.vk-feat-rule {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin: 0;
}

/* Responsive — Tablet */
@media (max-width: 991.98px) {
    .vk-feat-row {
        grid-template-columns: 58px 1fr;
        grid-template-areas:
            'icon  body'
            '.     grid';
        align-items: start;
        gap: 8px 24px;
        padding: 36px 0;
    }
    .vk-feat-num { display: none; }
    .vk-feat-grid {
        margin-top: 12px;
        grid-template-columns: 1fr 1fr;
        gap: 10px 28px;
    }
    .vk-feat-icon { width: 52px; height: 52px; font-size: 20px; }
}

/* Responsive — Mobile */
@media (max-width: 767.98px) {
    .vk-why-section { padding: 56px 0 64px; }
    .vk-why-header-row { margin-bottom: 36px; }
    .vk-feat-row {
        grid-template-columns: 48px 1fr;
        grid-template-areas:
            'icon  body'
            '.     grid';
        gap: 6px 16px;
        padding: 28px 0;
    }
    .vk-feat-icon { width: 44px; height: 44px; font-size: 17px; border-radius: 10px; }
    .vk-feat-title { font-size: 15px; }
    .vk-feat-grid {
        grid-template-columns: 1fr;
        gap: 8px 0;
        margin-top: 10px;
    }
    .vk-feat-item { font-size: 13px; }
}

/* ============================================================
   Trusted Partner Section
   ============================================================ */
.vk-trust-section {
    background: #f8f9fa;
    padding: 96px 0 104px;
    position: relative;
}
.vk-trust-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 60% at 90% 50%, rgba(74, 222, 128, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 10% 80%, rgba(244, 163, 42, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Eyebrow */
.vk-trust-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #1a6b3a;
    padding-left: 14px;
    border-left: 3px solid #f4a32a;
}

/* Heading */
.vk-trust-heading {
    font-size: clamp(1.85rem, 3.5vw, 2.9rem);
    font-weight: 800;
    color: #0f1f14;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.vk-trust-accent { color: #1a6b3a; }

/* Body text */
.vk-trust-body {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* Tagline */
.vk-trust-tagline {
    font-size: 14px;
    font-weight: 700;
    color: #1a6b3a;
    letter-spacing: 0.03em;
    border-left: 3px solid #f4a32a;
    padding-left: 14px;
}

/* CTAs */
.vk-trust-cta {
    display: inline-flex;
    align-items: center;
    background: #1a6b3a;
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 26px;
    border-radius: 7px;
    text-decoration: none !important;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.vk-trust-cta:hover {
    background: #145530;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 107, 58, 0.35);
}
.vk-trust-cta-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #1a6b3a !important;
    font-weight: 700;
    font-size: 14px;
    padding: 11px 24px;
    border-radius: 7px;
    border: 2px solid #1a6b3a;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s;
}
.vk-trust-cta-outline:hover {
    background: #1a6b3a;
    color: #fff !important;
}

/* Stats 2x2 grid */
.vk-trust-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.vk-trust-stat {
    background: #fff;
    border-radius: 14px;
    padding: 22px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.22s, box-shadow 0.22s;
}
.vk-trust-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
.vk-trust-stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--sc);
    flex-shrink: 0;
}
.vk-trust-stat-num {
    font-size: 24px;
    font-weight: 800;
    color: #0f1f14;
    line-height: 1.1;
    letter-spacing: -0.03em;
}
.vk-trust-stat-num span {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}
.vk-trust-stat-label {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
    line-height: 1.35;
}

/* Trust badges */
.vk-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.vk-trust-badge {
    display: inline-flex;
    align-items: center;
    background: #e8f5e9;
    color: #1a6b3a;
    font-size: 12.5px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 30px;
    border: 1px solid rgba(26, 107, 58, 0.18);
}

/* Responsive */
@media (max-width: 767.98px) {
    .vk-trust-section { padding: 60px 0 68px; }
    .vk-trust-stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .vk-trust-stat { padding: 16px 14px; gap: 12px; }
    .vk-trust-stat-num { font-size: 20px; }
    .vk-trust-cta, .vk-trust-cta-outline { width: 100%; justify-content: center; margin-bottom: 10px; }
    .vk-trust-cta-outline { margin-bottom: 0; }
}
@media (max-width: 399.98px) {
    .vk-trust-stats-grid { grid-template-columns: 1fr; }
}

}

/* ============================================================
   VK Product Listing + Product Card  (vk-plist-* / vk-pcard-*)
   ============================================================ */

/* ── Page header ── */
.vk-plist-header {
    background: #fff;
    border-bottom: 2px solid #e8f0e8;
    padding: 44px 0 38px;
}
.vk-plist-header-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.vk-plist-breadcrumb { margin-bottom: 8px; }
.vk-plist-breadcrumb .breadcrumb-item a { color: #16a34a; text-decoration: none; font-size: 13px; font-weight: 600; }
.vk-plist-breadcrumb .breadcrumb-item.active { color: #999; font-size: 13px; }
.vk-plist-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: #ccc; }
.vk-plist-heading {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: #0b1e13;
    margin: 0 0 6px;
    line-height: 1.15;
    position: relative;
    padding-left: 16px;
}
.vk-plist-heading::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 72%;
    background: linear-gradient(to bottom, #4ade80, #16a34a);
    border-radius: 4px;
}
.vk-plist-subhead {
    font-size: 13.5px;
    color: #888;
    margin: 0;
    padding-left: 16px;
}
.vk-plist-top-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.vk-plist-count {
    font-size: 12.5px;
    font-weight: 700;
    color: #0b1e13;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 6px 16px;
    border-radius: 50px;
    white-space: nowrap;
}
.vk-plist-sort-select {
    background: #fff;
    border: 1.5px solid #d1e5d1;
    color: #374151;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    cursor: pointer;
    outline: none;
    appearance: auto;
}
.vk-plist-sort-select:focus { border-color: #16a34a; }

/* ── Products section ── */
.vk-plist-section {
    background: #f4f8f4;
    padding: 52px 0 80px;
}

/* ── Pagination ── */
.vk-plist-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 52px;
    padding-top: 24px;
    border-top: 1px solid #dde8dd;
}
.vk-plist-pagi-info { font-size: 13px; color: #777; }
.vk-plist-pagination nav .pagination { margin: 0; gap: 4px; }
.vk-plist-pagination .page-link {
    border-radius: 8px !important;
    border-color: #d1e5d1;
    color: #16a34a;
    font-size: 13px;
    padding: 6px 12px;
}
.vk-plist-pagination .page-item.active .page-link {
    background: #16a34a;
    border-color: #16a34a;
    color: #fff;
}

/* ── Product Card ── */
.vk-pcard {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e4ede4;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 14px rgba(0,0,0,.05);
    transition: box-shadow .3s, transform .3s;
}
.vk-pcard:hover {
    box-shadow: 0 10px 44px rgba(11,30,19,.13);
    transform: translateY(-4px);
}
.vk-pcard--wholesale { border-color: #bbf7d0; }
.vk-pcard--wholesale:hover { box-shadow: 0 10px 44px rgba(22,163,74,.18); }

/* ── image area ── */
.vk-pcard-img-wrap {
    position: relative;
    overflow: hidden;
    background: #f1f6f1;
    height: 240px;
}
.vk-pcard-img-link { display: block; width: 100%; height: 100%; }
.vk-pcard-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}
.vk-pcard:hover .vk-pcard-img { transform: scale(1.07); }

/* gradient + type label at bottom of image */
.vk-pcard-img-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 30px 14px 11px;
    background: linear-gradient(to top, rgba(11,30,19,.68) 0%, transparent 100%);
    pointer-events: none;
}
.vk-pcard-type-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #fff;
    display: block;
}

/* badges */
.vk-pcard-badge {
    position: absolute;
    top: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .4px;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    z-index: 3;
    line-height: 1.4;
}
.vk-pcard-badge--discount { left: 12px; background: #ef4444; color: #fff; }
.vk-pcard-badge--wholesale { right: 12px; background: rgba(11,30,19,.88); color: #4ade80; backdrop-filter: blur(6px); }
.vk-pcard-badge--featured  { right: 12px; background: rgba(245,158,11,.92); color: #fff; }

/* hover icon buttons */
.vk-pcard-hover-btns {
    position: absolute;
    top: 12px; left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .25s, transform .25s;
    z-index: 4;
}
.vk-pcard:hover .vk-pcard-hover-btns { opacity: 1; transform: translateX(0); }
.vk-pcard-icon-btn {
    width: 34px; height: 34px;
    border-radius: 9px;
    background: rgba(255,255,255,.9);
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,.14);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    color: #374151;
    cursor: pointer;
    transition: background .2s, color .2s;
    backdrop-filter: blur(4px);
}
.vk-pcard-icon-btn:hover { background: #16a34a; color: #fff; }

/* card body */
.vk-pcard-body {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.vk-pcard-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 15.5px;
    font-weight: 800;
    color: #0b1e13;
    line-height: 1.35;
    text-decoration: none;
    margin-bottom: 7px;
}
.vk-pcard-name:hover { color: #16a34a; }
.vk-pcard-desc {
    font-size: 12.5px;
    color: #777;
    line-height: 1.65;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* wholesale extras */
.vk-pcard-specs {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 9px;
}
.vk-pcard-spec {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10.5px;
    font-weight: 600;
    color: #374151;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    padding: 3px 9px;
    border-radius: 5px;
}
.vk-pcard-moq {
    font-size: 11.5px;
    color: #6b7280;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f9fafb;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    padding: 5px 10px;
}
.vk-pcard-moq strong { color: #0b1e13; }

/* price */
.vk-pcard-price {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f0f4f0;
    margin-bottom: 14px;
}
.vk-pcard-price .h4 { font-size: 18px !important; font-weight: 900 !important; }
.vk-pcard-price .deleted, .vk-pcard-price del { color: #bbb !important; font-size: 13px !important; font-weight: 400 !important; }
.vk-pcard-price small { color: #888; font-size: 12px; }

/* action buttons */
.vk-pcard-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.vk-pcard-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12.5px;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    transition: all .2s;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}
.vk-pcard-btn--details {
    background: #f8faf8;
    color: #0b1e13 !important;
    border: 1.5px solid #c8dfc8;
}
.vk-pcard-btn--details:hover { background: #0b1e13; color: #4ade80 !important; border-color: #0b1e13; }
.vk-pcard-btn--inquire {
    background: #25d366;
    color: #fff !important;
    border: 1.5px solid #25d366;
}
.vk-pcard-btn--inquire:hover { background: #1ebe5d; transform: translateY(-1px); }
.vk-pcard-btn--cart {
    background: #0b1e13;
    color: #fff !important;
    border: 1.5px solid #0b1e13;
    flex: unset;
    width: 100%;
}
.vk-pcard-btn--cart:hover { background: #16a34a; border-color: #16a34a; }
.vk-pcard-btn--oos {
    background: #f3f4f6;
    color: #9ca3af !important;
    border: 1.5px solid #e5e7eb;
    cursor: not-allowed;
    flex: unset;
    width: 100%;
}
.vk-pcard-btn.w-100 { flex: unset; }

@media (max-width: 767px) {
    .vk-plist-header { padding: 28px 0 24px; }
    .vk-plist-header-inner { align-items: flex-start; }
    .vk-plist-heading { padding-left: 12px; }
    .vk-plist-subhead { padding-left: 12px; }
    .vk-pcard-img-wrap { height: 200px; }
    .vk-pcard-btn { font-size: 11.5px; padding: 9px 10px; }
}

/* bulk inquiry card button */
.vk-pcard-btn--bulk {
    background: linear-gradient(135deg, #0b1e13 0%, #16a34a 100%);
    color: #fff !important;
    border: none;
    font-size: 13.5px;
    letter-spacing: .3px;
    padding: 12px 18px;
    border-radius: 10px;
    flex: unset;
    width: 100%;
    box-shadow: 0 4px 14px rgba(22,163,74,.28);
    transition: opacity .2s, transform .2s;
}
.vk-pcard-btn--bulk:hover { opacity: .92; transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════════
   Product Detail Page  (vk-pd-*)
   ══════════════════════════════════════════════════════════ */

/* ── Breadcrumb bar ── */
.vk-pd-breadcrumb-bar {
    background: #f8fdf9;
    border-bottom: 1px solid #e7f5ed;
    padding: 12px 0;
}
.vk-pd-breadcrumb {
    --bs-breadcrumb-divider-color: #9ca3af;
    font-size: 12.5px;
}
.vk-pd-breadcrumb .breadcrumb-item a {
    color: #16a34a;
    text-decoration: none;
}
.vk-pd-breadcrumb .breadcrumb-item.active { color: #6b7280; }

/* ── Page sections ── */
.vk-pd-section {
    background: #fff;
    padding: 48px 0 36px;
}
.vk-pd-tabs-section {
    background: #f8fdf9;
    padding: 40px 0 48px;
    border-top: 1px solid #e7f5ed;
}

/* ── Two-col wrap ── */
.vk-pd-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 40px rgba(11,30,19,.07);
    background: #fff;
}

/* ── Gallery (left) ── */
.vk-pd-gallery {
    position: relative;
    background: #f8fdf9;
    height: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
}
.vk-pd-gallery-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #0b1e13, #16a34a);
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(11,30,19,.25);
}
.vk-pd-gallery-badge--gold {
    background: linear-gradient(135deg, #92400e, #f59e0b);
    box-shadow: 0 2px 10px rgba(245,158,11,.3);
}
.vk-pd-stock-dot {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 3;
    font-size: 11px;
    font-weight: 700;
    color: #16a34a;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.vk-pd-stock-dot .fa-circle { font-size: 7px; animation: vkPulse 1.6s ease infinite; }
@keyframes vkPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: .35; }
}

/* ── Info (right) ── */
.vk-pd-info {
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
}
@media (max-width: 991px) {
    .vk-pd-info { padding: 28px 24px 32px; }
    .vk-pd-gallery { min-height: 300px; }
}

/* ── Eyebrow / category tag ── */
.vk-pd-eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #16a34a;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    width: fit-content;
}

/* ── Product name + tagline ── */
.vk-pd-name {
    font-size: 28px;
    font-weight: 900;
    color: #0b1e13;
    line-height: 1.2;
    margin: 0 0 8px;
    letter-spacing: -.3px;
}
.vk-pd-tagline {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 16px;
    line-height: 1.5;
}
.vk-pd-divider {
    height: 1px;
    background: #f0f0f0;
    margin-bottom: 20px;
}

/* ── Meta row (Origin / MOQ / Delivery) ── */
.vk-pd-meta-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.vk-pd-meta-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.vk-pd-meta-label {
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9ca3af;
}
.vk-pd-meta-val {
    font-size: 13px;
    font-weight: 700;
    color: #1f2937;
}
.vk-pd-meta-green { color: #16a34a; }

/* ── FOB Price box ── */
.vk-pd-price-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1.5px solid #bbf7d0;
    border-radius: 14px;
    padding: 18px 20px 14px;
    margin-bottom: 22px;
}
.vk-pd-price-box-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.vk-pd-price-label {
    font-size: 9.5px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #16a34a;
}
.vk-pd-bulk-tag {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #fff;
    background: #16a34a;
    padding: 3px 9px;
    border-radius: 20px;
}
.vk-pd-price-display .regular-price,
.vk-pd-price-display .actual-pricing {
    font-size: 26px !important;
    font-weight: 900 !important;
    color: #0b1e13 !important;
}
.vk-pd-price-note {
    font-size: 11px;
    color: #9ca3af;
    font-style: italic;
    margin: 8px 0 0;
    line-height: 1.4;
}

/* ── Quality specs grid ── */
.vk-pd-quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
}
.vk-pd-quality-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.vk-pd-quality-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #9ca3af;
}
.vk-pd-quality-val {
    font-size: 18px;
    font-weight: 900;
    color: #0b1e13;
    line-height: 1;
}

/* ── Spec chips ── */
.vk-pd-specs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.vk-pd-spec {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    padding: 5px 11px;
    border-radius: 6px;
    white-space: nowrap;
}

/* ── CTA row ── */
.vk-pd-cta-row {
    display: flex;
    gap: 12px;
    align-items: stretch;
    margin-top: auto;
    padding-top: 4px;
}
.vk-pd-bulk-btn {
    flex: 1;
    background: linear-gradient(135deg, #0b1e13 0%, #16a34a 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    padding: 16px 20px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: .3px;
    box-shadow: 0 6px 24px rgba(22,163,74,.3);
    transition: opacity .2s, transform .2s;
}
.vk-pd-bulk-btn:hover { opacity: .93; transform: translateY(-2px); }
.vk-pd-wa-icon-btn {
    width: 54px;
    height: 54px;
    background: #25d366;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    flex-shrink: 0;
    align-self: stretch;
    min-height: 54px;
    transition: background .2s, transform .2s;
    box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.vk-pd-wa-icon-btn:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
}

/* ── Retail price + actions ── */
.vk-pd-retail-price { margin-bottom: 18px; }
.vk-pd-retail-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* ── Legacy / kept for compatibility ── */
.vk-pd-type-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #16a34a;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 4px 12px;
    border-radius: 5px;
    margin-bottom: 10px;
}
.vk-pd-moq {
    font-size: 12.5px;
    color: #6b7280;
    background: #f9fafb;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 8px 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.vk-pd-moq strong { color: #0b1e13; }

/* ── Bulk Inquiry Modal ── */
.vk-bi-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(6,18,11,.65);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.vk-bi-overlay.is-open { display: flex; }
.vk-bi-card {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 24px 80px rgba(0,0,0,.22);
    overflow: hidden;
    animation: vkBiSlideIn .28s ease;
}
@keyframes vkBiSlideIn {
    from { opacity: 0; transform: translateY(28px) scale(.97); }
    to   { opacity: 1; transform: translateY(0)    scale(1);   }
}
.vk-bi-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px 28px 20px;
    background: linear-gradient(135deg, #0b1e13 0%, #16a34a 100%);
    gap: 16px;
}
.vk-bi-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #4ade80;
    display: block;
    margin-bottom: 5px;
}
.vk-bi-title {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 4px;
}
.vk-bi-product-name {
    font-size: 13px;
    color: rgba(255,255,255,.7);
    margin: 0;
    font-style: italic;
}
.vk-bi-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    font-size: 22px;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .2s;
    line-height: 1;
}
.vk-bi-close:hover { background: rgba(255,255,255,.28); }
.vk-bi-form { padding: 24px 28px 28px; }
.vk-bi-product-strip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f0fdf4;
    border: 1.5px solid #bbf7d0;
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.vk-bi-product-strip-label {
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #16a34a;
    white-space: nowrap;
    flex-shrink: 0;
}
.vk-bi-product-strip-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #0b1e13;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.vk-bi-product-strip-link {
    font-size: 11px;
    font-weight: 600;
    color: #16a34a;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.vk-bi-product-strip-link:hover { color: #0b1e13; text-decoration: underline; }
.vk-bi-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.vk-bi-field { display: flex; flex-direction: column; }
.vk-bi-full  { margin-bottom: 14px; }
.vk-bi-label {
    font-size: 12px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 6px;
    letter-spacing: .3px;
}
.vk-bi-req { color: #ef4444; }
.vk-bi-input, .vk-bi-textarea {
    width: 100%;
    border: 1.5px solid #e5e7eb;
    border-radius: 9px;
    padding: 10px 13px;
    font-size: 13.5px;
    color: #111827;
    background: #fafafa;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    font-family: inherit;
}
.vk-bi-input:focus, .vk-bi-textarea:focus {
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22,163,74,.1);
    background: #fff;
}
.vk-bi-textarea { resize: vertical; min-height: 80px; }
.vk-bi-input-group {
    display: flex;
    gap: 0;
}
.vk-bi-input-group .vk-bi-input {
    border-radius: 9px 0 0 9px;
    border-right: none;
    flex: 1;
    min-width: 0;
}
.vk-bi-select-unit {
    border: 1.5px solid #e5e7eb;
    border-left: none;
    border-radius: 0 9px 9px 0;
    padding: 10px 10px;
    font-size: 13px;
    color: #374151;
    background: #f3f4f6;
    cursor: pointer;
    outline: none;
    flex-shrink: 0;
}
.vk-bi-select-unit:focus { border-color: #16a34a; outline: none; }
.vk-bi-footer {
    margin-top: 8px;
    padding-top: 18px;
    border-top: 1px solid #f0f0f0;
}
.vk-bi-wa-note {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.vk-bi-wa-note .fa-whatsapp { color: #25d366; font-size: 15px; }
.vk-bi-submit {
    width: 100%;
    background: #25d366;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    padding: 13px 20px;
    border: none;
    border-radius: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .2s, transform .2s;
    letter-spacing: .2px;
}
.vk-bi-submit:hover { background: #1ebe5d; transform: translateY(-1px); }
@media (max-width: 540px) {
    .vk-bi-row { grid-template-columns: 1fr; }
    .vk-bi-header, .vk-bi-form { padding-left: 20px; padding-right: 20px; }
    .vk-bi-card { border-radius: 16px; }
}

/* ============================================================
   VK About Us Page  (vk-ab-*)
   ============================================================ */

/* ── Hero ── */
.vk-ab-hero {
    position: relative;
    min-height: 480px;
    background: #0b1e13 url('/frontend/default/assets/img/about/about-hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 120px 0 80px;
}
.vk-ab-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(11,30,19,.92) 0%, rgba(22,163,74,.35) 100%);
}
.vk-ab-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #4ade80;
    background: rgba(74,222,128,.1);
    border: 1px solid rgba(74,222,128,.25);
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.vk-ab-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 18px;
}
.vk-ab-hero-accent { color: #4ade80; }
.vk-ab-hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,.75);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Stats Bar ── */
.vk-ab-stats-bar {
    background: #16a34a;
    padding: 20px 0;
}
.vk-ab-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}
.vk-ab-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 10px;
    border-right: 1px solid rgba(255,255,255,.2);
}
.vk-ab-stat:last-child { border-right: none; }
.vk-ab-stat-num {
    font-size: 1.7rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.vk-ab-stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,.8);
    margin-top: 4px;
    text-align: center;
}

/* ── Generic Section ── */
.vk-ab-section { padding: 80px 0; }
.vk-ab-section--light { background: #f8faf8; }
.vk-ab-section--dark  { background: #0b1e13; }
.vk-ab-center-header { text-align: center; margin-bottom: 12px; }
.vk-ab-section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #16a34a;
    background: rgba(22,163,74,.08);
    border: 1px solid rgba(22,163,74,.2);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.vk-ab-section-heading {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.15;
    color: #0b1e13;
    margin-bottom: 12px;
}
.vk-ab-section-sub {
    font-size: 15px;
    color: #555;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}
.vk-ab-green { color: #16a34a !important; }
.vk-ab-body-text { font-size: 15px; color: #444; line-height: 1.8; margin-bottom: 14px; }

/* ── Who We Are Image Frame ── */
.vk-ab-img-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
}
.vk-ab-img-frame img { width: 100%; height: auto; display: block; }
.vk-ab-img-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #16a34a;
    color: #fff;
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    box-shadow: 0 4px 20px rgba(22,163,74,.4);
}
.vk-ab-img-badge i { font-size: 1.4rem; }

/* ── Pills & Certs ── */
.vk-ab-pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.vk-ab-pill {
    font-size: 12px;
    font-weight: 600;
    color: #16a34a;
    background: rgba(22,163,74,.08);
    border: 1px solid rgba(22,163,74,.2);
    border-radius: 50px;
    padding: 4px 14px;
}
.vk-ab-cert-row { display: flex; flex-wrap: wrap; gap: 8px; }
.vk-ab-cert-badge {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: #0b1e13;
    border-radius: 8px;
    padding: 6px 14px;
}

/* ── Mission / Vision Cards ── */
.vk-ab-mv-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 36px 32px;
    height: 100%;
}
.vk-ab-mv-card--accent {
    background: rgba(74,222,128,.06);
    border-color: rgba(74,222,128,.2);
}
.vk-ab-mv-icon {
    width: 56px; height: 56px;
    background: rgba(74,222,128,.15);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: #4ade80;
    margin-bottom: 18px;
}
.vk-ab-mv-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}
.vk-ab-mv-text { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.8; margin-bottom: 16px; }
.vk-ab-mv-bullets { list-style: none; padding: 0; margin: 0; }
.vk-ab-mv-bullets li {
    font-size: 13px;
    color: rgba(255,255,255,.75);
    padding: 6px 0 6px 22px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.vk-ab-mv-bullets li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: 700;
}

/* ── Service Cards ── */
.vk-ab-service-card {
    background: #fff;
    border: 1px solid #e8f0e8;
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    position: relative;
    transition: box-shadow .25s, transform .25s;
}
.vk-ab-service-card:hover {
    box-shadow: 0 12px 40px rgba(22,163,74,.12);
    transform: translateY(-4px);
}
.vk-ab-service-num {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(22,163,74,.08);
    line-height: 1;
}
.vk-ab-service-icon {
    width: 52px; height: 52px;
    background: #f0faf3;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: #16a34a;
    margin-bottom: 16px;
}
.vk-ab-service-title { font-size: 1.1rem; font-weight: 800; color: #0b1e13; margin-bottom: 10px; }
.vk-ab-service-desc  { font-size: 13.5px; color: #555; line-height: 1.7; margin: 0; }

/* ── Brand CTA Section ── */
.vk-ab-brand-cta {
    position: relative;
    background: #0f2d1a url('/frontend/default/assets/img/about/brand-cta-bg.jpg') center/cover no-repeat;
    padding: 80px 0;
}
.vk-ab-brand-cta-overlay {
    position: absolute; inset: 0;
    background: rgba(11,30,19,.88);
}
.vk-ab-brand-list {
    list-style: none;
    padding: 0; margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vk-ab-brand-list li {
    font-size: 14px;
    color: rgba(255,255,255,.85);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.vk-ab-brand-list li i { color: #4ade80; margin-top: 2px; flex-shrink: 0; }

/* ── Ambition Cards ── */
.vk-ab-ambition-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    transition: border-color .25s, background .25s;
}
.vk-ab-ambition-card:hover {
    border-color: rgba(74,222,128,.3);
    background: rgba(74,222,128,.05);
}
.vk-ab-ambition-icon {
    width: 48px; height: 48px;
    background: rgba(74,222,128,.12);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: #4ade80;
    margin-bottom: 14px;
}
.vk-ab-ambition-num {
    font-size: 2rem;
    font-weight: 900;
    color: #4ade80;
    line-height: 1;
    margin-bottom: 6px;
}
.vk-ab-ambition-label { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.vk-ab-ambition-desc  { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.7; margin: 0; }

/* ── Trust Cards ── */
.vk-ab-trust-card {
    background: #fff;
    border: 1px solid #e8f0e8;
    border-radius: 14px;
    padding: 24px 22px;
    height: 100%;
    transition: box-shadow .25s, transform .25s;
}
.vk-ab-trust-card:hover {
    box-shadow: 0 8px 30px rgba(22,163,74,.1);
    transform: translateY(-3px);
}
.vk-ab-trust-icon {
    width: 48px; height: 48px;
    background: #f0faf3;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: #16a34a;
    margin-bottom: 14px;
}
.vk-ab-trust-title { font-size: 15px; font-weight: 700; color: #0b1e13; margin-bottom: 8px; }
.vk-ab-trust-desc  { font-size: 13px; color: #555; line-height: 1.7; margin: 0; }

/* ── FAQ ── */
.vk-ab-faq-list { display: flex; flex-direction: column; gap: 1px; }
.vk-ab-faq-item {
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    margin-bottom: 8px;
    overflow: hidden;
    background: rgba(255,255,255,.04);
}
.vk-ab-faq-item--open {
    border-color: rgba(74,222,128,.3);
    background: rgba(74,222,128,.05);
}
.vk-ab-faq-q {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    padding: 18px 22px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    line-height: 1.4;
}
.vk-ab-faq-q:hover { color: #4ade80; }
.vk-ab-faq-chevron {
    flex-shrink: 0;
    font-size: 12px;
    color: #4ade80;
    transition: transform .25s;
}
.vk-ab-faq-item--open .vk-ab-faq-chevron { transform: rotate(180deg); }
.vk-ab-faq-a { padding: 0 22px 18px; }
.vk-ab-faq-a p { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.8; margin: 0; }

/* ── Buttons ── */
.vk-ab-btn-solid {
    display: inline-flex; align-items: center;
    background: #16a34a;
    color: #fff !important;
    font-weight: 700; font-size: 14px;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: background .2s, transform .2s;
}
.vk-ab-btn-solid:hover { background: #15803d; transform: translateY(-2px); }
.vk-ab-btn-large { padding: 16px 36px; font-size: 16px; }
.vk-ab-btn-outline {
    display: inline-flex; align-items: center;
    background: transparent;
    color: #fff !important;
    font-weight: 700; font-size: 14px;
    padding: 13px 28px;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,.4);
    text-decoration: none !important;
    transition: border-color .2s, background .2s;
}
.vk-ab-btn-outline:hover { border-color: #4ade80; background: rgba(74,222,128,.08); }
.vk-ab-btn-wa {
    display: inline-flex; align-items: center;
    background: #25d366;
    color: #fff !important;
    font-weight: 700; font-size: 14px;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: background .2s;
}
.vk-ab-btn-wa:hover { background: #1ebe5d; }

/* ── Bottom CTA box ── */
.vk-ab-bottom-cta {
    text-align: center;
    padding: 60px 40px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #d1fae5;
    box-shadow: 0 4px 30px rgba(22,163,74,.08);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .vk-ab-stats-grid { grid-template-columns: repeat(3, 1fr); }
    .vk-ab-stat:nth-child(3) { border-right: none; }
}
@media (max-width: 767px) {
    .vk-ab-hero { padding: 100px 0 60px; min-height: 380px; }
    .vk-ab-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .vk-ab-stat:nth-child(2) { border-right: none; }
    .vk-ab-stat:nth-child(3) { border-right: 1px solid rgba(255,255,255,.2); }
    .vk-ab-section { padding: 56px 0; }
    .vk-ab-bottom-cta { padding: 36px 20px; }
}
@media (max-width: 480px) {
    .vk-ab-stats-grid { grid-template-columns: 1fr; }
    .vk-ab-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
    .vk-ab-stat:last-child { border-bottom: none; }
}

/* ============================================================
   VK WhatsApp Float Widget  (vk-wa-*)
   ============================================================ */

/* -- Outer wrapper -- */
.vk-wa-wrap {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 60px;
    height: 60px;
}

/* -- Float button (green circle) -- */
.vk-wa-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    border: none;
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37,211,102,.45);
    transition: transform .25s ease, box-shadow .25s ease;
    outline: 3px solid rgba(37,211,102,.25);
    outline-offset: 3px;
    position: relative;
    z-index: 2;
}
.vk-wa-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(37,211,102,.55);
}

/* -- Popup card -- */
.vk-wa-card {
    position: absolute;
    bottom: 74px;
    right: 0;
    background: #fff;
    border-radius: 16px;
    width: 300px;
    box-shadow: 0 8px 40px rgba(0,0,0,.16);
    overflow: hidden;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    /* hidden by default */
    opacity: 0;
    transform: translateY(12px) scale(.97);
    pointer-events: none;
    transition: opacity .28s ease, transform .28s ease;
    transform-origin: bottom right;
}
.vk-wa-card.vk-wa-card--open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* -- Card head (greeting) -- */
.vk-wa-card-head {
    background: #f4f9f5;
    padding: 16px 18px 12px;
    border-bottom: 1px solid #e8ede9;
    position: relative;
}
.vk-wa-greeting {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #16a34a;
    margin: 0 0 4px;
    line-height: 1.3;
}
/* period variants */
.vk-wa-greeting[data-period="afternoon"] { color: #d97706; }
.vk-wa-greeting[data-period="evening"]   { color: #7c3aed; }
.vk-wa-greeting[data-period="night"]     { color: #1e40af; }

.vk-wa-sub {
    font-size: 16px;
    font-weight: 800;
    color: #0b1e13;
    margin: 0;
}
.vk-wa-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 20px;
    line-height: 1;
    color: #9ca3af;
    cursor: pointer;
    padding: 0 4px;
    transition: color .2s;
}
.vk-wa-close:hover { color: #374151; }

/* -- Form -- */
.vk-wa-form-wrap { padding: 16px 18px 18px; }
.vk-wa-field { margin-bottom: 12px; }
.vk-wa-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 5px;
}
.vk-wa-field label span { color: #ef4444; }
.vk-wa-field input,
.vk-wa-field textarea {
    width: 100%;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    color: #1f2937;
    outline: none;
    background: #fafafa;
    resize: none;
    transition: border-color .2s;
    font-family: inherit;
}
.vk-wa-field input:focus,
.vk-wa-field textarea:focus {
    border-color: #25d366;
    background: #fff;
}
.vk-wa-submit {
    width: 100%;
    background: #25d366;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 11px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background .22s, transform .18s;
    margin-top: 4px;
}
.vk-wa-submit:hover {
    background: #1ebe5d;
    transform: translateY(-1px);
}

/* -- Mobile: hide float WA button (WA is in the bottom bar instead) -- */
@media (max-width: 767px) {
    .vk-wa-wrap { display: none !important; }
}
@media (max-width: 480px) {
    .vk-wa-card  { width: calc(100vw - 32px); }
}

/* ============================================================
   VK Mobile Bottom Bar  (vk-mobile-bar)
   ============================================================ */
.vk-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    display: flex;
    gap: 0;
    box-shadow: 0 -2px 16px rgba(0,0,0,.14);
}
.vk-mobile-bar-btn {
    flex: 1;
    background: #e07b2e;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    padding: 15px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: .2px;
    border-right: 1px solid rgba(255,255,255,.2);
    transition: background .2s;
}
.vk-mobile-bar-btn:last-child { border-right: none; }
.vk-mobile-bar-btn:hover, .vk-mobile-bar-btn:focus {
    background: #c96d22;
    color: #fff;
    text-decoration: none;
}
/* push page content up so it's not hidden behind the bar */
.vk-mobile-bar-placeholder {
    height: 54px;
}
/* keep scroll-to-top above the bar */
@media (max-width: 767px) {
    .scroll-top-btn        { right: 14px !important; bottom: 0 !important; }
    .scroll-top-btn.active { bottom: 64px !important; right: 14px !important; }
}

/* ============================================================
   VK Footer  (vk-footer-*)
   ============================================================ */

/* -- Shell -- */
.vk-footer {
    background: #0b1e13;
    color: rgba(255,255,255,.82);
    font-size: 14px;
}

/* -- Main grid: 5 columns -- */
.vk-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
    gap: 48px 36px;
    padding: 64px 0 52px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

/* -- Col heading -- */
.vk-footer-col-heading {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: .3px;
}

/* -- Brand col -- */
.vk-footer-logo-link { display: inline-block; margin-bottom: 18px; }
.vk-footer-logo { max-height: 70px; width: auto; }
.vk-footer-tagline {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255,255,255,.7);
    margin-bottom: 22px;
    max-width: 280px;
}

/* -- Social icons -- */
.vk-footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.vk-footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.8);
    font-size: 14px;
    text-decoration: none;
    transition: background .22s, border-color .22s, color .22s;
}
.vk-footer-social-btn:hover {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.6);
    color: #fff;
    text-decoration: none;
}

/* -- Nav links -- */
.vk-footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vk-footer-nav a {
    color: rgba(255,255,255,.72);
    text-decoration: none;
    font-size: 14px;
    transition: color .2s, padding-left .2s;
    display: inline-block;
}
.vk-footer-nav a:hover {
    color: #fff;
    padding-left: 4px;
    text-decoration: none;
}

/* -- Contact list -- */
.vk-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.vk-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255,255,255,.75);
}
.vk-footer-contact-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #a7f3c4;
    margin-top: 1px;
}
.vk-footer-contact-list strong {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    display: block;
    margin-bottom: 2px;
}
.vk-footer-contact-list a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    transition: color .2s;
}
.vk-footer-contact-list a:hover { color: #fff; text-decoration: none; }

/* -- Bottom bar -- */
.vk-footer-bottom {
    padding: 18px 0;
}
.vk-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.vk-footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,.6);
    margin: 0;
}
.vk-footer-copyright a, .vk-footer-copyright strong {
    color: rgba(255,255,255,.9);
    font-weight: 700;
}
.vk-footer-payments { display: flex; align-items: center; gap: 8px; }
.vk-footer-payment-img { max-height: 28px; width: auto; }
.vk-footer-pay-badge {
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: .4px;
    border: 1px solid rgba(255,255,255,.2);
}

/* -- Responsive -- */
@media (max-width: 1199px) {
    .vk-footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px 28px;
    }
}
@media (max-width: 767px) {
    .vk-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 20px;
        padding: 48px 0 36px;
    }
    .vk-footer-brand { grid-column: 1 / -1; }
    .vk-footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 480px) {
    .vk-footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   VK Reviews / Feedback Section  (vk-reviews-* / vk-review-*)
   ============================================================ */

/* -- Section shell -- */
.vk-reviews-section {
    background: #f0efeb;
    padding: 90px 0 80px;
}

/* -- Main heading -- */
.vk-reviews-main-heading {
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 800;
    color: #0b1e13;
    text-align: center;
    margin-bottom: 56px;
    line-height: 1.15;
}
.vk-reviews-heading-accent { color: #16a34a; }

/* -- Two-column layout: rating panel (fixed left) + slider (flex right) -- */
.vk-reviews-layout {
    display: flex;
    align-items: center;
    gap: 48px;
}

/* -- LEFT: Google rating summary panel -- */
.vk-reviews-rating-panel {
    min-width: 200px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}
.vk-reviews-excellent {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #0b1e13;
    margin: 0;
}
.vk-reviews-big-stars {
    font-size: 28px;
    color: #f59e0b;
    letter-spacing: 2px;
    line-height: 1;
}
.vk-reviews-based {
    font-size: 13.5px;
    color: #5a6b60;
    margin: 0;
}
.vk-reviews-based strong { color: #0b1e13; }
.vk-reviews-google-logo {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
    font-family: 'Product Sans', Arial, sans-serif;
}

/* -- RIGHT: Swiper wrapper -- */
.vk-reviews-slider-wrap {
    flex: 1;
    min-width: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}
.vk-reviews-swiper {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

/* -- Arrow buttons -- */
.vk-reviews-arrow {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    border: 1.5px solid #d1d5db;
    background: #fff;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: border-color .2s, color .2s, background .2s;
    flex-shrink: 0;
}
.vk-reviews-arrow:hover {
    border-color: #16a34a;
    color: #16a34a;
    background: #fff;
}
.vk-reviews-arrow:focus { outline: none; }

/* -- Individual review card -- */
.vk-review-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e8ece8;
    padding: 20px 20px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

/* Card top row: avatar + name/ago + G icon */
.vk-review-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
}
.vk-review-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0;
}
.vk-review-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.vk-review-name {
    font-size: 13px;
    font-weight: 700;
    color: #0b1e13;
    letter-spacing: .3px;
}
.vk-review-ago {
    font-size: 12px;
    color: #9ca3af;
}
.vk-review-g { opacity: .85; }

/* Stars row */
.vk-review-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 13px;
    color: #f59e0b;
}
.vk-review-verified {
    color: #3b82f6;
    font-size: 12px;
}

/* Review text */
.vk-review-text {
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.65;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* -- Responsive -- */
@media (max-width: 991px) {
    .vk-reviews-layout {
        flex-direction: column;
        gap: 36px;
    }
    .vk-reviews-rating-panel {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px 28px;
        min-width: 0;
        width: 100%;
    }
    .vk-reviews-slider-wrap { width: 100%; }
}
@media (max-width: 575px) {
    .vk-reviews-section { padding: 60px 0 55px; }
    .vk-reviews-main-heading { margin-bottom: 36px; }
    .vk-reviews-rating-panel { flex-direction: column; }
    .vk-reviews-arrow { width: 34px; height: 34px; min-width: 34px; font-size: 12px; }
}

/* ============================================================
   VK Trending Products Section  (vk-trend-*)
   ============================================================ */

/* -- Section shell -- */
.vk-trend-section {
    background: #f4f8f4;
    padding: 90px 0 80px;
}

/* -- Decorative blobs -- */
.vk-trend-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: .55;
}
.vk-trend-blob--tl {
    width: 380px; height: 380px;
    background: rgba(74,222,128,.18);
    top: -80px; left: -100px;
}
.vk-trend-blob--br {
    width: 320px; height: 320px;
    background: rgba(251,191,36,.12);
    bottom: -60px; right: -80px;
}

/* -- Section header -- */
.vk-trend-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px;
}
.vk-trend-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #16a34a;
    border: 1px solid rgba(22,163,74,.35);
    border-radius: 30px;
    padding: 5px 18px;
    margin-bottom: 16px;
}
.vk-trend-heading {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    color: #0b3d1f;
    line-height: 1.2;
    margin-bottom: 14px;
}
.vk-trend-accent {
    color: #f59e0b;
}
.vk-trend-subtext {
    font-size: 15px;
    color: #5a6b60;
    line-height: 1.7;
    margin: 0;
}

/* -- Card -- */
.vk-trend-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(11,61,31,.08);
    border: 1px solid rgba(22,163,74,.1);
    transition: transform .28s ease, box-shadow .28s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.vk-trend-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(11,61,31,.14);
}

/* -- Image wrapper -- */
.vk-trend-img-wrap {
    position: relative;
    overflow: hidden;
    height: 260px;
}
.vk-trend-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}
.vk-trend-card:hover .vk-trend-img {
    transform: scale(1.05);
}

/* -- Badges -- */
.vk-trend-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #f59e0b;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.vk-trend-discount {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 6px;
}

/* -- Card body -- */
.vk-trend-body {
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Name */
.vk-trend-name {
    font-size: 16px;
    font-weight: 700;
    color: #0b3d1f;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.45;
    margin-bottom: 8px;
    transition: color .2s;
}
.vk-trend-name:hover { color: #16a34a; text-decoration: none; }

/* Stars */
.vk-trend-stars {
    color: #f59e0b;
    font-size: 12px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Description */
.vk-trend-desc {
    font-size: 13.5px;
    color: #5a6b60;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 14px;
    flex: 1;
}

/* Origin / stock meta row */
.vk-trend-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    color: #8a9e90;
    border-top: 1px solid #eef2ee;
    padding-top: 12px;
    margin-bottom: 14px;
}
.vk-trend-instock {
    color: #16a34a;
    font-weight: 600;
}
.vk-trend-outstock {
    color: #ef4444;
    font-weight: 600;
}
.vk-trend-origin { font-size: 12px; }

/* Price + CTA footer */
.vk-trend-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.vk-trend-price {
    font-size: 20px;
    font-weight: 800;
    color: #0b3d1f;
    line-height: 1;
}
/* override pricing partial styles inside this context */
.vk-trend-price .price,
.vk-trend-price span { color: #0b3d1f !important; font-size: inherit !important; font-weight: inherit !important; }
.vk-trend-price del { color: #aaa !important; font-size: 13px !important; font-weight: 400 !important; }

.vk-trend-btn {
    display: inline-flex;
    align-items: center;
    background: #f59e0b;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .25s, transform .2s;
}
.vk-trend-btn:hover {
    background: #d97706;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

/* -- View all strip -- */
.vk-trend-view-all {
    text-align: center;
    margin-top: 44px;
}
.vk-trend-view-btn {
    display: inline-flex;
    align-items: center;
    border: 2px solid #0b3d1f;
    color: #0b3d1f;
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: .3px;
    transition: background .25s, color .25s, transform .2s;
}
.vk-trend-view-btn:hover {
    background: #0b3d1f;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* -- Responsive -- */
@media (max-width: 767px) {
    .vk-trend-section { padding: 60px 0 55px; }
    .vk-trend-img-wrap { height: 220px; }
    .vk-trend-body { padding: 18px; }
    .vk-trend-meta { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* ============================================================
   VK Processing System Section  (vk-process-*)
   ============================================================ */

/* -- Section shell -- */
.vk-process-section {
    background: #0d1d11;
    padding: 90px 0 70px;
}

/* -- Subtle bg watermark arc -- */
.vk-process-bg-deco {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 10% 20%, rgba(74,222,128,.05) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(96,165,250,.04) 0%, transparent 70%);
    pointer-events: none;
}

/* -- Header block -- */
.vk-process-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}
.vk-process-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #4ade80;
    border: 1px solid rgba(74,222,128,.35);
    border-radius: 30px;
    padding: 5px 18px;
    margin-bottom: 18px;
}
.vk-process-heading {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: #f1f5f2;
    line-height: 1.2;
    margin-bottom: 16px;
}
.vk-process-accent {
    color: #4ade80;
}
.vk-process-subtext {
    font-size: 15px;
    color: rgba(241,245,242,.6);
    line-height: 1.7;
    margin: 0;
}

/* -- 4-column grid (wraps to 2 on tablet, 1 on mobile) -- */
.vk-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

/* -- Individual card -- */
.vk-process-card {
    padding: 0 8px 40px;
    position: relative;
}

/* -- Top part: number + icon ring + connecting line -- */
.vk-process-card-inner {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
    position: relative;
}

/* Ghost step number */
.vk-process-step-num {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    color: rgba(74,222,128,.18);
    min-width: 52px;
    font-family: 'Georgia', serif;
    user-select: none;
}

/* Icon ring */
.vk-process-icon-ring {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: rgba(74,222,128,.12);
    border: 2px solid rgba(74,222,128,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #4ade80;
    position: relative;
    z-index: 1;
    transition: background .3s, border-color .3s;
}
.vk-process-icon-ring--final {
    background: rgba(74,222,128,.22);
    border-color: #4ade80;
}
.vk-process-card:hover .vk-process-icon-ring {
    background: rgba(74,222,128,.25);
    border-color: #4ade80;
}

/* Horizontal connecting line — hidden on last card in each row */
.vk-process-connector {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(74,222,128,.45), rgba(74,222,128,.05));
    margin-left: 8px;
}
/* Last card of every 4-column row has no connector */
.vk-process-card:nth-child(4n) .vk-process-connector,
.vk-process-card--last .vk-process-connector {
    display: none;
}

/* -- Card body: title + desc -- */
.vk-process-card-body {
    padding-left: 4px;
}
.vk-process-title {
    font-size: 15px;
    font-weight: 700;
    color: #e8f5ec;
    margin-bottom: 8px;
    letter-spacing: .2px;
}
.vk-process-desc {
    font-size: 13px;
    color: rgba(232,245,236,.55);
    line-height: 1.65;
    margin: 0;
}

/* -- Bottom CTA strip -- */
.vk-process-cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    padding: 22px 32px;
    border: 1px solid rgba(74,222,128,.2);
    border-radius: 12px;
    background: rgba(74,222,128,.04);
    color: rgba(241,245,242,.7);
    font-size: 14px;
    gap: 16px;
    flex-wrap: wrap;
}
.vk-process-cta {
    display: inline-flex;
    align-items: center;
    background: #4ade80;
    color: #0d1d11;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .25s, transform .2s;
}
.vk-process-cta:hover {
    background: #22c55e;
    color: #0d1d11;
    transform: translateX(3px);
    text-decoration: none;
}

/* -- Responsive -- */
@media (max-width: 991px) {
    .vk-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* hide connector on 2nd column of every row */
    .vk-process-card:nth-child(2n) .vk-process-connector {
        display: none;
    }
    /* re-show connector that was hidden only because of 4n rule */
    .vk-process-card:nth-child(4n) .vk-process-connector {
        display: none;
    }
}
@media (max-width: 575px) {
    .vk-process-section { padding: 60px 0 50px; }
    .vk-process-grid {
        grid-template-columns: 1fr;
    }
    .vk-process-card-inner { flex-wrap: nowrap; }
    .vk-process-connector { display: none !important; }
    .vk-process-card { padding-bottom: 32px; }
    .vk-process-step-num { font-size: 38px; min-width: 44px; }
    .vk-process-cta-strip {
        flex-direction: column;
        text-align: center;
        padding: 18px 20px;
    }
}

/* ============================================================
   Original custom.css — kept below
   ============================================================ */
.h-60px {
    height: 60px;
}
.h-80px {
    height: 80px;
}
.h-100px {
    height: 100px;
}
.h-400px {
    height: 400px;
}
.header-icon {
    position: relative;
}
.cart-counter {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 11px;
}

/* Redesigned Navbar Layout */
.gshop-navbar {
    overflow: visible;
}
.navbar-logo-wrap {
    max-width: 140px;
}
.navbar-logo-wrap .logo img {
    max-height: 50px;
    width: auto;
}
.navbar-center-menu {
    gap: 8px;
}
.navbar-center-menu .gshop-navmenu ul {
    gap: 0;
}
.navbar-right-icons {
    gap: 4px;
}
.navbar-right-icons .gshop-header-icons {
    gap: 12px;
}
.navbar-right-icons .gshop-header-cart {
    padding-right: 4px;
}
.navbar-toggler-btn {
    background: none;
    border: none;
    padding: 6px;
    color: #5D6374;
}
@media (max-width: 575.98px) {
    .navbar-logo-wrap {
        max-width: 100px;
    }
}
.label-input-field input,
.label-input-field textarea,
.label-input-field select {
    width: 100%;
    padding: 16px 24px;
    border-radius: 4px;
    border: 1px solid #e4e4e4;
    outline: 0;
}
.label-input-field label {
    z-index: 1;
}

/* select 2 css */
.select2-container {
    width: auto;
    display: block;
    padding: 14px 24px;
    border-radius: 4px;
    border: 1px solid #e4e4e4;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 60px;
    right: 10px;
}
.select2-dropdown {
    top: -4px;
    border-color: #e4e4e4;
}
.select2-container--open .select2-dropdown {
    left: -1px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0;
}
.select2-container--default .select2-selection--single {
    border: none;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border-color: #e4e4e4;
}

/* toastr */

#toast-container {
    z-index: 999999;
}

#toast-container > div {
    padding: 15px 25px 15px 50px !important;
    opacity: 1;
    margin-bottom: 1.25rem;
    border-color: transparent;
    -webkit-box-shadow: 0 0.25rem 0.5625rem -0.0625rem rgba(0, 0, 0, 0.2),
        0 0.275rem 1.25rem -0.0625rem rgba(249, 250, 251, 0.05) !important;
    box-shadow: 0 0.25rem 0.5625rem -0.0625rem rgba(0, 0, 0, 0.2),
        0 0.275rem 1.25rem -0.0625rem rgba(249, 250, 251, 0.05) !important;
    border-radius: 0.3125rem;
}

[dir="rtl"] #toast-container > div {
    direction: rtl;
    background-position: center right 0.9375rem;
    padding: 15px 50px 15px 25px !important;
}

[dir="rtl"] #toast-container.toast-top-left {
    right: 12px;
    left: auto;
}

[dir="rtl"] #toast-container.toast-top-right {
    left: 12px;
    right: auto;
}

[dir="rtl"] #toast-container.toast-bottom-left {
    right: 12px;
    left: auto;
}

[dir="rtl"] #toast-container.toast-bottom-right {
    left: 12px;
    right: auto;
}

[dir="rtl"] #toast-container.toast-top-full-width#toast-container > div,
[dir="rtl"] #toast-container.toast-bottom-full-width#toast-container > div {
    left: 0;
    right: 0;
}

#toast-container > .toast {
    max-width: 100%;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: 15px 16px;
    overflow: visible;
}

#toast-container.toast-bottom-full-width > div,
#toast-container.toast-top-full-width > div {
    padding: 15px 50px 15px 50px !important;
    width: 100%;
    margin-bottom: 0;
    border-radius: 0 !important;
}

#toast-container.toast-bottom-full-width > div .toast-close-button,
#toast-container.toast-top-full-width > div .toast-close-button {
    top: 12px !important;
}

html:not([dir="rtl"])
    #toast-container.toast-bottom-full-width
    > div
    .toast-close-button,
html:not([dir="rtl"])
    #toast-container.toast-top-full-width
    > div
    .toast-close-button {
    right: 12px !important;
}

[dir="rtl"] #toast-container.toast-bottom-full-width > div .toast-close-button,
[dir="rtl"] #toast-container.toast-top-full-width > div .toast-close-button {
    left: 12px !important;
}

#toast-container > .toast-info {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cpath fill='%2303c3ec' d='M256 90c44.3 0 86 17.3 117.4 48.6C404.7 170 422 211.7 422 256s-17.3 86-48.6 117.4C342 404.7 300.3 422 256 422s-86-17.3-117.4-48.6C107.3 342 90 300.3 90 256s17.3-86 48.6-117.4C170 107.3 211.7 90 256 90m0-42C141.1 48 48 141.1 48 256s93.1 208 208 208 208-93.1 208-208S370.9 48 256 48z'/%3E%3Cpath fill='%2303c3ec' d='M277 360h-42V235h42v125zm0-166h-42v-42h42v42z'/%3E%3C/svg%3E") !important;
}

#toast-container > .toast-info .toast-close-button {
    background-color: #0d5abf !important;
    -webkit-box-shadow: 0 0.125rem 0.3rem -0.0625rem rgba(0, 0, 0, 0.1),
        0 0.275rem 0.75rem -0.0625rem rgba(249, 250, 251, 0.06) !important;
    box-shadow: 0 0.125rem 0.3rem -0.0625rem rgba(0, 0, 0, 0.1),
        0 0.275rem 0.75rem -0.0625rem rgba(249, 250, 251, 0.06) !important;
}

#toast-container > .toast-error {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cpath fill='%23ff3e1d' d='M405 136.798L375.202 107 256 226.202 136.798 107 107 136.798 226.202 256 107 375.202 136.798 405 256 285.798 375.202 405 405 375.202 285.798 256z'/%3E%3C/svg%3E") !important;
}

#toast-container > .toast-error .toast-close-button {
    background-color: #e03a1d !important;
    -webkit-box-shadow: 0 0.125rem 0.3rem -0.0625rem rgba(0, 0, 0, 0.1),
        0 0.275rem 0.75rem -0.0625rem rgba(249, 250, 251, 0.06) !important;
    box-shadow: 0 0.125rem 0.3rem -0.0625rem rgba(0, 0, 0, 0.1),
        0 0.275rem 0.75rem -0.0625rem rgba(249, 250, 251, 0.06) !important;
}

#toast-container > .toast-success {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cpath fill='%2371dd37' d='M186.301 339.893L96 249.461l-32 30.507L186.301 402 448 140.506 416 110z'/%3E%3C/svg%3E") !important;
}

#toast-container > .toast-success .toast-close-button {
    background-color: #20b250 !important;
    -webkit-box-shadow: 0 0.125rem 0.3rem -0.0625rem rgba(0, 0, 0, 0.1),
        0 0.275rem 0.75rem -0.0625rem rgba(249, 250, 251, 0.06) !important;
    box-shadow: 0 0.125rem 0.3rem -0.0625rem rgba(0, 0, 0, 0.1),
        0 0.275rem 0.75rem -0.0625rem rgba(249, 250, 251, 0.06) !important;
}

#toast-container [dir="rtl"] > .toast-success {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cpath fill='%2371dd37' d='M96 110l-32 30.5L325.7 402L448 280l-32-30.5l-90.3 90.4L96 110z'/%3E%3C/svg%3E") !important;
}

#toast-container > .toast-warning {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cpath fill='%23ffab00' d='M32 464h448L256 48 32 464zm248-64h-48v-48h48v48zm0-80h-48v-96h48v96z'/%3E%3C/svg%3E") !important;
    background-size: 24px;
}

#toast-container > .toast-warning .toast-close-button {
    background-color: #fcac00 !important;
    -webkit-box-shadow: 0 0.125rem 0.3rem -0.0625rem rgba(0, 0, 0, 0.1),
        0 0.275rem 0.75rem -0.0625rem rgba(249, 250, 251, 0.06) !important;
    box-shadow: 0 0.125rem 0.3rem -0.0625rem rgba(0, 0, 0, 0.1),
        0 0.275rem 0.75rem -0.0625rem rgba(249, 250, 251, 0.06) !important;
}

#toast-container:not(.toast-bottom-full-width, .toast-top-full-width) > div {
    width: 25rem !important;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    top: auto;
    opacity: 0.2;
    height: 0.1875rem;
    background-color: #212b36;
    border-bottom-right-radius: 0.3125rem;
    border-bottom-left-radius: 0.3125rem;
}

[dir="rtl"] .toast-progress {
    left: auto;
    right: 0;
}

.toast-close-button {
    position: absolute;
    top: 0;
    text-shadow: none;
    border-top-right-radius: 0.25rem;
    padding: 0.2rem 0.45rem !important;
    -webkit-transition: all 0.23s ease 0.1s;
    transition: all 0.23s ease 0.1s;
    opacity: 1 !important;
    line-height: 0.98;
}

html:not([dir="rtl"]) .toast-close-button {
    right: 0 !important;
}

[dir="rtl"] .toast-close-button {
    left: -7px !important;
    right: auto !important;
}

@media (max-width: 419.98px) {
    .toast {
        width: 300px !important;
    }
}
#toast-container .toast-close-button {
    font-weight: 300;
    color: #f4f6f8 !important;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0.125rem 0.3rem -0.0625rem rgba(0, 0, 0, 0.1),
        0 0.275rem 0.75rem -0.0625rem rgba(249, 250, 251, 0.06);
    box-shadow: 0 0.125rem 0.3rem -0.0625rem rgba(0, 0, 0, 0.1),
        0 0.275rem 0.75rem -0.0625rem rgba(249, 250, 251, 0.06);
}

#toast-container > .toast-success,
#toast-container > .toast-success .toast-message a,
#toast-container > .toast-success .toast-message label {
    background-color: #ffffff !important;
    color: #20b250;
}
#toast-container > .toast-error,
#toast-container > .toast-error .toast-message a,
#toast-container > .toast-error .toast-message label {
    background-color: #ffffff !important;
    color: #e03a1d;
}
#toast-container > .toast-info,
#toast-container > .toast-info .toast-message a,
#toast-container > .toast-info .toast-message label {
    background-color: #ffffff !important;
    color: #0d5abf;
}
#toast-container > .toast-warning,
#toast-container > .toast-warning .toast-message a,
#toast-container > .toast-warning .toast-message label {
    background-color: #ffffff !important;
    color: #fcac00;
}
#toast-container > .toast-success .toast-close-button,
#toast-container > .toast-error .toast-close-button,
#toast-container > .toast-info .toast-close-button,
#toast-container > .toast-warning .toast-close-button {
    color: #ffffff !important;
}
/* toastr */

.address-delete-modal {
    max-width: 700px !important;
}

.min-h-400 {
    min-height: 400px !important;
}

.avatar-icon {
    width: 1.75rem;
    height: 1.75rem;
    line-height: 1.75rem;
}

.vertical-product-card .card-btn {
    z-index: 1;
}

@media (min-width: 1199px) and (max-width: 1399.98px) {
    .d-none-1399 {
        display: none !important;
    }
}

.checkout-sidebar {
    position: sticky;
    top: 100px;
}

.grecaptcha-badge {
    z-index: 99999;
    bottom: 140px !important;
}
.scroll-top-btn {
    right: 28px !important;
}
.scroll-top-btn.active {
    bottom: 100px !important;
    right: 28px !important;
}
@media (max-width: 480px) {
    .scroll-top-btn { right: 16px !important; }
    .scroll-top-btn.active { bottom: 90px !important; right: 16px !important; }
}
.object-fit-cover{
    object-fit: cover;
}

[data-bs-theme=light] .clr-scheme .topbar-info-right li a:not(.dropdown-menu a) {
    color: #fff !important
}
.topbar-info-right {
    gap: 30px;
}
.topbar-info-right li::before{
    left: -16px !important;
}

/* Notification Ticker */
.topbar-notification-ticker {
    overflow: hidden;
    padding: 8px 0;
}
.ticker-wrapper {
    position: relative;
    height: 22px;
    overflow: hidden;
}
.ticker-track {
    position: relative;
    height: 100%;
    width: 100%;
}
.ticker-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    white-space: nowrap;
    line-height: 22px;
}

.pagination li .page-link {
    min-width: auto;
    height: auto;
    padding: 4px 12px !important;
}
.tt-custom-pagination{
    flex-wrap: nowrap;
    overflow-x: auto;
}

/* ══════════════════════════════════════════════════════════
   White Label Page  (vk-wl-*)
   ══════════════════════════════════════════════════════════ */

/* ── Hero ── */
.vk-wl-hero {
    position: relative;
    background: linear-gradient(160deg, #041a0c 0%, #0b3d1c 55%, #105c2a 100%);
    min-height: 520px;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 80px 0;
    overflow: hidden;
}
.vk-wl-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.vk-wl-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(22,163,74,.18) 0%, transparent 65%);
    pointer-events: none;
}
.vk-wl-eyebrow-hero {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #4ade80;
    background: rgba(74,222,128,.12);
    border: 1px solid rgba(74,222,128,.3);
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 22px;
}
.vk-wl-hero-title {
    font-size: clamp(34px, 6vw, 58px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 18px;
    letter-spacing: -1px;
}
.vk-wl-hero-accent { color: #4ade80; }
.vk-wl-hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,.75);
    max-width: 580px;
    margin: 0 auto 10px;
    line-height: 1.65;
}
.vk-wl-btn-solid {
    display: inline-flex;
    align-items: center;
    background: #16a34a;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: background .2s, transform .2s;
    box-shadow: 0 6px 20px rgba(22,163,74,.35);
}
.vk-wl-btn-solid:hover { background: #15803d; color: #fff; transform: translateY(-2px); }
.vk-wl-btn-wa {
    display: inline-flex;
    align-items: center;
    background: #25d366;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: background .2s, transform .2s;
    box-shadow: 0 6px 20px rgba(37,211,102,.3);
}
.vk-wl-btn-wa:hover { background: #1ebe5d; color: #fff; transform: translateY(-2px); }

/* ── Stats bar ── */
.vk-wl-stats-bar { background: #0b1e13; padding: 22px 0; }
.vk-wl-stats-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.vk-wl-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 32px;
    border-right: 1px solid rgba(255,255,255,.08);
}
.vk-wl-stat:last-child { border-right: none; }
.vk-wl-stat-num { font-size: 22px; font-weight: 900; color: #4ade80; line-height: 1.1; }
.vk-wl-stat-label { font-size: 11px; color: rgba(255,255,255,.55); margin-top: 3px; text-align: center; white-space: nowrap; }
@media (max-width: 767px) {
    .vk-wl-stat { padding: 8px 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); width: 50%; }
    .vk-wl-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.07); }
    .vk-wl-stat:last-child { width: 100%; border-right: none; }
}

/* ── Sections ── */
.vk-wl-section { padding: 72px 0; background: #fff; }
.vk-wl-section--light { background: #f8fdf9; }
.vk-wl-section--dark { background: linear-gradient(160deg, #041a0c 0%, #0b3d1c 100%); }
.vk-wl-section-eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #16a34a;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.vk-wl-section-eyebrow--light { color: #4ade80; background: rgba(74,222,128,.1); border-color: rgba(74,222,128,.25); }
.vk-wl-section-heading {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 900;
    color: #0b1e13;
    line-height: 1.2;
    margin: 0 0 12px;
}
.vk-wl-section-heading--light { color: #fff; }
.vk-wl-section-sub { font-size: 15px; color: #6b7280; max-width: 540px; margin: 0 auto; }
.vk-wl-green { color: #16a34a; }
.vk-wl-accent { color: #4ade80; }
.vk-wl-body-text { font-size: 15px; color: #374151; line-height: 1.7; margin-bottom: 14px; }

/* ── Image frame ── */
.vk-wl-img-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(11,30,19,.15);
}
.vk-wl-img-frame img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
.vk-wl-img-badge {
    position: absolute;
    bottom: 20px; right: 20px;
    background: linear-gradient(135deg, #0b1e13, #16a34a);
    color: #fff;
    padding: 10px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.vk-wl-img-badge .fa-certificate { font-size: 22px; color: #4ade80; }

/* ── Check list ── */
.vk-wl-check-list { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 10px; }
.vk-wl-check-list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; color: #1f2937; }
.vk-wl-check-list .fa-circle-check { color: #16a34a; font-size: 16px; flex-shrink: 0; }

/* ── How It Works ── */
.vk-wl-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}
.vk-wl-step { flex: 1; min-width: 200px; max-width: 240px; text-align: center; padding: 0 16px; }
.vk-wl-step-connector {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #bbf7d0, #16a34a);
    margin-top: 44px;
    flex-shrink: 0;
}
.vk-wl-step-num { font-size: 11px; font-weight: 900; letter-spacing: 2px; color: #16a34a; margin-bottom: 12px; }
.vk-wl-step-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid #bbf7d0;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #16a34a;
    margin-bottom: 16px;
}
.vk-wl-step-title { font-size: 15px; font-weight: 800; color: #0b1e13; margin-bottom: 8px; }
.vk-wl-step-desc { font-size: 13px; color: #6b7280; line-height: 1.6; }
@media (max-width: 767px) {
    .vk-wl-steps { flex-direction: column; align-items: center; }
    .vk-wl-step { max-width: 320px; }
    .vk-wl-step-connector { width: 2px; height: 32px; margin: 0 auto; background: linear-gradient(180deg, #bbf7d0, #16a34a); display: block; }
}

/* ── Offer cards ── */
.vk-wl-offer-card {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.vk-wl-offer-card:hover { border-color: #bbf7d0; box-shadow: 0 8px 32px rgba(22,163,74,.1); transform: translateY(-4px); }
.vk-wl-offer-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #16a34a;
    margin-bottom: 16px;
}
.vk-wl-offer-title { font-size: 16px; font-weight: 800; color: #0b1e13; margin-bottom: 8px; }
.vk-wl-offer-desc { font-size: 13.5px; color: #6b7280; line-height: 1.6; margin: 0; }

/* ── SKU grid ── */
.vk-wl-sku-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 991px) { .vk-wl-sku-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  { .vk-wl-sku-grid { grid-template-columns: 1fr; } }
.vk-wl-sku-card {
    position: relative;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px 22px;
    text-align: center;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.vk-wl-sku-card:hover { border-color: #bbf7d0; box-shadow: 0 8px 28px rgba(22,163,74,.1); transform: translateY(-3px); }
.vk-wl-sku-card--featured { border-color: #16a34a; box-shadow: 0 8px 32px rgba(22,163,74,.18); background: linear-gradient(160deg, #f0fdf4, #fff); }
.vk-wl-sku-badge {
    position: absolute;
    top: -10px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, #0b1e13, #16a34a);
    color: #fff;
    font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}
.vk-wl-sku-size { display: block; font-size: 38px; font-weight: 900; color: #0b1e13; line-height: 1; margin-bottom: 6px; }
.vk-wl-sku-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #16a34a; margin-bottom: 10px; }
.vk-wl-sku-note { font-size: 12.5px; color: #6b7280; line-height: 1.5; margin: 0; }

/* ── Why cards (dark bg) ── */
.vk-wl-why-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 28px 22px;
    height: 100%;
    text-align: center;
    transition: background .2s, border-color .2s;
}
.vk-wl-why-card:hover { background: rgba(255,255,255,.1); border-color: rgba(74,222,128,.3); }
.vk-wl-why-icon { font-size: 32px; color: #4ade80; margin-bottom: 16px; display: block; }
.vk-wl-why-title { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.vk-wl-why-desc { font-size: 13.5px; color: rgba(255,255,255,.65); line-height: 1.6; margin: 0; }

/* ── FAQ ── */
.vk-wl-faq-grid { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.vk-wl-faq-item { background: #fff; border: 1.5px solid #e5e7eb; border-radius: 12px; overflow: hidden; transition: border-color .2s; }
.vk-wl-faq-item.is-open { border-color: #16a34a; }
.vk-wl-faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 18px 20px;
    font-size: 14.5px;
    font-weight: 700;
    color: #0b1e13;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    line-height: 1.4;
}
.vk-wl-faq-q:hover { color: #16a34a; }
.vk-wl-faq-icon { flex-shrink: 0; font-size: 12px; color: #16a34a; transition: transform .3s; }
.vk-wl-faq-item.is-open .vk-wl-faq-icon { transform: rotate(180deg); }
.vk-wl-faq-a {
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.7;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .2s;
}
.vk-wl-faq-item.is-open .vk-wl-faq-a { padding: 0 20px 18px; }

/* ── CTA band ── */
.vk-wl-cta-band { background: linear-gradient(135deg, #0b1e13 0%, #16a34a 100%); padding: 64px 0; }
.vk-wl-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.vk-wl-cta-heading { font-size: clamp(22px, 3.5vw, 32px); font-weight: 900; color: #fff; margin: 0 0 8px; line-height: 1.2; }
.vk-wl-cta-sub { font-size: 15px; color: rgba(255,255,255,.75); margin: 0; }

/* ═══════════════════════════════════════════════════════════════════
   CONTACT US PAGE  — vk-cu-*
═══════════════════════════════════════════════════════════════════ */

/* Hero */
.vk-cu-hero {
    position: relative;
    background: linear-gradient(135deg, #0b1e13 0%, #163c22 50%, #0b1e13 100%);
    padding: 120px 0 80px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
}
.vk-cu-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(22,163,74,.18) 0%, transparent 50%),
                      radial-gradient(circle at 80% 30%, rgba(74,222,128,.10) 0%, transparent 45%);
}
.vk-cu-hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234ade80' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.vk-cu-hero-inner { position: relative; z-index: 2; }
.vk-cu-eyebrow {
    display: inline-block;
    background: rgba(74,222,128,.15);
    border: 1px solid rgba(74,222,128,.35);
    color: #4ade80;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.vk-cu-hero-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 18px;
}
.vk-cu-accent { color: #4ade80; }
.vk-cu-hero-sub {
    font-size: clamp(15px, 1.8vw, 17px);
    color: rgba(255,255,255,.72);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}
.vk-cu-breadcrumb { --bs-breadcrumb-divider-color: rgba(255,255,255,.4); }
.vk-cu-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.65); text-decoration: none; }
.vk-cu-breadcrumb .breadcrumb-item a:hover { color: #4ade80; }
.vk-cu-breadcrumb .breadcrumb-item.active { color: #4ade80; }

/* Quick-info cards strip */
.vk-cu-cards-strip {
    background: #f0faf4;
    padding: 56px 0;
    border-bottom: 1px solid #d1fae5;
}
.vk-cu-card {
    background: #fff;
    border: 1px solid #d1fae5;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform .25s, box-shadow .25s;
    height: 100%;
}
.vk-cu-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(22,163,74,.12); }
.vk-cu-card-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, #16a34a, #4ade80);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px; color: #fff;
}
.vk-cu-card-icon--wa { background: linear-gradient(135deg, #25d366, #128c7e); }
.vk-cu-card-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #6b7280; margin: 0 0 6px; }
.vk-cu-card-value { font-size: 14px; font-weight: 600; color: #0b1e13; text-decoration: none; display: block; line-height: 1.45; }
.vk-cu-card-value:hover { color: #16a34a; }

/* Main 2-col section */
.vk-cu-main { padding: 80px 0; background: #fff; }
.vk-cu-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 56px;
    align-items: start;
}

/* Info panel */
.vk-cu-panel-eyebrow {
    display: inline-block;
    font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: #16a34a; background: #f0faf4; border-radius: 50px;
    padding: 5px 14px; margin-bottom: 16px;
}
.vk-cu-panel-heading { font-size: clamp(22px, 2.8vw, 30px); font-weight: 900; color: #0b1e13; line-height: 1.25; margin: 0 0 12px; }
.vk-cu-panel-sub { font-size: 14px; color: #6b7280; line-height: 1.7; margin: 0 0 32px; }
.vk-cu-office { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.vk-cu-office-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    background: #f0faf4; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #16a34a; font-size: 16px;
    margin-top: 2px;
}
.vk-cu-office-title { font-size: 13px; font-weight: 700; color: #0b1e13; margin: 0 0 4px; }
.vk-cu-office-addr { font-size: 13px; color: #6b7280; line-height: 1.65; margin: 0; }
.vk-cu-contact-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 14px; }
.vk-cu-contact-row i { color: #16a34a; width: 18px; text-align: center; }
.vk-cu-contact-row a { color: #0b1e13; text-decoration: none; font-weight: 600; }
.vk-cu-contact-row a:hover { color: #16a34a; }
.vk-cu-social-row { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.vk-cu-social-btn {
    width: 40px; height: 40px;
    border: 1.5px solid #d1fae5;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #16a34a; font-size: 15px;
    text-decoration: none; transition: all .2s;
}
.vk-cu-social-btn:hover { background: #16a34a; border-color: #16a34a; color: #fff; transform: translateY(-3px); }

/* Form panel */
.vk-cu-form-panel {
    background: #f8fdf9;
    border: 1px solid #d1fae5;
    border-radius: 20px;
    padding: 40px;
}
.vk-cu-form-heading { font-size: clamp(20px, 2.5vw, 26px); font-weight: 800; color: #0b1e13; margin: 0 0 8px; }
.vk-cu-form-sub { font-size: 14px; color: #6b7280; margin: 0 0 28px; line-height: 1.6; }
.vk-cu-form-row { margin-bottom: 20px; }
.vk-cu-form-row--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vk-cu-field { display: flex; flex-direction: column; gap: 7px; }
.vk-cu-label { font-size: 13px; font-weight: 700; color: #374151; }
.vk-cu-required { color: #ef4444; }
.vk-cu-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #d1fae5;
    border-radius: 10px;
    font-size: 14px;
    color: #0b1e13;
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}
.vk-cu-input:focus { border-color: #16a34a; box-shadow: 0 0 0 3px rgba(22,163,74,.12); }
.vk-cu-input::placeholder { color: #9ca3af; }
.vk-cu-textarea { resize: vertical; min-height: 120px; }

/* Inquiry type radio cards */
.vk-cu-radio-group { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.vk-cu-radio-option { cursor: pointer; }
.vk-cu-radio-option input[type="radio"] { display: none; }
.vk-cu-radio-box {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
    padding: 14px 8px;
    border: 1.5px solid #d1fae5;
    border-radius: 12px;
    background: #fff;
    font-size: 12px; font-weight: 600; color: #374151;
    text-align: center;
    transition: all .2s;
    cursor: pointer;
}
.vk-cu-radio-box i { font-size: 18px; color: #9ca3af; transition: color .2s; }
.vk-cu-radio-option input[type="radio"]:checked + .vk-cu-radio-box {
    border-color: #16a34a;
    background: #f0faf4;
    color: #16a34a;
}
.vk-cu-radio-option input[type="radio"]:checked + .vk-cu-radio-box i { color: #16a34a; }
.vk-cu-radio-option:hover .vk-cu-radio-box { border-color: #86efac; background: #f7fef9; }

/* Submit button */
.vk-cu-submit-btn {
    margin-top: 24px;
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 36px;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #fff;
    font-size: 15px; font-weight: 700;
    border: none; border-radius: 10px;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    width: 100%;
}
.vk-cu-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,163,74,.30); }

/* Offices strip */
.vk-cu-offices-strip { background: #f0faf4; padding: 72px 0; }
.vk-cu-office-card {
    background: #fff;
    border: 1px solid #d1fae5;
    border-radius: 16px;
    padding: 36px 32px;
    height: 100%;
    transition: transform .25s, box-shadow .25s;
}
.vk-cu-office-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(22,163,74,.10); }
.vk-cu-oc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.vk-cu-oc-badge {
    background: #f0faf4; border: 1px solid #d1fae5;
    color: #16a34a; font-size: 11px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    padding: 4px 14px; border-radius: 50px;
}
.vk-cu-oc-icon { font-size: 28px; color: #d1fae5; }
.vk-cu-oc-addr { font-size: 15px; font-weight: 600; color: #0b1e13; line-height: 1.65; margin: 0 0 12px; }
.vk-cu-oc-note { font-size: 13px; color: #6b7280; line-height: 1.7; margin: 0; }

/* CTA band */
.vk-cu-cta-band { background: linear-gradient(135deg, #0b1e13 0%, #16a34a 100%); padding: 72px 0; }
.vk-cu-cta-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px; flex-wrap: wrap;
}
.vk-cu-cta-heading { font-size: clamp(22px, 3.5vw, 32px); font-weight: 900; color: #fff; margin: 0 0 8px; line-height: 1.2; }
.vk-cu-cta-sub { font-size: 15px; color: rgba(255,255,255,.75); margin: 0; }
.vk-cu-cta-btn-wa {
    display: inline-flex; align-items: center;
    padding: 14px 30px;
    background: #25d366; color: #fff;
    font-size: 15px; font-weight: 700;
    border-radius: 10px; text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
.vk-cu-cta-btn-wa:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(37,211,102,.35); }
.vk-cu-cta-btn-outline {
    display: inline-flex; align-items: center;
    padding: 14px 30px;
    border: 2px solid rgba(255,255,255,.5); color: #fff;
    font-size: 15px; font-weight: 700;
    border-radius: 10px; text-decoration: none;
    transition: all .2s;
}
.vk-cu-cta-btn-outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.1); }

/* Responsive */
@media (max-width: 991px) {
    .vk-cu-hero { padding: 90px 0 60px; min-height: 340px; }
    .vk-cu-grid { grid-template-columns: 1fr; gap: 40px; }
    .vk-cu-info-panel { order: 2; }
    .vk-cu-form-panel { order: 1; }
    .vk-cu-radio-group { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .vk-cu-hero { padding: 80px 0 48px; }
    .vk-cu-form-panel { padding: 28px 20px; }
    .vk-cu-form-row--2col { grid-template-columns: 1fr; }
    .vk-cu-radio-group { grid-template-columns: repeat(2, 1fr); }
    .vk-cu-cta-inner { flex-direction: column; text-align: center; }
    .vk-cu-offices-strip { padding: 48px 0; }
}

/* ═══════════════════════════════════════════════════════════════════
   BLOGS PAGE  — vk-bl-*
═══════════════════════════════════════════════════════════════════ */

/* Hero */
.vk-bl-hero {
    position: relative;
    background: linear-gradient(135deg, #0b1e13 0%, #163c22 50%, #0b1e13 100%);
    padding: 120px 0 80px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}
.vk-bl-hero--detail { min-height: 340px; padding: 100px 0 64px; }
.vk-bl-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 15% 50%, rgba(22,163,74,.18) 0%, transparent 50%),
                      radial-gradient(circle at 85% 30%, rgba(74,222,128,.10) 0%, transparent 45%);
}
.vk-bl-hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234ade80' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.vk-bl-hero-inner { position: relative; z-index: 2; }
.vk-bl-eyebrow {
    display: inline-block;
    background: rgba(74,222,128,.15);
    border: 1px solid rgba(74,222,128,.35);
    color: #4ade80;
    font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    padding: 6px 18px; border-radius: 50px; margin-bottom: 20px;
}
.vk-bl-accent { color: #4ade80; }
.vk-bl-hero-title {
    font-size: clamp(30px, 5vw, 50px);
    font-weight: 900; color: #fff; line-height: 1.15; margin: 0 0 16px;
}
.vk-bl-hero-title--detail { font-size: clamp(22px, 3.5vw, 36px); max-width: 780px; margin-left: auto; margin-right: auto; }
.vk-bl-hero-sub { font-size: clamp(14px, 1.8vw, 17px); color: rgba(255,255,255,.72); max-width: 580px; margin: 0 auto; line-height: 1.7; }
.vk-bl-detail-meta { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 14px; }
.vk-bl-detail-meta span { font-size: 13px; color: rgba(255,255,255,.65); }
.vk-bl-breadcrumb { --bs-breadcrumb-divider-color: rgba(255,255,255,.4); }
.vk-bl-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.65); text-decoration: none; }
.vk-bl-breadcrumb .breadcrumb-item a:hover { color: #4ade80; }
.vk-bl-breadcrumb .breadcrumb-item.active { color: #4ade80; }
.vk-bl-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* Listing section wrapper */
.vk-bl-listing-section { padding: 64px 0 80px; background: #f8fdf9; }

/* 2-col layout: main + sidebar */
.vk-bl-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.vk-bl-cards-col { display: flex; flex-direction: column; gap: 32px; }

/* Blog card */
.vk-bl-card {
    background: #fff;
    border: 1px solid #d1fae5;
    border-radius: 16px;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
.vk-bl-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(22,163,74,.12); }
.vk-bl-card-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16/7;
}
.vk-bl-card-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .45s ease;
}
.vk-bl-card:hover .vk-bl-card-img { transform: scale(1.04); }
.vk-bl-card-category {
    position: absolute; top: 14px; left: 14px;
    background: #16a34a; color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 50px;
}
.vk-bl-card-body { padding: 28px 32px 32px; }
.vk-bl-card-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 10px; }
.vk-bl-card-meta span { font-size: 12px; color: #6b7280; }
.vk-bl-card-title { font-size: clamp(17px, 2vw, 21px); font-weight: 800; color: #0b1e13; line-height: 1.35; margin: 0 0 12px; }
.vk-bl-card-title a { color: inherit; text-decoration: none; }
.vk-bl-card-title a:hover { color: #16a34a; }
.vk-bl-card-excerpt { font-size: 14px; color: #6b7280; line-height: 1.7; margin: 0 0 20px; }
.vk-bl-read-more {
    display: inline-flex; align-items: center;
    font-size: 14px; font-weight: 700; color: #16a34a;
    text-decoration: none;
    padding: 10px 22px;
    border: 1.5px solid #16a34a;
    border-radius: 8px;
    transition: all .2s;
}
.vk-bl-read-more:hover { background: #16a34a; color: #fff; }

/* Empty state */
.vk-bl-empty { text-align: center; padding: 64px 0; color: #9ca3af; }
.vk-bl-empty i { font-size: 48px; margin-bottom: 16px; display: block; }
.vk-bl-empty p { font-size: 16px; }

/* Pagination */
.vk-bl-pagination { margin-top: 8px; }

/* ─── Blog Detail Article ─── */
.vk-bl-detail-article {
    background: #fff;
    border: 1px solid #d1fae5;
    border-radius: 16px;
    overflow: hidden;
}
.vk-bl-detail-banner { overflow: hidden; }
.vk-bl-detail-banner-img { width: 100%; height: auto; display: block; transition: transform .45s; }
.vk-bl-detail-banner-img:hover { transform: scale(1.02); }
.vk-bl-detail-content {
    padding: 36px 40px;
    font-size: 15px; color: #374151; line-height: 1.85;
}
.vk-bl-detail-content h1,.vk-bl-detail-content h2,.vk-bl-detail-content h3,
.vk-bl-detail-content h4,.vk-bl-detail-content h5 {
    color: #0b1e13; font-weight: 800; margin-top: 32px; margin-bottom: 12px;
}
.vk-bl-detail-content p { margin-bottom: 18px; }
.vk-bl-detail-content a { color: #16a34a; text-decoration: underline; }
.vk-bl-detail-content img { max-width: 100%; border-radius: 10px; margin: 20px 0; }
.vk-bl-detail-content ul,.vk-bl-detail-content ol { padding-left: 24px; margin-bottom: 18px; }
.vk-bl-detail-content blockquote {
    border-left: 4px solid #16a34a;
    background: #f0faf4;
    padding: 16px 24px;
    border-radius: 0 10px 10px 0;
    margin: 24px 0;
    font-style: italic;
    color: #374151;
}
.vk-bl-detail-tags {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
    padding: 20px 40px;
    border-top: 1px solid #f0faf4;
}
.vk-bl-tags-label { font-size: 13px; font-weight: 700; color: #6b7280; }
.vk-bl-tag {
    background: #f0faf4; border: 1px solid #d1fae5;
    color: #16a34a; font-size: 12px; font-weight: 600;
    padding: 4px 14px; border-radius: 50px;
}
.vk-bl-detail-nav {
    padding: 20px 40px;
    border-top: 1px solid #f0faf4;
}
.vk-bl-back-btn {
    display: inline-flex; align-items: center;
    font-size: 14px; font-weight: 700; color: #16a34a;
    text-decoration: none;
    padding: 10px 20px;
    border: 1.5px solid #d1fae5;
    border-radius: 8px;
    background: #f8fdf9;
    transition: all .2s;
}
.vk-bl-back-btn:hover { border-color: #16a34a; color: #16a34a; }

/* ─── Sidebar ─── */
.vk-bl-sidebar { display: flex; flex-direction: column; gap: 24px; }
.vk-bl-sidebar-widget {
    background: #fff;
    border: 1px solid #d1fae5;
    border-radius: 16px;
    padding: 28px 24px;
}
.vk-bl-sidebar-title {
    font-size: 14px; font-weight: 800; color: #0b1e13;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0faf4;
    text-transform: uppercase; letter-spacing: .06em;
}

/* Search */
.vk-bl-search-form {
    display: flex; gap: 8px;
}
.vk-bl-search-input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid #d1fae5;
    border-radius: 8px;
    font-size: 14px; color: #0b1e13;
    outline: none;
    transition: border-color .2s;
}
.vk-bl-search-input:focus { border-color: #16a34a; }
.vk-bl-search-input::placeholder { color: #9ca3af; }
.vk-bl-search-btn {
    padding: 10px 16px;
    background: #16a34a; color: #fff;
    border: none; border-radius: 8px;
    cursor: pointer; font-size: 14px;
    transition: background .2s;
}
.vk-bl-search-btn:hover { background: #15803d; }

/* Recent Posts */
.vk-bl-recent-list { display: flex; flex-direction: column; gap: 16px; }
.vk-bl-recent-item {
    display: flex; gap: 14px; align-items: flex-start;
    text-decoration: none;
    transition: opacity .2s;
}
.vk-bl-recent-item:hover { opacity: .85; }
.vk-bl-recent-thumb {
    flex-shrink: 0;
    width: 72px; height: 64px;
    border-radius: 8px; overflow: hidden;
    background: #f0faf4;
}
.vk-bl-recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vk-bl-recent-info { display: flex; flex-direction: column; gap: 5px; }
.vk-bl-recent-date { font-size: 11px; color: #9ca3af; }
.vk-bl-recent-title { font-size: 13px; font-weight: 700; color: #0b1e13; line-height: 1.4; }

/* Categories */
.vk-bl-cat-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.vk-bl-cat-link {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px; font-weight: 600; color: #374151;
    text-decoration: none;
    transition: all .2s;
}
.vk-bl-cat-link:hover { background: #f0faf4; color: #16a34a; }
.vk-bl-cat-link i { color: #d1fae5; font-size: 10px; }
.vk-bl-cat-count {
    background: #f0faf4; border: 1px solid #d1fae5;
    color: #16a34a; font-size: 11px; font-weight: 700;
    padding: 2px 10px; border-radius: 50px;
}

/* Sidebar CTA */
.vk-bl-sidebar-cta {
    background: linear-gradient(135deg, #0b1e13 0%, #16a34a 100%);
    border-radius: 16px; overflow: hidden;
}
.vk-bl-sidebar-cta-inner { padding: 32px 24px; text-align: center; }
.vk-bl-cta-icon { font-size: 36px; color: rgba(255,255,255,.4); margin-bottom: 14px; display: block; }
.vk-bl-cta-heading { font-size: 16px; font-weight: 800; color: #fff; margin: 0 0 8px; }
.vk-bl-cta-text { font-size: 13px; color: rgba(255,255,255,.72); line-height: 1.6; margin: 0 0 20px; }
.vk-bl-cta-btn {
    display: inline-block;
    padding: 11px 28px;
    background: #4ade80; color: #0b1e13;
    font-size: 14px; font-weight: 800;
    border-radius: 8px; text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
.vk-bl-cta-btn:hover { color: #0b1e13; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(74,222,128,.35); }

/* Responsive */
@media (max-width: 1100px) {
    .vk-bl-layout { grid-template-columns: 1fr 300px; gap: 28px; }
}
@media (max-width: 900px) {
    .vk-bl-layout { grid-template-columns: 1fr; }
    .vk-bl-sidebar-col { order: -1; }
    .vk-bl-hero { padding: 90px 0 60px; min-height: 320px; }
    .vk-bl-hero--detail { padding: 80px 0 52px; }
}
@media (max-width: 575px) {
    .vk-bl-hero { padding: 80px 0 48px; }
    .vk-bl-card-body { padding: 20px 22px 24px; }
    .vk-bl-detail-content { padding: 24px 20px; }
    .vk-bl-detail-tags,.vk-bl-detail-nav { padding: 16px 20px; }
    .vk-bl-listing-section { padding: 40px 0 56px; }
}

/* ═══════════════════════════════════════════════════════════════════
   AUTH PAGES (Login / Register)  — vk-auth-*
═══════════════════════════════════════════════════════════════════ */

/* Full-page split layout */
.vk-auth-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* ─── Left Brand Panel ─── */
.vk-auth-brand-panel {
    position: relative;
    background: #0b1e13;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}
.vk-auth-brand-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0b1e13 0%, #163c22 45%, #0b1e13 100%);
}
.vk-auth-brand-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(22,163,74,.22) 0%, transparent 50%),
                      radial-gradient(circle at 80% 70%, rgba(74,222,128,.12) 0%, transparent 45%);
}
.vk-auth-brand-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234ade80' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.vk-auth-brand-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 48px 48px;
    width: 100%;
}
.vk-auth-brand-logo {
    display: inline-block;
    margin-bottom: 48px;
}
.vk-auth-brand-logo img {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .9;
}
.vk-auth-eyebrow {
    display: inline-block;
    background: rgba(74,222,128,.15);
    border: 1px solid rgba(74,222,128,.35);
    color: #4ade80;
    font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    padding: 5px 16px; border-radius: 50px;
    margin-bottom: 20px;
}
.vk-auth-brand-heading {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 900; color: #fff; line-height: 1.2; margin: 0 0 14px;
}
.vk-auth-brand-accent { color: #4ade80; }
.vk-auth-brand-sub {
    font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.7;
    margin: 0 0 40px; max-width: 380px;
}

/* Stats row */
.vk-auth-stats {
    display: flex; align-items: center; gap: 0;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;
    padding: 20px 28px;
    margin-bottom: 28px;
}
.vk-auth-stat { flex: 1; text-align: center; }
.vk-auth-stat-num { display: block; font-size: 22px; font-weight: 900; color: #4ade80; line-height: 1.1; }
.vk-auth-stat-label { font-size: 11px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; display: block; }
.vk-auth-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.12); flex-shrink: 0; }

/* Perks list (register panel) */
.vk-auth-perks { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.vk-auth-perk { display: flex; align-items: center; gap: 14px; }
.vk-auth-perk-icon {
    flex-shrink: 0; width: 36px; height: 36px;
    background: rgba(74,222,128,.15); border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    color: #4ade80; font-size: 14px;
}
.vk-auth-perk-text { font-size: 14px; color: rgba(255,255,255,.80); font-weight: 500; }

/* Badges */
.vk-auth-brand-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.vk-auth-badge {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.75);
    font-size: 12px; font-weight: 600;
    padding: 6px 14px; border-radius: 50px;
}

/* Decorative orbs */
.vk-auth-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.vk-auth-deco--1 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(74,222,128,.10) 0%, transparent 70%);
    bottom: -80px; right: -80px;
}
.vk-auth-deco--2 {
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(22,163,74,.12) 0%, transparent 70%);
    top: 40px; right: 20px;
}
.vk-auth-deco--3 {
    width: 100px; height: 100px;
    background: radial-gradient(circle, rgba(74,222,128,.08) 0%, transparent 70%);
    top: 50%; left: 10%;
}

/* ─── Right Form Panel ─── */
.vk-auth-form-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fdf9;
    overflow-y: auto;
    padding: 48px 24px;
}
.vk-auth-form-inner {
    width: 100%;
    max-width: 440px;
}
.vk-auth-form-header { margin-bottom: 28px; }
.vk-auth-form-title { font-size: clamp(22px, 2.8vw, 30px); font-weight: 900; color: #0b1e13; margin: 0 0 6px; }
.vk-auth-form-sub { font-size: 14px; color: #6b7280; margin: 0; line-height: 1.6; }

/* Alert */
.vk-auth-alert {
    background: #fef2f2; border: 1px solid #fecaca;
    color: #dc2626; font-size: 13px; font-weight: 600;
    padding: 12px 16px; border-radius: 10px;
    margin-bottom: 20px; display: flex; align-items: center;
}

/* Fields */
.vk-auth-field { margin-bottom: 18px; }
.vk-auth-label {
    display: block; font-size: 13px; font-weight: 700; color: #374151; margin-bottom: 7px;
}
.vk-auth-label-hint { font-size: 11px; font-weight: 400; color: #9ca3af; }
.vk-auth-required { color: #ef4444; }
.vk-auth-input-wrap {
    position: relative; display: flex; align-items: center;
}
.vk-auth-input-icon {
    position: absolute; left: 14px;
    color: #9ca3af; font-size: 14px;
    pointer-events: none;
    z-index: 1;
}
.vk-auth-input {
    width: 100%;
    padding: 12px 44px 12px 40px;
    border: 1.5px solid #d1fae5;
    border-radius: 10px;
    font-size: 14px; color: #0b1e13;
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}
.vk-auth-input:focus { border-color: #16a34a; box-shadow: 0 0 0 3px rgba(22,163,74,.12); }
.vk-auth-input::placeholder { color: #9ca3af; }
.vk-auth-eye {
    position: absolute; right: 14px;
    cursor: pointer; color: #9ca3af; font-size: 14px;
}
.vk-auth-eye:hover { color: #16a34a; }

/* Two-col layout for password fields on register */
.vk-auth-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Remember + forgot row */
.vk-auth-row-between {
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px; margin-bottom: 22px; flex-wrap: wrap;
}
.vk-auth-remember {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: #374151; cursor: pointer;
}
.vk-auth-forgot { font-size: 13px; color: #16a34a; text-decoration: none; font-weight: 600; }
.vk-auth-forgot:hover { color: #15803d; text-decoration: underline; }
.vk-auth-toggle-link {
    display: block; font-size: 12px; color: #16a34a; margin-top: 6px;
    text-decoration: none; font-weight: 600;
}
.vk-auth-toggle-link:hover { text-decoration: underline; }

/* Demo box */
.vk-auth-demo-box {
    background: #f0fdf4; border: 1px solid #bbf7d0;
    border-radius: 10px; padding: 14px 16px; margin-bottom: 20px;
}
.vk-auth-demo-title { font-size: 12px; font-weight: 700; color: #15803d; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 10px; }
.vk-auth-demo-row {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    font-size: 12px; color: #374151; padding: 6px 0;
    border-top: 1px solid #d1fae5;
}
.vk-auth-demo-row:first-of-type { border-top: none; padding-top: 0; }
.vk-auth-demo-row span:first-child { font-weight: 700; min-width: 60px; }
.vk-auth-demo-row span:nth-child(2) { flex: 1; color: #6b7280; }
.vk-auth-demo-copy {
    padding: 3px 10px; background: #16a34a; color: #fff;
    border: none; border-radius: 6px; font-size: 11px; font-weight: 700;
    cursor: pointer; transition: background .2s;
}
.vk-auth-demo-copy:hover { background: #15803d; }

/* Submit */
.vk-auth-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #fff; font-size: 15px; font-weight: 700;
    border: none; border-radius: 10px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: transform .2s, box-shadow .2s;
    margin-bottom: 6px;
}
.vk-auth-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,163,74,.30); }
.vk-auth-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* Divider */
.vk-auth-divider {
    display: flex; align-items: center; gap: 12px;
    margin: 20px 0; color: #9ca3af; font-size: 12px;
}
.vk-auth-divider::before,.vk-auth-divider::after {
    content: ''; flex: 1; height: 1px; background: #e5e7eb;
}

/* Switch link */
.vk-auth-switch { font-size: 13px; color: #6b7280; text-align: center; margin-top: 22px; }
.vk-auth-switch a { color: #16a34a; font-weight: 700; text-decoration: none; }
.vk-auth-switch a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 991px) {
    .vk-auth-wrap { grid-template-columns: 1fr; }
    .vk-auth-brand-panel { min-height: auto; }
    .vk-auth-brand-inner { padding: 36px 28px; }
    .vk-auth-stats { display: none; }
    .vk-auth-form-panel { padding: 40px 20px; }
    .vk-auth-two-col { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
    .vk-auth-brand-inner { padding: 28px 20px; }
    .vk-auth-perks { display: none; }
    .vk-auth-brand-badges { display: none; }
    .vk-auth-form-inner { max-width: 100%; }
}

/* -- Forgot Password page extras -- */
.vk-auth-fp-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg,#16a34a,#4ade80);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: #fff; margin-bottom: 20px;
}
.vk-auth-steps { margin: 24px 0 28px; }
.vk-auth-step { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.vk-auth-step-num {
    width: 26px; height: 26px; border-radius: 50%;
    background: rgba(74,222,128,.2); color: #4ade80;
    font-size: 12px; font-weight: 700; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.vk-auth-step-text { color: rgba(255,255,255,.75); font-size: 13.5px; line-height: 1.5; padding-top: 4px; }
.vk-auth-success {
    background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px;
    color: #15803d; font-size: 13.5px; padding: 12px 16px;
    margin-bottom: 18px; display: flex; align-items: flex-start; gap: 6px;
}
.vk-auth-fp-links {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 22px; font-size: 13px;
}
.vk-auth-fp-back { color: #6b7280; text-decoration: none; }
.vk-auth-fp-back:hover { color: #16a34a; }
.vk-auth-fp-register { color: #16a34a; font-weight: 700; text-decoration: none; }
.vk-auth-fp-register:hover { text-decoration: underline; }


/* =============================================
   VK CART PAGE  —  vk-cart-*
   ============================================= */

/* Section wrapper */
.vk-cart-section { padding: 60px 0 80px; background: #f8f9fa; }

/* Page heading */
.vk-cart-page-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 28px; flex-wrap: wrap; gap: 12px;
}
.vk-cart-page-title {
    display: flex; align-items: center; gap: 12px;
}
.vk-cart-page-title i { font-size: 22px; color: #16a34a; }
.vk-cart-page-title h1 { font-size: 22px; font-weight: 700; color: #111827; margin: 0; }
.vk-cart-badge {
    background: #dcfce7; color: #15803d;
    font-size: 12px; font-weight: 600;
    padding: 3px 10px; border-radius: 50px;
}
.vk-cart-continue-top {
    font-size: 13px; color: #6b7280; text-decoration: none;
    display: flex; align-items: center; gap: 6px;
    transition: color .2s;
}
.vk-cart-continue-top:hover { color: #16a34a; }

/* Two-col layout */
.vk-cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}

/* ── Items column ── */
.vk-cart-items-wrap {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    overflow: hidden;
}

/* Table header */
.vk-cart-thead {
    display: grid;
    grid-template-columns: 1fr 120px 140px 110px 44px;
    align-items: center;
    padding: 14px 24px;
    background: #f0fdf4;
    border-bottom: 1px solid #e5e7eb;
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .5px; color: #6b7280;
}
.vk-cart-thead-product { text-align: left; }
.vk-cart-thead-price, .vk-cart-thead-qty, .vk-cart-thead-total { text-align: center; }
.vk-cart-thead-remove { text-align: right; }

/* Cart row */
.vk-cart-row {
    display: grid;
    grid-template-columns: 1fr 120px 140px 110px 44px;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f3f4f6;
    transition: background .15s;
}
.vk-cart-row:last-child { border-bottom: none; }
.vk-cart-row:hover { background: #fafafa; }

/* Product cell */
.vk-cart-product { display: flex; align-items: center; gap: 16px; min-width: 0; }
.vk-cart-img-link { flex-shrink: 0; }
.vk-cart-thumb {
    width: 72px; height: 72px; object-fit: cover;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}
.vk-cart-product-info { min-width: 0; }
.vk-cart-product-name {
    display: block; font-size: 14px; font-weight: 600; color: #111827;
    text-decoration: none; white-space: normal;
    overflow: hidden; display: -webkit-box;
    -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    line-height: 1.4; margin-bottom: 6px;
}
.vk-cart-product-name:hover { color: #16a34a; }
.vk-cart-variants { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 4px; }
.vk-cart-variant-tag {
    font-size: 11px; background: #f3f4f6; color: #6b7280;
    padding: 2px 8px; border-radius: 4px;
}

/* Price cell */
.vk-cart-unit-price {
    text-align: center; font-size: 14px;
    font-weight: 600; color: #374151;
}

/* Stepper */
.vk-cart-qty { display: flex; justify-content: center; }
.vk-cart-stepper {
    display: inline-flex; align-items: center;
    border: 1.5px solid #e5e7eb; border-radius: 8px;
    overflow: hidden;
}
.vk-cart-step-btn {
    width: 32px; height: 32px; border: none; background: #f9fafb;
    color: #374151; font-size: 11px;
    cursor: pointer; transition: background .15s, color .15s;
    display: flex; align-items: center; justify-content: center;
}
.vk-cart-step-btn:hover { background: #16a34a; color: #fff; }
.vk-cart-step-val {
    width: 42px; height: 32px; border: none;
    text-align: center; font-size: 13px; font-weight: 600;
    color: #111827; background: #fff;
    pointer-events: none;
}

/* Row total */
.vk-cart-row-total {
    text-align: center; font-size: 14px;
    font-weight: 700; color: #16a34a;
}

/* Remove btn */
.vk-cart-remove { display: flex; justify-content: flex-end; }
.vk-cart-remove-btn {
    width: 30px; height: 30px; border-radius: 50%; border: none;
    background: #fef2f2; color: #ef4444; font-size: 12px;
    cursor: pointer; transition: background .15s, transform .15s;
    display: flex; align-items: center; justify-content: center;
}
.vk-cart-remove-btn:hover { background: #ef4444; color: #fff; transform: scale(1.1); }

/* Empty state */
.vk-cart-empty {
    padding: 60px 24px;
    text-align: center;
}
.vk-cart-empty-icon {
    width: 80px; height: 80px; border-radius: 50%;
    background: #f0fdf4; color: #16a34a; font-size: 30px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.vk-cart-empty h5 { font-size: 18px; font-weight: 700; color: #111827; margin-bottom: 8px; }
.vk-cart-empty p { font-size: 13.5px; color: #6b7280; margin-bottom: 20px; }
.vk-cart-empty-btn {
    display: inline-flex; align-items: center;
    background: #16a34a; color: #fff;
    padding: 10px 22px; border-radius: 8px;
    font-size: 13.5px; font-weight: 600; text-decoration: none;
    transition: background .2s;
}
.vk-cart-empty-btn:hover { background: #15803d; color: #fff; }

/* ── Summary column ── */
.vk-cart-summary-card {
    background: #fff; border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    padding: 24px;
    position: sticky; top: 100px;
}
.vk-cart-summary-head {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 20px;
}
.vk-cart-summary-head i { font-size: 16px; color: #16a34a; }
.vk-cart-summary-head h5 { font-size: 16px; font-weight: 700; color: #111827; margin: 0; }

.vk-cart-summary-rows { display: flex; flex-direction: column; gap: 0; }
.vk-cart-summary-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #f3f4f6;
    font-size: 14px; color: #374151;
}
.vk-cart-summary-row:last-child { border-bottom: none; }
.vk-cart-summary-row strong { font-weight: 700; color: #111827; }
.vk-cart-discount-label { display: flex; align-items: center; color: #16a34a; font-size: 13px; }
.vk-cart-shipping-note { font-size: 12px; color: #9ca3af; font-style: italic; }

.vk-cart-summary-divider {
    height: 1px; background: #f3f4f6; margin: 16px 0;
}

/* Coupon */
.vk-cart-coupon-label {
    font-size: 12.5px; font-weight: 600; color: #374151;
    margin-bottom: 8px;
    display: flex; align-items: center; gap: 4px;
}
.vk-cart-coupon-form { width: 100%; }
.vk-cart-coupon-input-wrap {
    display: flex; align-items: stretch; gap: 0;
    border: 1.5px solid #e5e7eb; border-radius: 8px; overflow: hidden;
}
.vk-cart-coupon-input {
    flex: 1; border: none; padding: 9px 12px;
    font-size: 13px; color: #111827; outline: none;
    background: #f9fafb;
}
.vk-cart-coupon-input:disabled { color: #9ca3af; cursor: not-allowed; }
.vk-cart-coupon-apply {
    border: none; background: #16a34a; color: #fff;
    padding: 0 14px; font-size: 12.5px; font-weight: 700;
    cursor: pointer; flex-shrink: 0;
    transition: background .2s;
}
.vk-cart-coupon-apply:hover { background: #15803d; }
.vk-cart-coupon-clear {
    border: none; background: #fef2f2; color: #ef4444;
    padding: 0 12px; font-size: 13px;
    cursor: pointer; flex-shrink: 0;
    transition: background .2s;
}
.vk-cart-coupon-clear:hover { background: #ef4444; color: #fff; }

/* Checkout button */
.vk-cart-checkout-btn {
    display: flex; align-items: center; justify-content: center;
    width: 100%; padding: 14px;
    background: linear-gradient(135deg,#16a34a,#15803d);
    color: #fff !important; text-decoration: none;
    border-radius: 10px; font-size: 15px; font-weight: 700;
    letter-spacing: .2px;
    transition: opacity .2s, transform .15s;
    margin-top: 4px;
}
.vk-cart-checkout-btn:hover { opacity: .92; transform: translateY(-1px); }

/* Trust strip */
.vk-cart-trust-strip {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 6px;
    margin-top: 14px; padding-top: 14px;
    border-top: 1px solid #f3f4f6;
}
.vk-cart-trust-strip span {
    font-size: 11px; color: #9ca3af;
    display: flex; align-items: center; gap: 4px;
}
.vk-cart-trust-strip i { color: #16a34a; }

/* ── Responsive ── */
@media (max-width: 1100px) {
    .vk-cart-layout { grid-template-columns: 1fr 320px; }
}
@media (max-width: 900px) {
    .vk-cart-layout { grid-template-columns: 1fr; }
    .vk-cart-summary-card { position: static; }
    .vk-cart-thead { display: none; }
    .vk-cart-row {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 12px;
        padding: 18px 16px;
    }
    .vk-cart-product { grid-column: 1 / -1; }
    .vk-cart-unit-price::before { content: attr(data-label) ': '; font-size: 11px; color: #9ca3af; display: block; font-weight: 600; }
    .vk-cart-qty::before { content: attr(data-label) ': '; font-size: 11px; color: #9ca3af; display: block; font-weight: 600; }
    .vk-cart-row-total::before { content: attr(data-label) ': '; font-size: 11px; color: #9ca3af; display: block; font-weight: 600; }
    .vk-cart-unit-price, .vk-cart-row-total { text-align: left; }
    .vk-cart-qty { justify-content: flex-start; }
    .vk-cart-remove { justify-content: flex-start; }
}
@media (max-width: 575px) {
    .vk-cart-section { padding: 40px 0 60px; }
    .vk-cart-row { grid-template-columns: 1fr; }
    .vk-cart-trust-strip { justify-content: center; }
}
