/* =========================================================
   Vrindavan Digital
   Digital Services E-Commerce
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --bg: #f4f7f8;
    --surface: #ffffff;
    --dark: #102a43;
    --text: #243b53;
    --muted: #627d98;
    --border: #d9e2ec;

    --accent: #f97316;
    --accent-dark: #c2410c;
    --accent-light: #ffedd5;

    --heading: "Montserrat", sans-serif;
    --body: "Lato", sans-serif;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font-family: inherit;
}

button {
    border: 0;
    background: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--heading);
    color: var(--dark);
}

p {
    margin: 0;
}

body {
    background:
        linear-gradient(135deg, rgba(14, 165, 233, 0.08), transparent 34%),
        linear-gradient(315deg, rgba(249, 115, 22, 0.08), transparent 38%),
        var(--bg);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(16, 42, 67, 0.88), rgba(16, 42, 67, 0.45) 52%, rgba(16, 42, 67, 0.15)),
        linear-gradient(0deg, rgba(16, 42, 67, 0.5), transparent 46%);
}

.btn-brand,
.newsletter-form .btn {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.btn-brand:hover,
.newsletter-form .btn:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
}

.collection-card,
.product-card,
.category-card {
    border: 1px solid rgba(16, 42, 67, 0.1);
    box-shadow: 0 18px 50px rgba(16, 42, 67, 0.08);
}


/* =========================================================
   PRELOADER
========================================================= */

#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(135deg, rgba(16, 42, 67, 0.96), rgba(10, 31, 51, 0.98)),
        var(--dark);
}

.preloader-inner {
    width: min(520px, calc(100% - 42px));
    min-height: 240px;
    padding: 42px;

    display: grid;
    align-content: center;
    gap: 28px;

    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.preloader-brand {
    display: grid;
    gap: 10px;
}

.preloader-kicker,
.preloader-services span {
    font-family: var(--heading);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.preloader-kicker {
    color: rgba(255, 255, 255, 0.58);
}

.preloader-brand strong {
    display: block;

    font-family: var(--heading);
    font-size: clamp(34px, 6vw, 62px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: 0;
    color: #fff;
}

.preloader-signal {
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 1fr 0.45fr;
    align-items: end;
    gap: 9px;
    height: 72px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.preloader-signal span {
    display: block;
    height: 16px;
    transform-origin: bottom;
    background: linear-gradient(180deg, #38bdf8, var(--accent));
}

.preloader-signal span:nth-child(2) {
    height: 38px;
}

.preloader-signal span:nth-child(3) {
    height: 56px;
}

.preloader-signal span:nth-child(4) {
    height: 28px;
}

.preloader-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.preloader-services span {
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.18);
}


/* =========================================================
   GLOBAL
========================================================= */

.section-label,
.eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    font-family: var(--heading);
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 2.3px;
    text-transform: uppercase;

    color: var(--accent);
}

.section-label.light {
    color: rgba(255, 255, 255, 0.7);
}

.section-heading {
    margin-bottom: 48px;
}

.section-heading h2 {
    font-size: clamp(31px, 3vw, 47px);
    font-weight: 500;
    line-height: 1.13;
    letter-spacing: -1.8px;
}

.section-link,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding-bottom: 5px;

    border-bottom: 1px solid var(--dark);

    font-family: var(--heading);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;

    color: var(--dark);

    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}

.section-link i,
.text-link i {
    transition: transform 0.35s var(--ease);
}

.section-link:hover,
.text-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.section-link:hover i,
.text-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   ANNOUNCEMENT TICKER
========================================================= */

.announcement-bar {
    position: relative;
    z-index: 120;

    height: 38px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--dark);
    color: #fff;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 38px;
}

.ticker-label {
    display: inline-flex;
    align-items: center;

    height: 17px;

    margin-right: 18px;
    padding-right: 18px;

    border-right: 1px solid rgba(255, 255, 255, 0.22);

    font-family: var(--heading);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: #aab59d;
}

.ticker-content {
    display: flex;
    align-items: center;

    min-width: 350px;

    font-family: var(--heading);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.1px;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.82);
}

.ticker-cursor {
    width: 1px;
    height: 12px;

    margin-left: 4px;

    background: #fff;

    animation: tickerBlink 0.75s infinite;
}

@keyframes tickerBlink {

    0%,
    45% {
        opacity: 1;
    }

    46%,
    100% {
        opacity: 0;
    }
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: relative;
    z-index: 110;

    background: rgba(246, 245, 240, 0.98);

    border-bottom: 1px solid var(--border);
}

.site-header .navbar {
    min-height: 82px;
    padding: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 6px;

    margin: 0;

    font-family: var(--heading);
    color: var(--dark);
}

.brand-main {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2.2px;
}

.brand-mark {
    font-family: var(--body);
    font-size: 18px;
    font-weight: 300;

    color: var(--accent);
}

.navbar-nav {
    gap: 28px;
}

.navbar-nav .nav-link {
    position: relative;

    padding: 30px 0 !important;

    font-family: var(--heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.55px;

    color: var(--text);
}

.navbar-nav .nav-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 23px;

    width: 0;
    height: 1px;

    background: var(--dark);

    transition: width 0.35s var(--ease);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--dark);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions,
.header-mobile-actions {
    gap: 3px;
}

.header-action-btn {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 39px;
    height: 39px;

    color: var(--dark);

    transition:
        color 0.3s ease,
        transform 0.3s var(--ease);
}

.header-action-btn:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.header-action-btn i {
    font-size: 17px;
}

.header-hover-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.header-mini-dropdown {
    position: absolute;
    z-index: 1300;
    top: calc(100% + 12px);
    right: 0;
    width: 255px;
    padding: 18px;
    border: 1px solid rgba(23, 25, 20, 0.12);
    background: #fff;
    box-shadow: 0 18px 45px rgba(23, 25, 20, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
}

.header-mini-dropdown::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    width: 100%;
    height: 14px;
}

.header-hover-menu:hover .header-mini-dropdown,
.header-hover-menu:focus-within .header-mini-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.header-mini-label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--heading);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--muted);
}

.header-mini-dropdown > strong {
    display: block;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--dark);
}

.header-mini-empty {
    margin: 0 0 14px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--muted);
}

.header-mini-action {
    display: inline-flex;
    width: 100%;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid var(--dark);
    background: var(--dark);
    font-family: var(--heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
}

.header-mini-action:hover {
    background: transparent;
    color: var(--dark);
}

.header-product-dropdown {
    width: 310px;
}

.header-mini-product {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(23, 25, 20, 0.08);
    color: var(--dark);
    text-decoration: none;
}

.header-mini-product:first-of-type {
    padding-top: 4px;
}

.header-mini-product:last-of-type {
    margin-bottom: 14px;
}

.header-mini-thumb {
    display: block;
    width: 54px;
    height: 62px;
    background: #e7e4dd;
}

.header-mini-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-mini-product strong {
    display: block;
    overflow: hidden;
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header-mini-product small {
    display: block;
    font-size: 12px;
    color: var(--muted);
}

.cart-count,
.wishlist-count {
    position: absolute;
    top: 0;
    right: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 16px;
    height: 16px;

    border-radius: 50%;

    background: var(--accent);

    font-family: var(--heading);
    font-size: 8px;
    font-weight: 600;
    line-height: 1;

    color: #fff;
}

.wishlist-count {
    background: var(--dark);
}

.navbar-toggler {
    padding: 0 0 0 8px;

    border: 0;

    box-shadow: none !important;
}


/* =========================================================
   SEARCH OVERLAY
========================================================= */

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 9990;

    display: flex;
    align-items: center;
    justify-content: center;

    visibility: hidden;
    opacity: 0;

    background: rgba(246, 245, 240, 0.98);

    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}

.search-overlay.active {
    visibility: visible;
    opacity: 1;
}

.search-close {
    position: absolute;
    top: 35px;
    right: 45px;

    width: 45px;
    height: 45px;

    font-size: 22px;
    color: var(--dark);

    transition: transform 0.35s var(--ease);
}

.search-close:hover {
    transform: rotate(90deg);
}

.search-overlay-content {
    width: min(760px, calc(100% - 50px));
}

.search-form {
    display: flex;

    border-bottom: 1px solid var(--dark);
}

.search-form input {
    width: 100%;
    height: 85px;

    padding: 0;

    border: 0;
    outline: 0;

    background: transparent;

    font-family: var(--heading);
    font-size: clamp(27px, 4vw, 45px);
    font-weight: 400;
    letter-spacing: -1.5px;

    color: var(--dark);
}

.search-form input::placeholder {
    color: #aaa9a3;
}

.search-form button {
    width: 70px;

    font-size: 24px;
    color: var(--dark);
}

.popular-searches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;

    margin-top: 25px;

    font-size: 13px;
}

.popular-searches span {
    color: var(--muted);
}

.popular-searches a {
    color: var(--dark);
}

.popular-searches a:hover {
    color: var(--accent);
}


/* =========================================================
   HERO
========================================================= */

.hero-wrapper {
    position: relative;

    min-height: calc(100vh - 120px);

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hero-image-wrap {
    position: absolute;
    inset: 0;

    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.06);
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(12, 14, 11, 0.76) 0%,
            rgba(12, 14, 11, 0.50) 40%,
            rgba(12, 14, 11, 0.10) 74%,
            rgba(12, 14, 11, 0.02) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 3;

    padding-top: 100px;
    padding-bottom: 110px;
}

.hero-content .eyebrow {
    color: rgba(255, 255, 255, 0.68);
}

.hero-title {
    margin-bottom: 28px;

    font-size: clamp(45px, 5.3vw, 78px);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -3.7px;

    color: #fff;
}

.hero-title-line {
    display: block;
}

.hero-description {
    max-width: 590px;

    font-size: 18px;
    font-weight: 300;
    line-height: 1.72;

    color: rgba(255, 255, 255, 0.8);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 34px;

    margin-top: 40px;
}

.btn-brand {
    padding: 16px 27px;

    border: 1px solid #fff;
    border-radius: 0;

    background: #fff;

    font-family: var(--heading);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.7px;

    color: var(--dark);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.btn-brand:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

.hero-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding-bottom: 5px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.55);

    font-family: var(--heading);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.6px;

    color: #fff;
}

.hero-link i {
    transition: transform 0.35s var(--ease);
}

.hero-link:hover {
    color: #fff;
    border-color: #fff;
}

.hero-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   HERO SCROLL
========================================================= */

.hero-scroll {
    position: absolute;
    z-index: 4;

    right: 38px;
    bottom: 42px;

    display: flex;
    align-items: center;
    gap: 15px;

    transform: rotate(90deg);
    transform-origin: right bottom;
}

.hero-scroll > span {
    font-family: var(--heading);
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.6);
}

.hero-scroll-line {
    position: relative;

    width: 55px;
    height: 1px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.2);
}

.hero-scroll-line span {
    position: absolute;
    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: #fff;

    animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {

    0% {
        left: -100%;
    }

    50% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}


/* =========================================================
   BRAND INTRO
========================================================= */

.brand-intro {
    padding: 130px 0;

    background: var(--bg);
}

.brand-intro h2 {
    margin-bottom: 28px;

    font-size: clamp(34px, 4vw, 56px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -2.3px;
}

.brand-intro p {
    max-width: 730px;

    margin: 0 auto;

    font-size: 19px;
    font-weight: 300;
    line-height: 1.8;

    color: var(--muted);
}


/* =========================================================
   COLLECTIONS
========================================================= */

.collections-section {
    padding: 0 0 130px;

    background: var(--bg);
}

.collection-card {
    display: block;
}

.collection-image {
    position: relative;

    aspect-ratio: 0.83;

    overflow: hidden;

    background: #e7e6e1;
}

.collection-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(20, 22, 17, 0.05);

    transition: background 0.45s ease;
}

.collection-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.9s var(--ease);
}

.collection-card:hover .collection-image img {
    transform: scale(1.055);
}

.collection-card:hover .collection-image::after {
    background: rgba(20, 22, 17, 0);
}

.collection-content {
    display: grid;
    grid-template-columns: 35px 1fr auto;
    gap: 10px;

    align-items: start;

    padding-top: 22px;
}

.collection-content > span {
    padding-top: 5px;

    font-family: var(--heading);
    font-size: 8px;
    font-weight: 600;

    color: var(--muted);
}

.collection-content h3 {
    margin-bottom: 4px;

    font-size: 18px;
    font-weight: 500;
}

.collection-content p {
    font-size: 14px;

    color: var(--muted);
}

.collection-content > i {
    margin-top: 5px;

    font-size: 17px;

    transition: transform 0.35s var(--ease);
}

.collection-card:hover .collection-content > i {
    transform: translate(5px, -5px);
}


/* =========================================================
   MOVING MARQUEE
========================================================= */

.text-marquee {
    position: relative;

    padding: 28px 0;

    overflow: hidden;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background: var(--dark);
}

.marquee-track {
    display: flex;

    width: max-content;
}

.marquee-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;

    white-space: nowrap;
}

.marquee-content span {
    padding: 0 30px;

    font-family: var(--heading);
    font-size: clamp(22px, 2.5vw, 37px);
    font-weight: 400;
    letter-spacing: -1px;

    color: rgba(255, 255, 255, 0.88);
}

.marquee-content i {
    display: inline-block;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #89937c;
}


/* =========================================================
   FEATURE STATEMENT
========================================================= */

.feature-statement {
    padding: 130px 0;

    background: #e9e8e2;
}

.statement-image {
    position: relative;

    height: 680px;

    overflow: hidden;
}

.statement-image img {
    width: 100%;
    height: 110%;

    object-fit: cover;
}

.statement-content {
    max-width: 590px;
}

.statement-content h2 {
    margin-bottom: 30px;

    font-size: clamp(43px, 5vw, 70px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -3.3px;
}

.statement-content p {
    max-width: 540px;

    margin-bottom: 38px;

    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;

    color: var(--muted);
}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {
    padding: 130px 0;

    background: var(--surface);
}

.product-card {
    position: relative;
}

.product-image {
    position: relative;

    aspect-ratio: 0.82;

    overflow: hidden;

    background: #efeee9;
}

.product-image > a {
    display: block;

    width: 100%;
    height: 100%;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.75s var(--ease);
}

.product-card:hover .product-image img {
    transform: scale(1.045);
}


/* =========================================================
   PRODUCT BADGE
========================================================= */

.product-badge {
    position: absolute;
    z-index: 4;

    top: 14px;
    left: 14px;

    padding: 7px 10px;

    background: var(--dark);

    font-family: var(--heading);
    font-size: 7px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: #fff;
}


/* =========================================================
   PRODUCT WISHLIST
========================================================= */

.product-wishlist {
    position: absolute;
    z-index: 5;

    top: 13px;
    right: 13px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.94);

    color: var(--dark);

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.3s var(--ease),
        background 0.3s ease,
        color 0.3s ease;
}

.product-wishlist:hover {
    transform: scale(1.07);

    background: var(--dark);
    color: #fff;
}

.product-wishlist.active {
    background: var(--dark);
    color: #fff;
}

.product-wishlist.active i::before {
    content: "\f415";
}


/* =========================================================
   ADD TO CART
========================================================= */

.product-cart-wrap {
    position: absolute;
    z-index: 5;

    left: 12px;
    right: 12px;
    bottom: 12px;

    transform: translateY(calc(100% + 20px));

    opacity: 0;

    transition:
        transform 0.45s var(--ease),
        opacity 0.35s ease;
}

.product-card:hover .product-cart-wrap {
    transform: translateY(0);

    opacity: 1;
}

.add-to-cart {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    padding: 15px 18px;

    background: rgba(23, 25, 20, 0.96);

    font-family: var(--heading);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;

    color: #fff;

    transition: background 0.3s ease;
}

.add-to-cart i {
    font-size: 15px;

    transition: transform 0.3s var(--ease);
}

.add-to-cart:hover {
    background: var(--accent);
}

.add-to-cart:hover i {
    transform: translateX(3px);
}


/* =========================================================
   PRODUCT INFO
========================================================= */

.product-info {
    padding-top: 17px;
}

.product-category {
    display: block;

    margin-bottom: 5px;

    font-family: var(--heading);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;

    color: var(--muted);
}

.product-info h3 {
    margin-bottom: 5px;

    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.product-info h3 a {
    transition: color 0.3s ease;
}

.product-info h3 a:hover {
    color: var(--accent);
}

.product-price {
    font-size: 14px;

    color: var(--text);
}


/* =========================================================
   BESTSELLER
========================================================= */

.bestseller-section {
    padding: 40px 0 130px;

    background: var(--surface);
}

.bestseller-wrapper {
    background: var(--accent-light);
}

.bestseller-image {
    position: relative;

    height: 650px;

    overflow: hidden;
}

.bestseller-image img {
    width: 100%;
    height: 110%;

    object-fit: cover;
}

.bestseller-index {
    position: absolute;
    right: 25px;
    bottom: 22px;

    padding: 8px 12px;

    background: rgba(255, 255, 255, 0.9);

    font-family: var(--heading);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1px;

    color: var(--dark);
}

.bestseller-content {
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 70px;
}

.bestseller-content h2 {
    margin-bottom: 25px;

    font-size: clamp(33px, 3.7vw, 52px);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -2.2px;
}

.bestseller-content p {
    max-width: 430px;

    margin-bottom: 35px;

    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;

    color: var(--muted);
}

.btn-dark-brand {
    align-self: flex-start;

    display: inline-flex;
    align-items: center;
    gap: 18px;

    padding: 16px 23px;

    border-radius: 0;

    background: var(--dark);

    font-family: var(--heading);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.7px;

    color: #fff;

    transition: background 0.3s ease;
}

.btn-dark-brand:hover {
    background: var(--accent);
    color: #fff;
}


/* =========================================================
   FURNITURE EDITORIAL
========================================================= */

.editorial-section {
    padding: 30px 0;

    background: var(--surface);
}

.editorial-wrapper {
    position: relative;

    min-height: 760px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;
}

.editorial-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 110%;

    object-fit: cover;
}

.editorial-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(12, 14, 11, 0.74) 0%,
            rgba(12, 14, 11, 0.24) 55%,
            rgba(12, 14, 11, 0.03) 100%
        );
}

.editorial-content {
    position: relative;
    z-index: 2;

    max-width: 700px;

    padding: 80px;
}

.editorial-content h2 {
    margin-bottom: 25px;

    font-size: clamp(43px, 5vw, 72px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -3.3px;

    color: #fff;
}

.editorial-content p {
    max-width: 520px;

    margin-bottom: 35px;

    font-size: 17px;
    font-weight: 300;
    line-height: 1.75;

    color: rgba(255, 255, 255, 0.8);
}

.btn-light-brand {
    padding: 15px 26px;

    border-radius: 0;

    background: #fff;

    font-family: var(--heading);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.7px;

    color: var(--dark);

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.btn-light-brand:hover {
    background: var(--accent);
    color: #fff;
}


/* =========================================================
   VALUES
========================================================= */

.values-section {
    padding: 120px 0;

    background: var(--bg);
}

.value-item {
    min-height: 230px;

    padding: 30px 35px 0 0;

    border-top: 1px solid var(--border);
}

.value-number {
    display: block;

    margin-bottom: 45px;

    font-family: var(--heading);
    font-size: 9px;
    font-weight: 600;

    color: var(--accent);
}

.value-item h3 {
    margin-bottom: 14px;

    font-size: 17px;
    font-weight: 500;
}

.value-item p {
    max-width: 340px;

    font-size: 15px;
    line-height: 1.75;

    color: var(--muted);
}


/* =========================================================
   STORY
========================================================= */

.story-section {
    padding: 130px 0;

    background: var(--surface);
}

.story-content {
    max-width: 570px;

    padding-right: 30px;
}

.story-content h2 {
    margin-bottom: 30px;

    font-size: clamp(40px, 4.5vw, 64px);
    font-weight: 500;
    line-height: 1.07;
    letter-spacing: -2.8px;
}

.story-content p {
    margin-bottom: 18px;

    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;

    color: var(--muted);
}

.story-content .text-link {
    margin-top: 18px;
}

.story-image {
    position: relative;

    height: 670px;

    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 110%;

    object-fit: cover;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter-section {
    padding: 120px 0;

    background: var(--accent-light);
}

.newsletter-section h2 {
    margin-bottom: 18px;

    font-size: clamp(34px, 4vw, 50px);
    font-weight: 500;
    letter-spacing: -2px;
}

.newsletter-section p {
    max-width: 520px;

    margin: 0 auto;

    font-size: 16px;

    color: var(--muted);
}

.newsletter-form {
    max-width: 570px;

    margin: 38px auto 0;
}

.newsletter-form .input-group {
    border-bottom: 1px solid var(--dark);
}

.newsletter-form .form-control {
    height: 58px;

    padding: 0;

    border: 0;
    border-radius: 0;

    background: transparent;

    box-shadow: none;

    font-size: 14px;

    color: var(--dark);
}

.newsletter-form .form-control::placeholder {
    color: var(--muted);
}

.newsletter-form .btn {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 0 5px 0 20px;

    border: 0;
    border-radius: 0;

    font-family: var(--heading);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;

    color: var(--dark);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: var(--dark);

    color: rgba(255, 255, 255, 0.6);
}

.footer-main {
    padding: 90px 0 75px;
}

.footer-brand {
    display: inline-block;

    margin-bottom: 22px;

    font-family: var(--heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #fff;
}

.footer-brand span {
    font-family: var(--body);
    font-weight: 300;

    color: #9ba58d;
}

.footer-description {
    max-width: 300px;

    font-size: 15px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;

    margin-top: 28px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;

    color: rgba(255, 255, 255, 0.72);

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s var(--ease);
}

.footer-social a:hover {
    transform: translateY(-3px);

    border-color: #fff;
    background: #fff;

    color: var(--dark);
}

.site-footer h3 {
    margin-bottom: 23px;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    color: #fff;
}

.site-footer li {
    margin-bottom: 10px;
}

.site-footer li a {
    position: relative;

    display: inline-block;

    font-size: 14px;

    color: rgba(255, 255, 255, 0.58);

    transition:
        color 0.3s ease,
        transform 0.3s var(--ease);
}

.site-footer li a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -2px;

    width: 0;
    height: 1px;

    background: rgba(255, 255, 255, 0.7);

    transition: width 0.35s var(--ease);
}

.site-footer li a:hover {
    color: #fff;
}

.site-footer li a:hover::after {
    width: 100%;
}

.footer-bottom {
    padding: 25px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 11px;

    color: rgba(255, 255, 255, 0.4);
}

.footer-payment {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-family: var(--heading);
    font-size: 9px;
    letter-spacing: 0.8px;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.45);
}

.footer-payment i {
    font-size: 15px;

    color: #9ba58d;
}


/* =========================================================
   CART NOTIFICATION
========================================================= */

.cart-notification {
    position: fixed;
    z-index: 9000;

    right: 25px;
    bottom: 25px;

    display: flex;
    align-items: center;
    gap: 14px;

    min-width: 280px;

    padding: 17px 20px;

    transform: translateY(30px);

    visibility: hidden;
    opacity: 0;

    background: var(--dark);

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);

    color: #fff;

    transition:
        opacity 0.35s ease,
        transform 0.4s var(--ease),
        visibility 0.35s ease;
}

.cart-notification.show {
    transform: translateY(0);

    visibility: visible;
    opacity: 1;
}

.cart-notification-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    border-radius: 50%;

    background: var(--accent);

    color: #fff;
}

.cart-notification strong,
.cart-notification span {
    display: block;
}

.cart-notification strong {
    margin-bottom: 2px;

    font-family: var(--heading);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cart-notification span {
    font-size: 12px;

    color: rgba(255, 255, 255, 0.62);
}


/* =========================================================
   ANIMATION HELPERS
========================================================= */

.reveal-up {
    will-change: transform, opacity;
}

.image-reveal {
    position: relative;

    overflow: hidden;
}

.image-reveal img {
    will-change: transform;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .site-header .navbar {
        min-height: 72px;
    }

    .navbar-collapse {
        margin-top: 10px;
        padding: 18px 0 28px;

        border-top: 1px solid var(--border);
    }

    .navbar-nav {
        gap: 34px;
    }

    .navbar-nav .nav-link {
        padding: 12px 0 !important;

        font-size: 11px;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .header-mobile-actions {
        margin-left: auto;
    }

    .hero-wrapper {
        min-height: 760px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(12, 14, 11, 0.7),
                rgba(12, 14, 11, 0.32)
            );
    }

    .hero-title {
        letter-spacing: -2.7px;
    }

    .hero-scroll {
        display: none;
    }

    .brand-intro {
        padding: 100px 0;
    }

    .collections-section {
        padding-bottom: 100px;
    }

    .feature-statement,
    .products-section,
    .story-section {
        padding: 100px 0;
    }

    .statement-image {
        height: 570px;
    }

    .statement-content {
        padding-top: 20px;
    }

    .product-cart-wrap {
        transform: translateY(0);

        opacity: 1;
    }

    .bestseller-section {
        padding-bottom: 100px;
    }

    .bestseller-image {
        height: 570px;
    }

    .bestseller-content {
        padding: 60px;
    }

    .editorial-wrapper {
        min-height: 650px;
    }

    .editorial-content {
        padding: 55px;
    }

    .story-image {
        height: 570px;
    }

    .footer-main {
        padding: 70px 0;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .announcement-bar {
        height: 34px;
    }

    .ticker-wrapper {
        min-height: 34px;

        justify-content: flex-start;
    }

    .ticker-label {
        margin-right: 12px;
        padding-right: 12px;
    }

    .ticker-content {
        min-width: 0;

        font-size: 8px;
        letter-spacing: 0.7px;
    }

    .header-action-btn {
        width: 33px;
        height: 38px;
    }

    .header-action-btn i {
        font-size: 16px;
    }

    .cart-count,
    .wishlist-count {
        top: 1px;
        right: -1px;
    }

    .hero-wrapper {
        min-height: 700px;

        align-items: flex-end;
    }

    .hero-image {
        object-position: 58% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(12, 14, 11, 0.82) 0%,
                rgba(12, 14, 11, 0.42) 65%,
                rgba(12, 14, 11, 0.12) 100%
            );
    }

    .hero-content {
        padding-top: 80px;
        padding-bottom: 65px;
    }

    .hero-title {
        font-size: 43px;
        letter-spacing: -2.1px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;

        margin-top: 32px;
    }

    .brand-intro {
        padding: 80px 0;
    }

    .brand-intro h2 {
        font-size: 34px;
        letter-spacing: -1.5px;
    }

    .brand-intro p {
        font-size: 17px;
    }

    .collections-section {
        padding-bottom: 80px;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .collection-image {
        aspect-ratio: 0.95;
    }

    .text-marquee {
        padding: 21px 0;
    }

    .marquee-content span {
        padding: 0 22px;

        font-size: 24px;
    }

    .feature-statement {
        padding: 80px 0;
    }

    .statement-image {
        height: 500px;
    }

    .statement-content h2 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .products-section {
        padding: 80px 0;
    }

    .product-image {
        aspect-ratio: 0.8;
    }

    .product-wishlist {
        width: 34px;
        height: 34px;
    }

    .product-cart-wrap {
        left: 8px;
        right: 8px;
        bottom: 8px;
    }

    .add-to-cart {
        padding: 12px 13px;

        font-size: 8px;
    }

    .bestseller-section {
        padding: 10px 0 80px;
    }

    .bestseller-image {
        height: 500px;
    }

    .bestseller-content {
        padding: 45px 30px;
    }

    .bestseller-content h2 {
        font-size: 37px;
    }

    .editorial-section {
        padding: 0;
    }

    .editorial-wrapper {
        min-height: 620px;
    }

    .editorial-content {
        padding: 40px 25px;
    }

    .editorial-content h2 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .values-section {
        padding: 80px 0;
    }

    .value-item {
        min-height: auto;

        padding-bottom: 35px;
    }

    .value-number {
        margin-bottom: 28px;
    }

    .story-section {
        padding: 80px 0;
    }

    .story-content {
        padding-right: 0;
    }

    .story-content h2 {
        font-size: 40px;
        letter-spacing: -1.8px;
    }

    .story-image {
        height: 480px;
    }

    .newsletter-section {
        padding: 85px 0;
    }

    .footer-main {
        padding: 65px 0 50px;
    }

    .cart-notification {
        right: 15px;
        bottom: 15px;
        left: 15px;

        min-width: 0;
    }

    .search-close {
        top: 20px;
        right: 20px;
    }

    .search-form input {
        height: 70px;

        font-size: 28px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .preloader-inner {
        min-height: 220px;
        padding: 30px;
    }

    .preloader-brand strong {
        font-size: 38px;
    }

    .preloader-services span {
        font-size: 9px;
        padding: 9px 10px;
    }

    .navbar-brand {
        gap: 4px;
    }

    .brand-main {
        font-size: 12px;
        letter-spacing: 1.3px;
    }

    .brand-mark {
        font-size: 14px;
    }

    .hero-title {
        font-size: 39px;
    }

    .section-heading h2 {
        font-size: 31px;
    }

    .statement-image {
        height: 430px;
    }

    .statement-content h2,
    .editorial-content h2,
    .story-content h2 {
        font-size: 37px;
    }

    .product-badge {
        top: 8px;
        left: 8px;
    }

    .product-wishlist {
        top: 8px;
        right: 8px;

        width: 31px;
        height: 31px;
    }

    .product-wishlist i {
        font-size: 13px;
    }

    .add-to-cart {
        padding: 11px;

        letter-spacing: 0.4px;
    }

    .add-to-cart i {
        font-size: 13px;
    }

    .product-info h3,
    .product-price {
        font-size: 13px;
    }

    .bestseller-image {
        height: 420px;
    }

    .bestseller-content {
        padding: 40px 24px;
    }

    .bestseller-content h2 {
        font-size: 34px;
        letter-spacing: -1.6px;
    }

    .story-image {
        height: 430px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}




/* Sticky + Shrinking Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition:
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.site-header .navbar {
    min-height: 82px;
    transition: min-height 0.35s ease;
}

.site-header .nav-link {
    transition:
        padding 0.35s ease,
        font-size 0.35s ease,
        color 0.3s ease;
}

/* Scrolled state */

.site-header.header-scrolled {
    background: rgba(246, 245, 240, 0.97);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(12px);
}

.site-header.header-scrolled .navbar {
    min-height: 62px;
}

.site-header.header-scrolled .navbar-nav .nav-link {
    padding-top: 19px !important;
    padding-bottom: 19px !important;
}

.site-header.header-scrolled .navbar-nav .nav-link::after {
    bottom: 14px;
}

.site-header.header-scrolled .brand-main {
    font-size: 14px;
}

.site-header.header-scrolled .header-action-btn {
    width: 36px;
    height: 36px;
}





/* =========================================================
   SHOP BUTTON LOADING
========================================================= */

.ajax-cart-form button,
.ajax-wishlist-form button {
    transition:
        opacity 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.ajax-cart-form button:disabled,
.ajax-wishlist-form button:disabled {
    cursor: wait;
}

.shop-button-loader {
    display: inline-block;
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: shopButtonSpin 0.65s linear infinite;
}

@keyframes shopButtonSpin {

    to {
        transform: rotate(360deg);
    }

}

.add-to-cart.is-loading,
.product-add-cart.is-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product-wishlist.is-loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-wishlist.is-loading .shop-button-loader {
    width: 14px;
    height: 14px;
    flex-basis: 14px;
}

.product-wishlist.is-loading span:last-child {
    display: none;
}

.product-wishlist.active {
    color: #171717;
}

.product-wishlist.active i {
    color: #171717;
}


/* =========================================================
   CODROPS-INSPIRED GROWL NOTIFICATION
========================================================= */

.shop-notification {
    position: fixed;
    z-index: 99999;
    top: 30px;
    right: 30px;

    display: grid;
    grid-template-columns: 48px 1fr 32px;
    align-items: center;
    gap: 15px;

    width: min(420px, calc(100vw - 40px));
    min-height: 92px;

    padding: 18px 18px 18px 20px;

    overflow: hidden;

    background: #171717;
    color: #fff;

    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.18);

    opacity: 0;

    transform:
        translateY(-20px)
        scale(0.85);

    transform-origin: top right;

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        transform 0.4s cubic-bezier(
            0.175,
            0.885,
            0.32,
            1.275
        );
}


.shop-notification.show {
    opacity: 1;

    transform:
        translateY(0)
        scale(1);

    pointer-events: auto;
}


.shop-notification.hide {
    opacity: 0;

    transform:
        translateY(-15px)
        scale(0.9);

    pointer-events: none;
}


/* =========================================================
   ICON
========================================================= */

.shop-notification-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.shop-notification-icon i {
    font-size: 21px;
}


/* =========================================================
   CONTENT
========================================================= */

.shop-notification-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.shop-notification-content strong {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.shop-notification-content span {
    color: rgba(255, 255, 255, 0.72);

    font-family: "Lato", sans-serif;
    font-size: 14px;
    line-height: 1.45;
}


/* =========================================================
   CLOSE
========================================================= */

.shop-notification-close {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    padding: 0;

    border: 0;
    background: transparent;

    color: rgba(255, 255, 255, 0.65);

    font-size: 15px;

    cursor: pointer;

    transition: color 0.2s ease;
}

.shop-notification-close:hover {
    color: #fff;
}


/* =========================================================
   PROGRESS
========================================================= */

.shop-notification-progress {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    height: 3px;

    background: rgba(255, 255, 255, 0.65);

    transform-origin: left;

    animation: shopNotificationProgress 4s linear forwards;
}

@keyframes shopNotificationProgress {

    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }

}


/* =========================================================
   ERROR
========================================================= */

.shop-notification-error {
    background: #7c302b;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .shop-notification {
        top: 15px;
        right: 15px;
        left: 15px;

        width: auto;

        grid-template-columns: 42px 1fr 28px;

        min-height: 82px;

        padding: 15px;
    }

    .shop-notification-icon {
        width: 42px;
        height: 42px;
    }

}

/* =========================================================
   VRINDAVAN LIVE REDESIGN
========================================================= */

.vd-home {
    background: #f5f8fb;
}

.vd-home .site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(16, 42, 67, 0.08);
}

.vd-home .navbar-brand {
    gap: 9px;
    padding: 9px 13px;
    border: 1px solid rgba(16, 42, 67, 0.1);
    border-radius: 999px;
    background: #fff;
}

.vd-home .brand-main {
    font-size: 13px;
    letter-spacing: 1.4px;
}

.vd-hero {
    padding: 74px 0 54px;
    background:
        radial-gradient(circle at 10% 10%, rgba(14, 165, 233, 0.16), transparent 34%),
        linear-gradient(135deg, #061826 0%, #102a43 48%, #0f3d4f 100%);
    color: #fff;
}

.vd-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 54px;
    align-items: center;
}

.vd-hero .eyebrow,
.vd-hero .hero-title,
.vd-hero .hero-description {
    color: #fff;
}

.vd-hero .hero-title {
    margin-bottom: 24px;
    font-size: clamp(42px, 5.8vw, 82px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: 0;
}

.vd-hero .hero-description {
    max-width: 680px;
    font-size: 19px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.78);
}

.vd-hero .btn-brand {
    border: 0;
    border-radius: 999px;
    background: #f97316;
    color: #fff;
}

.vd-hero .hero-link {
    border-bottom-color: rgba(255, 255, 255, 0.45);
}

.vd-hero-media {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 32px;
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
}

.vd-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 570px;
    object-fit: cover;
}

.vd-hero-card {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: min(360px, calc(100% - 48px));
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 55px rgba(6, 24, 38, 0.22);
    color: #102a43;
}

.vd-hero-card span {
    display: block;
    margin-bottom: 6px;
    font-family: var(--heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #f97316;
}

.vd-hero-card strong {
    font-size: 18px;
    line-height: 1.35;
}

.vd-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 44px;
}

.vd-hero-stats div,
.vd-step,
.vd-category-tile,
.vd-product-card,
.vd-feature-grid,
.vd-proof-panel {
    border: 1px solid rgba(16, 42, 67, 0.1);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(16, 42, 67, 0.08);
}

.vd-hero-stats div {
    padding: 18px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.vd-hero-stats strong {
    display: block;
    font-family: var(--heading);
    font-size: 26px;
    line-height: 1;
}

.vd-hero-stats span {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.68);
}

.vd-trust-strip {
    padding: 18px 0;
    background: #fff;
    border-bottom: 1px solid rgba(16, 42, 67, 0.08);
}

.vd-strip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.vd-strip-grid span {
    padding: 9px 14px;
    border: 1px solid rgba(16, 42, 67, 0.12);
    border-radius: 999px;
    font-family: var(--heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #102a43;
}

.vd-workflow,
.vd-categories,
.vd-products,
.vd-feature,
.vd-proof {
    padding: 94px 0;
}

.vd-step {
    min-height: 100%;
    padding: 28px;
}

.vd-step > span {
    display: inline-flex;
    margin-bottom: 26px;
    font-family: var(--heading);
    font-size: 12px;
    font-weight: 800;
    color: #f97316;
}

.vd-step i {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 16px;
    background: #e0f2fe;
    font-size: 22px;
    color: #0f6d96;
}

.vd-step h3 {
    margin-bottom: 10px;
    font-size: 20px;
    letter-spacing: 0;
}

.vd-step p {
    color: #627d98;
}

.vd-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.vd-category-tile {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    padding: 24px;
    color: #fff;
}

.vd-category-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.vd-category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 24, 38, 0.18), rgba(6, 24, 38, 0.88));
}

.vd-category-tile:hover img {
    transform: scale(1.06);
}

.vd-category-tile span,
.vd-category-tile h3,
.vd-category-tile p {
    position: relative;
    z-index: 1;
}

.vd-category-tile span {
    display: block;
    margin-bottom: 160px;
    font-family: var(--heading);
    font-size: 12px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.72);
}

.vd-category-tile h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 25px;
    letter-spacing: 0;
}

.vd-category-tile p {
    color: rgba(255, 255, 255, 0.76);
}

.vd-product-card {
    overflow: hidden;
    border-radius: 22px;
}

.vd-product-card .product-image {
    aspect-ratio: 4 / 5;
}

.vd-product-card .product-image img {
    height: 100%;
    object-fit: cover;
}

.vd-product-card .product-info {
    padding: 18px;
}

.vd-feature {
    background: #fff;
}

.vd-feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 0;
    overflow: hidden;
}

.vd-feature-image {
    min-height: 520px;
}

.vd-feature-image img {
    height: 100%;
    object-fit: cover;
}

.vd-feature-copy {
    align-self: center;
    padding: clamp(34px, 5vw, 72px);
}

.vd-feature-copy h2,
.vd-proof-panel h2 {
    margin-bottom: 22px;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: 0;
}

.vd-feature-copy p,
.vd-proof-panel p {
    max-width: 620px;
    margin-bottom: 28px;
    color: #627d98;
}

.vd-proof {
    background: #061826;
}

.vd-proof-panel {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    padding: clamp(34px, 6vw, 82px);
    display: flex;
    align-items: flex-end;
    color: #fff;
}

.vd-proof-panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vd-proof-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 24, 38, 0.92), rgba(6, 24, 38, 0.42));
}

.vd-proof-panel > div {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.vd-proof-panel h2 {
    color: #fff;
}

.vd-proof-panel p {
    color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 991.98px) {
    .vd-hero-grid,
    .vd-feature-grid,
    .vd-category-grid {
        grid-template-columns: 1fr;
    }

    .vd-hero-media,
    .vd-hero-media img {
        min-height: 420px;
    }

    .vd-hero-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .vd-hero,
    .vd-workflow,
    .vd-categories,
    .vd-products,
    .vd-feature,
    .vd-proof {
        padding: 58px 0;
    }

    .vd-hero .hero-title {
        font-size: 42px;
    }

    .vd-category-tile {
        min-height: 310px;
    }
}
