html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

:root {
    --veebaby-pink: #ffb6c1;
    --veebaby-pink-dark: #ff8fa3;
    --veebaby-ink: #1f2937;
    --veebaby-muted: #6b7280;
    --veebaby-bg: #ffffff;
    --veebaby-page-bg: #fff7f9;
    --veebaby-border: rgba(0, 0, 0, 0.08);
    --veebaby-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
}

body {
    background: white;
    color: var(--veebaby-ink);
}

h1:focus {
    outline: none;
}

a, .btn-link {
    color: #0071c1;
}

.veebaby-navbar {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    position: sticky;
    top: 0;
    z-index: 6000;
}

.veebaby-navbar .navbar-brand {
    color: var(--veebaby-ink);
    letter-spacing: 0.2px;
    padding-top: 0;
    padding-bottom: 0;
    height: 40px;
    line-height: 1;
    height: max-content;
}

.veebaby-logo {
    height: 120px;
    width: 120px;
    border-radius: 10px;
    object-fit: contain;
    background: transparent;
}

.veebaby-wordmark {
    color: var(--veebaby-ink);
    letter-spacing: 0.3px;
    font-size: 1.1rem;
    line-height: 1;
}

.veebaby-navbar .navbar-nav {
    align-items: center;
    gap: 0.25rem;
}

.veebaby-navbar .navbar-collapse {
    align-items: center;
}

@media (max-width: 991.98px) {
    .veebaby-navbar .navbar-collapse {
        padding-top: 10px;
        padding-bottom: 6px;
    }

    .veebaby-navbar .navbar-nav {
        align-items: flex-start;
        gap: 6px;
        margin-left: 2em;
    }

    .veebaby-navlink {
        height: 36px;
    }
    .veebaby-navlink.active::after {
        transform: scaleX(2) !important;
    }
}

@media (max-width: 1023.98px) {
    .veebaby-navlink::after {
        bottom: 3px;
        left: 0.75rem;
        right: 0.75rem;
    }
}

.veebaby-navbar-row {
    min-height: 64px;
}

@media (min-width: 768px) {
    .veebaby-navbar-row {
        display: flex;
    }

    .veebaby-navbar .navbar-nav {
        gap: 16px;
        display: flex;
        flex-direction: row !important;
        margin-right: auto !important;
        margin-left: auto !important;
    }
}

.veebaby-navbar .nav-link {
    color: var(--veebaby-ink);
    padding: 0;
}

.veebaby-navlink {
    color: var(--veebaby-ink) !important;
    opacity: 1;
    font-weight: 600;
    padding: 0 0.75rem;
    display: inline-flex;
    align-items: center;
    height: 40px;
    line-height: 1;
    position: relative;
}

.veebaby-navlink:hover {
    opacity: 1;
}

.veebaby-navlink.active {
    opacity: 1;
}

.veebaby-navlink::after {
    content: "";
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 8px;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 160ms ease;
    opacity: 0.9;
}

.veebaby-navlink:hover::after,
.veebaby-navlink.active::after {
    transform: scaleX(1);
}

.veebaby-navbar .nav-link.active {
    font-weight: 600;
}

.veebaby-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.veebaby-cart-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.veebaby-cart-icon svg {
    display: block;
    width: 24px;
    height: 24px;
}

.veebaby-cart-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    margin-left: 0;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--veebaby-pink-dark);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.veebaby-mini-cart-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: transparent;
}

.veebaby-mini-cart {
    width: 340px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(17, 24, 39, 0.96);
    color: white;
}

.veebaby-mini-cart .veebaby-muted {
    color: rgba(255, 255, 255, 0.72);
}

.veebaby-mini-cart-items {
    max-height: 260px;
    overflow: auto;
    padding-right: 6px;
}

.veebaby-mini-cart-items::-webkit-scrollbar {
    width: 8px;
}

.veebaby-mini-cart-items::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
}

.veebaby-mud-cart-btn {
    color: var(--veebaby-ink);
}

.veebaby-mud-badge .mud-badge {
    font-weight: 700;
}

.veebaby-nav-wishlist .veebaby-mud-badge .mud-badge {
    font-weight: 700;
    transform: translate(10px, -13px);
}

.veebaby-toast {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 2000;
}

.veebaby-toast-body {
    background: rgba(31, 41, 55, 0.92);
    color: white;
    padding: 10px 14px;
    border-radius: 999px;
    box-shadow: var(--veebaby-shadow);
    font-weight: 600;
}

.btn-veebaby {
    color: var(--veebaby-ink);
    background-color: var(--veebaby-pink);
    border-color: var(--veebaby-pink);
}

.btn-veebaby:hover {
    color: var(--veebaby-ink);
    background-color: var(--veebaby-pink-dark);
    border-color: var(--veebaby-pink-dark);
}

.veebaby-contact-hero {
    background: #fbf6ee;
    position: relative;
    padding: 64px 0;
    margin-bottom: 28px;
}

.veebaby-contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../images/header-bg.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.38;
    pointer-events: none;
    z-index: 0;
}

.veebaby-contact-hero-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.veebaby-contact-hero-titlewrap {
    position: relative;
    display: block;
    padding: 10px 18px;
}

.veebaby-contact-hero-title {
    position: relative;
    z-index: 1;
    margin: 0;
    font-weight: 800;
    color: #132640;
    font-size: clamp(2rem, 3.4vw, 3.1rem);
}

.veebaby-contact-hero-breadcrumb {
    margin-top: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    font-weight: 800;
    color: rgba(19, 38, 64, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    width: 100%;
}

.veebaby-breadcrumb-link {
    color: inherit;
    text-decoration: none;
}

.veebaby-breadcrumb-link:hover {
    color: rgba(19, 38, 64, 0.85);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.veebaby-breadcrumb-sep {
    width: 18px;
    height: 1px;
    background: rgba(19, 38, 64, 0.35);
}

.veebaby-breadcrumb-current {
    color: rgba(19, 38, 64, 0.55);
}

.veebaby-shop-hero {
    background: #fbf6ee;
    position: relative;
    padding: 64px 0;
    margin-bottom: 28px;
}

.veebaby-shop-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../images/header-bg.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.38;
    pointer-events: none;
    z-index: 0;
}

.veebaby-shop-hero-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.veebaby-shop-hero-titlewrap {
    position: relative;
    display: block;
    padding: 10px 18px;
}

.veebaby-shop-hero-title {
    margin: 0;
    font-weight: 800;
    color: #132640;
    font-size: clamp(2rem, 3.4vw, 3.1rem);
}

.veebaby-shop-hero-breadcrumb {
    margin-top: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    font-weight: 800;
    color: rgba(19, 38, 64, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    width: 100%;
}

.veebaby-shop {
    max-width: 1400px;
    margin: 0 auto 64px;
    padding: 0 1rem;
}

.veebaby-shop-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 2.25rem;
    align-items: start;
}

.veebaby-shop-filters {
    position: sticky;
    top: 92px;
    align-self: start;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 18px 18px 6px;
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

.veebaby-shop-filter-block {
    padding: 6px 0 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 18px;
}

.veebaby-shop-filter-block:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

.veebaby-shop-filter-title {
    font-weight: 800;
    color: #132640;
    font-size: 0.92rem;
    margin-bottom: 10px;
}

.veebaby-shop-filter-links {
    display: grid;
    gap: 12px;
    margin-top: 2em;
}

.veebaby-shop-filter-link {
    display: block;
    text-decoration: none;
    color: rgba(19, 38, 64, 0.68);
    font-weight: 600;
    font-size: 0.9rem;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    width: 100%;
    font-family: inherit;
}

.veebaby-shop-filter-link:hover {
    color: rgba(19, 38, 64, 0.9);
}

.veebaby-shop-filter-link.is-active {
    color: #132640;
    font-weight: 800;
}

.veebaby-shop-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.veebaby-shop-chip {
    border: 1px solid rgba(19, 38, 64, 0.16);
    background: rgba(255, 255, 255, 0.95);
    color: rgba(19, 38, 64, 0.8);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 120ms ease;
}

.veebaby-shop-chip:hover {
    border-color: var(--veebaby-pink-dark);
    color: var(--veebaby-pink-dark);
}

.veebaby-shop-chip.is-active {
    background: var(--veebaby-pink);
    border-color: var(--veebaby-pink);
    color: #fff;
}

.veebaby-shop-filter-colors {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 4px;
}

.veebaby-shop-color {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 0;
    background: var(--c);
    box-shadow: 0 0 0 1px rgba(19, 38, 64, 0.25);
    cursor: pointer;
    transition: all 120ms ease;
}

.veebaby-shop-color:hover {
    transform: scale(1.2);
}

.veebaby-shop-color.is-active {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--veebaby-ink);
}

.veebaby-shop-price {
    display: grid;
    gap: 10px;
}

.veebaby-shop-price-values {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 800;
    color: rgba(19, 38, 64, 0.75);
    font-size: 0.9rem;
}

.veebaby-shop-price-sliders {
    position: relative;
    height: 28px;
}

.veebaby-shop-range {
    position: absolute;
    left: 0;
    right: 0;
    top: 6px;
    width: 100%;
    pointer-events: none;
    accent-color: var(--veebaby-pink-dark);
    background: transparent;
}

.veebaby-shop-range::-webkit-slider-runnable-track {
    height: 4px;
    border-radius: 999px;
    background: rgba(19, 38, 64, 0.16);
}

.veebaby-shop-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--veebaby-pink-dark);
    border: 2px solid white;
    margin-top: -5px;
    box-shadow: 0 6px 14px rgba(17, 24, 39, 0.18);
    pointer-events: auto;
}

.veebaby-shop-range::-moz-range-track {
    height: 4px;
    border-radius: 999px;
    background: rgba(19, 38, 64, 0.16);
}

.veebaby-shop-range::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--veebaby-pink-dark);
    border: 2px solid white;
    box-shadow: 0 6px 14px rgba(17, 24, 39, 0.18);
    pointer-events: auto;
}

.veebaby-shop-toprow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.veebaby-shop-search-input {
    border: 1px solid rgba(19, 38, 64, 0.16);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #132640;
    background: #fff;
    outline: none;
    width: 180px;
    transition: border-color 120ms ease;
}

.veebaby-shop-search-input::placeholder {
    color: rgba(19, 38, 64, 0.4);
    font-weight: 600;
}

.veebaby-shop-search-input:focus {
    border-color: var(--veebaby-pink-dark);
}

.veebaby-shop-count {
    color: rgba(19, 38, 64, 0.55);
    font-weight: 700;
    font-size: 0.9rem;
}

.veebaby-shop-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.veebaby-shop-sort-label {
    color: rgba(19, 38, 64, 0.55);
    font-weight: 800;
    font-size: 0.85rem;
}

.veebaby-shop-cards {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 18px;
}

.veebaby-shop-card {
background: transparent;
display: flex;
flex-direction: column;
}

.veebaby-shop-card-media {
position: relative;
border-radius: 16px;
overflow: hidden;
background: #fbf7f0;
aspect-ratio: 1 / 1;
box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
}

.veebaby-shop-card-link {
display: grid;
place-items: center;
width: 100%;
height: 100%;
text-decoration: none;
color: inherit;
}

.veebaby-shop-img {
width: 100%;
height: 100%;
object-fit: contain;
transform: scale(1);
transition: transform 260ms ease;
}

.veebaby-shop-card:hover .veebaby-shop-img {
transform: scale(1.03);
}

.veebaby-shop-img-placeholder {
width: 100%;
height: 100%;
background:
radial-gradient(260px 180px at 35% 30%, rgba(255, 182, 193, 0.25), rgba(255, 255, 255, 0)),
radial-gradient(280px 220px at 70% 70%, rgba(253, 230, 138, 0.20), rgba(255, 255, 255, 0)),
#fbf7f0;
}

.veebaby-shop-fav {
position: absolute;
top: 12px;
right: 12px;
width: 34px;
height: 34px;
border-radius: 999px;
border: 1px solid rgba(15, 23, 42, 0.10);
background: rgba(255, 255, 255, 0.95);
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0;
color: rgba(19, 38, 64, 0.65);
z-index: 10;
cursor: pointer;
transition: color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.veebaby-shop-fav:hover {
color: #e11d48;
border-color: #e11d48;
transform: scale(1.1);
}

.veebaby-shop-fav.is-wishlisted {
color: #e11d48;
border-color: #e11d48;
}

.veebaby-shop-fav.is-wishlisted:hover {
transform: scale(1.1);
}

.veebaby-shop-badge {
position: absolute;
top: 12px;
left: 12px;
background: rgba(15, 23, 42, 0.92);
color: white;
font-weight: 800;
font-size: 0.7rem;
letter-spacing: 0.14em;
text-transform: uppercase;
border-radius: 999px;
padding: 6px 10px;
}

.veebaby-shop-card-info {
padding: 12px 4px 0;
display: flex;
flex-direction: column;
flex: 1;
}

.veebaby-shop-card-name {
font-weight: 800;
color: #132640;
font-size: 0.98rem;
margin-bottom: 4px;
}

.veebaby-shop-card-price {
color: rgba(19, 38, 64, 0.7);
font-weight: 700;
font-size: 0.92rem;
margin-bottom: 10px;
}

.veebaby-shop-card-actions {
    margin-top: auto;
    padding-top: 6px;
}

.veebaby-shop-card-action-link,
.veebaby-wishlist-action-link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 6px;
    background: none;
    border: none;
    padding: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--veebaby-ink, #132640);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.15s ease;
}

.veebaby-shop-card-action-link:hover,
.veebaby-wishlist-action-link:hover {
    color: var(--veebaby-pink-dark, #e91e8c);
}

.veebaby-shop-card-action-link:disabled,
.veebaby-wishlist-action-link:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    color: var(--veebaby-muted);
}

.veebaby-shop-card-action-link:disabled:hover,
.veebaby-wishlist-action-link:disabled:hover {
    color: var(--veebaby-muted);
}

/* ── Quick View: Shop Card Overlay ── */
.veebaby-shop-quickview {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 0;
    background: rgba(15, 23, 42, 0.55);
    color: white;
    font-weight: 700;
    font-size: 0.82rem;
    border: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 5;
}

.veebaby-shop-card-media:hover .veebaby-shop-quickview {
    opacity: 1;
    transform: translateY(0);
}

.veebaby-shop-quickview:hover {
    background: rgba(15, 23, 42, 0.72);
}

.veebaby-shop-loadmore {
display: flex;
justify-content: center;
padding-top: 26px;
}

@media (max-width: 1200px) {
.veebaby-shop-cards {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}

@media (max-width: 992px) {
.veebaby-shop-grid {
grid-template-columns: 1fr;
}

.veebaby-shop-filters {
position: static;
}

.veebaby-shop-cards {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

@media (max-width: 576px) {
.veebaby-shop-cards {
grid-template-columns: 1fr;
}
}

.veebaby-contact {
max-width: 1160px;
margin: 0 auto 64px;
padding: 0 1rem;
}

.veebaby-contact-grid {
display: grid;
grid-template-columns: 1fr 1.25fr;
gap: 2.25rem;
align-items: start;
}

.veebaby-contact-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    font-weight: 800;
    color: rgba(19, 38, 64, 0.6);
    margin-bottom: 14px;
}

.veebaby-contact-heading {
    font-size: clamp(1.8rem, 2.4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 14px;
    color: #132640;
}

.veebaby-contact-text {
    color: var(--veebaby-muted);
    margin-bottom: 18px;
    max-width: 440px;
}

.veebaby-contact-details {
    display: grid;
    gap: 10px;
    margin-top: 16px;
    color: #132640;
}

.veebaby-contact-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.92rem;
}

.veebaby-contact-detail-ico {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255, 182, 193, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #132640;
}

.veebaby-contact-right {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 8px;
}

.veebaby-contact-success {
    text-align: center;
    padding: 48px 24px;
}

.veebaby-contact-success h3 {
    margin: 16px 0 8px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #132640;
}

.veebaby-contact-success p {
    color: var(--veebaby-muted);
    margin-bottom: 24px;
}

.veebaby-contact-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.veebaby-contact-admin-dot {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #dc2626;
}

@media (max-width: 991.98px) {
    .veebaby-contact-grid {
        grid-template-columns: 1fr;
    }
}

.veebaby-hero {
    background: radial-gradient(1200px 300px at 20% 10%, rgba(255, 182, 193, 0.40), rgba(255, 255, 255, 0)) ,
                linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.92));
    box-shadow: var(--veebaby-shadow);
}

.veebaby-hero-banner {
    background: #f7f1e8;
    border: 0;
    box-shadow: none;
    overflow: visible;
}

.veebaby-hero-shell {
    background: #f7f1e8;
    border-radius: 1.5rem;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
    overflow: hidden;
    position: relative;
}

.veebaby-hero-shell.veebaby-fullbleed {
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
}

.veebaby-fullbleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.veebaby-hero-wave {
    position: relative;
    width: 100%;
    height: 40px;
    line-height: 0;
    pointer-events: none;
}

.veebaby-hero-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

.veebaby-hero-wave-fill {
    fill: var(--veebaby-page-bg);
}

.veebaby-hero-wave-top {
    transform: rotate(180deg);
    background: white;
}

.veebaby-hero-wave-bottom {
    transform: none;
    background: white;
}

.veebaby-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    align-items: center;
    padding: 2.5rem 2rem;
    position: relative;
}

.veebaby-hero-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: #fff7f9;
}

.veebaby-hero-content,
.veebaby-hero-media {
    position: relative;
    z-index: 1;
}

.veebaby-hero-media {
    position: relative;
    z-index: 1;
}

.veebaby-hero-float {
    position: absolute;
    display: inline-flex;
    --float-scale: 1;
    transform: translate3d(0, 0, 0) scale(var(--float-scale));
    animation: veebaby-hero-float 6.5s ease-in-out infinite;
    will-change: transform;
}

@keyframes veebaby-hero-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(var(--float-scale));
    }

    50% {
        transform: translate3d(0, -12px, 0) scale(var(--float-scale));
    }
}

.veebaby-hero-float-1 {
    left: 48%;
    top: 8%;
    animation-duration: 7.2s;
    --float-scale: 1.15;
}

.veebaby-hero-float-2 {
    left: 58%;
    top: 10%;
    animation-duration: 8.4s;
    animation-delay: -1.2s;
    --float-scale: 0.95;
}

.veebaby-hero-float-3 {
    left: 42%;
    top: 58%;
    animation-duration: 6.6s;
    animation-delay: -2.4s;
    --float-scale: 1;
}

.veebaby-hero-float-4 {
    right: 6%;
    top: 62%;
    animation-duration: 7.8s;
    animation-delay: -3.1s;
    --float-scale: 1.05;
}

.veebaby-hero-float-5 {
    left: 4%;
    top: 34%;
    animation-duration: 9.2s;
    animation-delay: -1.8s;
    --float-scale: 1;
}

.veebaby-hero-float-6 {
    left: 18%;
    top: 70%;
    animation-duration: 7.9s;
    animation-delay: -2.1s;
    --float-scale: 1.05;
}

.veebaby-hero-float-7 {
    right: 6%;
    top: 16%;
    animation-duration: 10.2s;
    animation-delay: -4.6s;
    --float-scale: 0.9;
    opacity: 0.7;
}

.veebaby-hero-float-8 {
    left: 10%;
    top: 12%;
    animation-duration: 8.7s;
    animation-delay: -3.4s;
    --float-scale: 0.95;
}

@media (prefers-reduced-motion: reduce) {
    .veebaby-hero-float {
        animation: none;
    }
}

.veebaby-hero-content {
    max-width: 560px;
}

.veebaby-hero-kicker {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: rgba(19, 38, 64, 0.7);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.veebaby-hero-title {
    color: #132640;
    font-weight: 800;
    line-height: 1.05;
    font-size: clamp(2rem, 3.4vw, 3.5rem);
    margin: 0 0 0.9rem;
}

.veebaby-hero-subtitle {
    color: rgba(19, 38, 64, 0.7);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 1.25rem;
    max-width: 34rem;
}

.veebaby-hero-media {
    position: relative;
    min-height: 260px;
}

.veebaby-hero-media-bg {
    position: absolute;
    inset: -40px -60px -40px -40px;
    background:
        radial-gradient(260px 260px at 20% 25%, rgba(255, 182, 193, 0.55), rgba(255, 182, 193, 0)),
        radial-gradient(260px 260px at 70% 70%, rgba(238, 161, 44, 0.35), rgba(238, 161, 44, 0)),
        radial-gradient(360px 360px at 80% 20%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
    border-radius: 2rem;
    filter: blur(0.2px);
}

.veebaby-hero-media-img {
    position: relative;
    width: min(440px, 100%);
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transform: rotate(-2deg);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
}

.veebaby-logo-strip {
    display: flex;
    justify-content: center;
}

.veebaby-home-logos,
.veebaby-home-categories,
.veebaby-home-bestsellers {
    background: white;
    padding-top: 10px;
    padding-bottom: 10px;
}

.veebaby-home-types {
    background: white;
    padding-top: 18px;
    padding-bottom: 26px;
    width: min(1600px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.veebaby-home-logos .veebaby-logo-strip,
.veebaby-home-categories,
.veebaby-home-bestsellers {
    width: min(1600px, 100%);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.veebaby-home-types .veebaby-types-strip {
    width: min(1400px, 100%);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.veebaby-types-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    width: 100% !important;
    gap: 45px;
}

.veebaby-type-chip {
    text-decoration: none;
    color: inherit;
    display: grid;
    gap: 8px;
}

.veebaby-type-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    object-fit: cover;
    background: rgba(15, 23, 42, 0.04);
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
    transform: translate3d(0, 0, 0);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.veebaby-type-label {
    text-align: center;
    font-weight: 700;
    font-size: 0.92rem;
}

.veebaby-type-chip:hover .veebaby-type-img {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 44px rgba(17, 24, 39, 0.12);
}

@media (max-width: 992px) {
    .veebaby-types-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .veebaby-types-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.veebaby-logo-strip-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    padding: 10px 0;
    opacity: 0.65;
}

.veebaby-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.6;
    transition: filter 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.veebaby-logo-img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-1px);
}

.veebaby-logo-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    font-weight: 800;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    color: rgba(19, 38, 64, 0.55);
    text-transform: uppercase;
    background: transparent;
    border: 0;
}

.veebaby-category-card {
    border-radius: 14px;
    overflow: hidden;
    border: 0;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
    position: relative;
    transform: translate3d(0, 0, 0);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.veebaby-category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 44px rgba(17, 24, 39, 0.12);
}

.veebaby-category-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 320ms ease;
}

.veebaby-category-card:hover .veebaby-category-img {
    transform: scale(1.03);
}

.veebaby-category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.28));
    pointer-events: none;
}

.veebaby-category-label {
    position: absolute;
    left: 14px;
    bottom: 14px;
    font-weight: 800;
    color: white;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.veebaby-category-title {
    font-size: 1.05rem;
    line-height: 1.05;
}

.veebaby-category-cta {
    margin-top: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 220ms ease, transform 220ms ease;
}

.veebaby-category-card:hover .veebaby-category-cta {
    opacity: 0.95;
    transform: translateY(0);
}

.veebaby-bestsellers-head {
    position: relative;
    text-align: center;
}

.veebaby-bestsellers-kicker {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.55);
}

.veebaby-bestsellers-title {
    margin: 6px 0 0;
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
}

.veebaby-bestsellers-viewall {
    position: absolute;
    right: 0;
    bottom: 4px;
}

.veebaby-product-card {
    position: relative;
    border-radius: 16px;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: hidden;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.veebaby-product-card:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.veebaby-product-media {
    background: #fbf7f0;
    border-radius: 16px;
    margin: 0;
    aspect-ratio: 1 / 1;
    min-height: 320px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.veebaby-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0;
    transform: scale(1);
    transition: transform 260ms ease;
}

.veebaby-product-card:hover .veebaby-product-img {
    transform: scale(1.03);
}

.veebaby-product-img-placeholder {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(260px 180px at 35% 30%, rgba(255, 182, 193, 0.25), rgba(255, 255, 255, 0)),
        radial-gradient(280px 220px at 70% 70%, rgba(253, 230, 138, 0.20), rgba(255, 255, 255, 0)),
        #fbf7f0;
}

.veebaby-product-info {
    padding: 12px 4px 0;
}

.veebaby-product-name {
    font-weight: 700;
    font-size: 0.98rem;
    margin-bottom: 4px;
}

.veebaby-product-price {
    color: rgba(15, 23, 42, 0.70);
    font-weight: 600;
    font-size: 0.92rem;
}

.veebaby-product-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.veebaby-product-side {
    display: grid;
    justify-items: end;
    gap: 8px;
    padding-top: 2px;
}

.veebaby-product-meta {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.veebaby-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    user-select: none;
}

.veebaby-star-dim {
    opacity: 0.25;
}

.veebaby-swatches {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.veebaby-swatch-btn {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.18);
    transition: transform 140ms ease, box-shadow 140ms ease;
}

.veebaby-swatch-btn:hover {
    box-shadow:
        0 0 0 1px rgba(15, 23, 42, 0.18),
        0 0 0 4px rgba(15, 23, 42, 0.10);
}

.veebaby-swatch-btn.is-active {
    box-shadow:
        0 0 0 1px rgba(15, 23, 42, 0.18),
        0 0 0 4px rgba(15, 23, 42, 0.14);
}

.veebaby-swatch-1 { background: #0f172a; }
.veebaby-swatch-2 { background: #60a5fa; }
.veebaby-swatch-3 { background: #e5e7eb; }

@media (max-width: 992px) {
    .veebaby-product-media {
        min-height: 280px;
    }
}

@media (max-width: 576px) {
    .veebaby-product-media {
        min-height: 240px;
    }
}

.veebaby-fav-btn {
    z-index: 1;
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(255, 255, 255, 0.95);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.veebaby-fav-btn:hover {
    color: #e11d48;
    border-color: #e11d48;
    transform: scale(1.1);
}

.veebaby-fav-btn.is-wishlisted {
    color: #e11d48;
    border-color: #e11d48;
}

.veebaby-fav-btn.is-wishlisted:hover {
    transform: scale(1.1);
}

.veebaby-fav-btn svg {
    width: 18px;
    height: 18px;
    color: rgba(15, 23, 42, 0.70);
}

.veebaby-fav-btn.is-wishlisted svg {
    color: #e11d48;
}

.veebaby-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #f59e0b;
    color: white;
    font-weight: 800;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    border-radius: 999px;
    padding: 4px 10px;
}

@media (max-width: 992px) {
    .veebaby-hero-float-1 {
        left: 72%;
        top: 10%;
    }

    .veebaby-hero-float-2 {
        left: 18%;
        top: 14%;
    }

    .veebaby-hero-float-3 {
        left: 18%;
        top: 78%;
    }

    .veebaby-hero-float-4 {
        right: 10%;
        top: 60%;
    }

    .veebaby-hero-float-5 {
        left: 6%;
        top: 46%;
    }

    .veebaby-hero-float-6 {
        left: 8%;
        top: 18%;
    }

    .veebaby-hero-float-7 {
        right: 8%;
        top: 30%;
    }

    .veebaby-hero-float-8 {
        left: 74%;
        top: 40%;
    }

    .veebaby-hero-media {
        min-height: 220px;
        order: -1;
    }
    .veebaby-hero-media-bg {
        inset: -30px -30px -30px -30px;
    }
}

.veebaby-card:hover {
    box-shadow: var(--veebaby-shadow);
    transform: translateY(-1px);
    transition: box-shadow 140ms ease, transform 140ms ease;
}

.veebaby-card-link {
    text-decoration: none;
    color: inherit;
}

.veebaby-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.veebaby-muted {
    color: var(--veebaby-muted);
}

.veebaby-price {
    font-weight: 700;
    letter-spacing: 0.2px;
}

.veebaby-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.35), rgba(255, 255, 255, 1));
}

.veebaby-img-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: radial-gradient(400px 160px at 20% 20%, rgba(255, 182, 193, 0.55), rgba(255, 255, 255, 0.0)),
                linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.9));
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: none;
}

.invalid {
    outline: none;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #1b6ec2;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }

code {
    color: #c02d76;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.veebaby-footer {
    background: #fbf7f0;
    width: 100%;
    margin-top: 56px;
    overflow-x: clip;
    font-size: 14px;
    line-height: 1.4;
}

.veebaby-footer * {
    box-sizing: border-box;
}

.veebaby-footer-wave {
    height: 28px;
    overflow: hidden;
    background: white;
}

.veebaby-footer-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.veebaby-footer-wave-fill {
    fill: #fbf7f0;
}

.veebaby-footer-container {
    width: min(1200px, 100%);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.veebaby-footer-features {
    padding: 48px 0 18px;
}

.veebaby-footer-features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px;
}

.veebaby-footer-feature {
    display: grid;
    justify-items: start;
    gap: 8px;
    place-self: center;
}

.veebaby-footer-feature-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: rgba(19, 38, 64, 0.6);
}

.veebaby-footer-feature-icon svg {
    width: 28px;
    height: 28px;
    max-width: 28px;
    max-height: 28px;
    display: block;
}

.veebaby-footer-feature-title {
    font-weight: 800;
    font-size: 0.95rem;
    color: #132640;
}

.veebaby-footer-feature-text {
    color: rgba(19, 38, 64, 0.65);
    font-size: 0.82rem;
    line-height: 1.55;
    max-width: 28ch;
}

.veebaby-footer-instagram {
    padding: 24px 0 10px;
}

.veebaby-footer-instagram-label {
    display: grid;
    justify-items: center;
    margin-bottom: 14px;
}

.veebaby-footer-instagram-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    color: rgba(19, 38, 64, 0.65);
}

.veebaby-footer-instagram-icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

.veebaby-footer-ig-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
    align-items: center;
}

.veebaby-footer-ig-item {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
    cursor: default;
}

.veebaby-footer-ig-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    filter: none;
    transform: scale(1);
    transition: transform 180ms ease, filter 180ms ease;
}

.veebaby-footer-ig-item:hover img {
    filter: brightness(0.85);
    transform: scale(1.02);
}

.veebaby-footer-bottom {
    padding: 32px 0 28px;
    display: grid;
    justify-items: center;
    gap: 14px;
}

.veebaby-footer-logo img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.veebaby-footer-nav {
    display: inline-flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.veebaby-footer-nav a {
    text-decoration: none;
    color: rgba(19, 38, 64, 0.8);
    font-weight: 700;
    font-size: 0.82rem;
}

.veebaby-footer-nav a:hover {
    color: #132640;
}

.veebaby-footer-social {
    display: inline-flex;
    justify-content: center;
    gap: 10px;
}

.veebaby-footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(19, 38, 64, 0.10);
    color: rgba(19, 38, 64, 0.85);
    text-decoration: none;
}

.veebaby-footer-social svg {
    width: 16px;
    height: 16px;
    display: block;
}

.veebaby-footer-copy {
    margin-top: 8px;
    text-align: center;
    color: rgba(19, 38, 64, 0.55);
    font-size: 0.78rem;
    font-weight: 600;
}

@media (max-width: 992px) {
    .veebaby-footer-features-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .veebaby-footer-feature-text {
        max-width: none;
    }

    .veebaby-footer-ig-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .veebaby-footer-ig-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

/* ========== Product Details Page (PDP) ========== */
.veebaby-pdp {
    background: #fbf6ee;
    padding: 32px 24px 48px;
    margin: -1rem -1.5rem 0;
}

.veebaby-pdp-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1800px;
    margin: 0 auto;
}

.veebaby-pdp-gallery {
    display: flex;
    gap: 16px;
}

.veebaby-pdp-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 72px;
    flex-shrink: 0;
}

.veebaby-pdp-thumb {
    width: 72px;
    height: 72px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    cursor: pointer;
    padding: 0;
}

.veebaby-pdp-thumb.active {
    border-color: var(--veebaby-pink-dark);
}

.veebaby-pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.veebaby-pdp-image {
    flex: 1;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    max-height: 650px;
    max-width: 700px;
}

.veebaby-pdp-image img {
    width: 100%;
    height: 100%;
}

.veebaby-pdp-img-placeholder {
    width: 100%;
    height: 400px;
    background: #f3f4f6;
}

.veebaby-pdp-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.veebaby-pdp-breadcrumb {
    font-size: 0.82rem;
    color: var(--veebaby-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.veebaby-pdp-breadcrumb a {
    color: var(--veebaby-muted);
    text-decoration: none;
}

.veebaby-pdp-breadcrumb a:hover {
    text-decoration: underline;
}

.veebaby-pdp-sep {
    color: #ccc;
}

.veebaby-pdp-badge {
    display: inline-block;
    background: var(--veebaby-pink);
    color: var(--veebaby-ink);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    width: fit-content;
}

.veebaby-pdp-badge-out {
    background: #ef4444;
    color: white;
}

.veebaby-pdp-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    color: var(--veebaby-ink);
}

.veebaby-pdp-brand {
    font-size: 0.9rem;
    color: var(--veebaby-muted);
}

.veebaby-pdp-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 4px;
}

.veebaby-pdp-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--veebaby-pink-dark);
}

.veebaby-pdp-rating {
    display: flex;
    gap: 2px;
}

.veebaby-pdp-rating svg {
    color: #e5e7eb;
}

.veebaby-pdp-rating svg.filled {
    color: #f59e0b;
}

.veebaby-pdp-size {
    margin-top: 8px;
}

.veebaby-pdp-option {
    margin-top: 8px;
}

.veebaby-pdp-option-label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.veebaby-pdp-option-values {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.veebaby-pdp-color-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    cursor: pointer;
    transition: all 120ms ease;
    padding: 0;
}

.veebaby-pdp-color-swatch:hover {
    border-color: var(--veebaby-pink-dark);
    transform: scale(1.1);
}

.veebaby-pdp-color-swatch.active {
    border-color: var(--veebaby-ink);
    box-shadow: 0 0 0 2px white, 0 0 0 4px var(--veebaby-ink);
}

.veebaby-pdp-size-label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.veebaby-pdp-size-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.veebaby-pdp-size-btn {
    padding: 6px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: white;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 120ms ease;
}

.veebaby-pdp-size-btn:hover {
    border-color: var(--veebaby-pink-dark);
}

.veebaby-pdp-size-btn.active {
    background: var(--veebaby-pink);
    border-color: var(--veebaby-pink);
    font-weight: 600;
}

.veebaby-pdp-total {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.veebaby-pdp-total-label {
    font-size: 0.9rem;
    color: var(--veebaby-muted);
}

.veebaby-pdp-total-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--veebaby-ink);
}

.veebaby-pdp-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.veebaby-pdp-qty {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.veebaby-pdp-qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.veebaby-pdp-qty-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.veebaby-pdp-qty-val {
    width: 32px;
    text-align: center;
    font-weight: 600;
}

.veebaby-pdp-buy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--veebaby-pink);
    border: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 120ms ease;
}

.veebaby-pdp-buy:hover {
    background: var(--veebaby-pink-dark);
}

.veebaby-pdp-buy:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.veebaby-pdp-fav {
    width: 44px;
    height: 44px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--veebaby-muted);
    transition: all 120ms ease;
}

.veebaby-pdp-fav:hover {
    border-color: #e11d48;
    color: #e11d48;
    transform: scale(1.08);
}

.veebaby-pdp-fav.is-wishlisted {
    border-color: #e11d48;
    color: #e11d48;
    background: #fff1f2;
}

.veebaby-pdp-fav.is-wishlisted:hover {
    transform: scale(1.08);
}

.veebaby-pdp-checkout-info {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.veebaby-pdp-checkout-label {
    font-size: 0.82rem;
    color: var(--veebaby-muted);
    display: block;
    margin-bottom: 8px;
}

.veebaby-pdp-payment-icons {
    display: flex;
    gap: 8px;
}

.veebaby-pdp-payment-icons img {
    height: 24px;
    width: auto;
    border-radius: 4px;
}

.veebaby-pdp-benefits {
    display: flex;
    gap: 24px;
    margin-top: 16px;
}

.veebaby-pdp-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--veebaby-muted);
}

.veebaby-pdp-benefit svg {
    color: var(--veebaby-pink-dark);
}

.veebaby-pdp-support {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 14px;
    background: white;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.06);
}

.veebaby-pdp-support-icon {
    color: var(--veebaby-pink-dark);
}

.veebaby-pdp-support-title {
    font-size: 0.9rem;
}

.veebaby-pdp-support-hours {
    font-size: 0.8rem;
    color: var(--veebaby-muted);
}

.veebaby-pdp-meta {
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--veebaby-muted);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.veebaby-pdp-meta a {
    color: var(--veebaby-pink-dark);
    text-decoration: none;
}

.veebaby-pdp-meta a:hover {
    text-decoration: underline;
}

/* Accordions */
.veebaby-pdp-accordions {
    max-width: 900px;
    margin: 48px auto 0;
}

.veebaby-pdp-accordion {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.veebaby-pdp-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--veebaby-ink);
}

.veebaby-pdp-accordion-header svg {
    transition: transform 200ms ease;
}

.veebaby-pdp-accordion.open .veebaby-pdp-accordion-header svg {
    transform: rotate(180deg);
}

.veebaby-pdp-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 200ms ease;
}

.veebaby-pdp-accordion.open .veebaby-pdp-accordion-body {
    max-height: 2000px;
}

.veebaby-pdp-accordion-body p,
.veebaby-pdp-accordion-body ul {
    padding-bottom: 18px;
    margin: 0;
    color: var(--veebaby-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.veebaby-pdp-accordion-body ul {
    padding-left: 20px;
}

.veebaby-pdp-accordion-body li {
    margin-bottom: 6px;
}

/* Reviews section */
.veebaby-pdp-reviews {
    padding-bottom: 24px;
}

.veebaby-pdp-reviews-summary {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.veebaby-pdp-reviews-avg {
    text-align: left;
}

.veebaby-pdp-reviews-avg-label {
    font-size: 0.85rem;
    color: var(--veebaby-muted);
    margin-bottom: 4px;
}

.veebaby-pdp-reviews-avg-score {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--veebaby-pink-dark);
    line-height: 1;
}

.veebaby-pdp-reviews-avg-stars {
    display: flex;
    gap: 2px;
    margin-top: 6px;
}

.veebaby-pdp-reviews-avg-stars svg {
    color: #e5e7eb;
}

.veebaby-pdp-reviews-avg-stars svg.filled {
    color: #f59e0b;
}

.veebaby-pdp-reviews-count {
    font-size: 0.82rem;
    color: var(--veebaby-muted);
    margin-top: 4px;
}

.veebaby-pdp-reviews-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.veebaby-pdp-reviews-bar-row {
    display: grid;
    grid-template-columns: 60px 1fr 40px;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--veebaby-muted);
}

.veebaby-pdp-reviews-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

.veebaby-pdp-reviews-bar-fill {
    height: 100%;
    background: #f59e0b;
    border-radius: 999px;
}

/* Review form */
.veebaby-pdp-review-form {
    background: white;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.veebaby-pdp-review-form h4 {
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.veebaby-pdp-review-form > .veebaby-muted {
    font-size: 0.82rem;
    margin-bottom: 16px;
}

.veebaby-pdp-review-field {
    margin-bottom: 14px;
}

.veebaby-pdp-review-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--veebaby-pink-dark);
    margin-bottom: 6px;
}

.veebaby-pdp-review-field input[type="text"],
.veebaby-pdp-review-field input[type="email"],
.veebaby-pdp-review-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.9rem;
    background: #fafafa;
}

.veebaby-pdp-review-field textarea {
    resize: vertical;
}

.veebaby-pdp-review-stars {
    display: flex;
    gap: 4px;
}

.veebaby-pdp-review-stars button {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #e5e7eb;
}

.veebaby-pdp-review-stars button.filled {
    color: #f59e0b;
}

.veebaby-pdp-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--veebaby-muted);
    cursor: pointer;
}

.veebaby-pdp-checkbox input {
    margin-top: 2px;
}

.veebaby-pdp-review-submit {
    padding: 10px 28px;
    background: var(--veebaby-pink);
    border: none;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: background 120ms ease;
}

.veebaby-pdp-review-submit:hover {
    background: var(--veebaby-pink-dark);
}

.veebaby-pdp-review-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Reviews list */
.veebaby-pdp-reviews-list h4 {
    margin: 0 0 16px;
    font-size: 1rem;
}

.veebaby-pdp-review-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.veebaby-pdp-review-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    object-fit: cover;
}

.veebaby-pdp-review-content {
    flex: 1;
}

.veebaby-pdp-review-header {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.veebaby-pdp-review-content p {
    margin: 0 0 6px;
    font-size: 0.9rem;
    color: var(--veebaby-muted);
}

.veebaby-pdp-review-stars-small {
    display: flex;
    gap: 2px;
}

.veebaby-pdp-review-stars-small svg {
    color: #e5e7eb;
}

.veebaby-pdp-review-stars-small svg.filled {
    color: #f59e0b;
}

/* Related products */
.veebaby-pdp-related {
    max-width: 1200px;
    margin: 48px auto 0;
}

.veebaby-pdp-related h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 24px;
}

.veebaby-pdp-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.veebaby-pdp-related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: var(--veebaby-ink);
    transition: box-shadow 150ms ease;
}

.veebaby-pdp-related-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.veebaby-pdp-related-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.veebaby-pdp-related-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f3f4f6;
}

.veebaby-pdp-related-name {
    padding: 12px 14px 4px;
    font-weight: 600;
    font-size: 0.95rem;
}

.veebaby-pdp-related-price {
    padding: 0 14px;
    font-size: 0.9rem;
    color: var(--veebaby-muted);
}

.veebaby-pdp-related-stars {
    display: flex;
    gap: 2px;
    padding: 6px 14px 14px;
}

.veebaby-pdp-related-stars svg {
    color: #e5e7eb;
}

.veebaby-pdp-related-stars svg.filled {
    color: #f59e0b;
}

/* Responsive PDP */
@media (max-width: 992px) {
    .veebaby-pdp-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .veebaby-pdp-gallery {
        flex-direction: column-reverse;
    }

    .veebaby-pdp-thumbs {
        flex-direction: row;
        width: auto;
    }

    .veebaby-pdp-reviews-summary {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .veebaby-pdp-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .veebaby-pdp {
        padding: 20px 16px 32px;
    }

    .veebaby-pdp-actions {
        flex-wrap: wrap;
    }

    .veebaby-pdp-buy {
        flex: 1;
        justify-content: center;
    }

    .veebaby-pdp-related-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== Cart Page ========== */
.veebaby-cart-page {
    background: white;
    padding-bottom: 48px;
}

.veebaby-cart-hero {
    text-align: center;
    padding: 48px 24px 32px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 50%);
    position: relative;
    padding: 64px 0;
    background: #fbf6ee;
}

.veebaby-cart-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../images/header-bg.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.25;
    pointer-events: none;
}

.veebaby-cart-title {
    position: relative;
    z-index: 1;
    margin: 0;
    font-weight: 800;
    color: #132640;
    font-size: clamp(2rem, 3.4vw, 3.1rem);
}

.veebaby-cart-breadcrumb {
    margin-top: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    font-weight: 800;
    color: rgba(19, 38, 64, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    width: 100%;
}

.veebaby-cart-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 32px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.veebaby-cart-step {
    display: flex;
    align-items: center;
    gap: 10px;
}

.veebaby-cart-step-num {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #e5e7eb;
    color: var(--veebaby-muted);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.veebaby-cart-step.active .veebaby-cart-step-num {
    background: #f59e0b;
    color: white;
}

.veebaby-cart-step-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--veebaby-muted);
}

.veebaby-cart-step.active .veebaby-cart-step-label {
    color: var(--veebaby-ink);
}

.veebaby-cart-step-line {
    width: 40px;
    height: 2px;
    background: #e5e7eb;
}

.veebaby-cart-loading,
.veebaby-cart-empty {
    text-align: center;
    padding: 48px 24px;
}

.veebaby-cart-empty p {
    font-size: 1.1rem;
    color: var(--veebaby-muted);
    margin-bottom: 16px;
}

.veebaby-cart-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.veebaby-cart-warnings {
    max-width: 900px;
    margin: 0 auto 20px;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.veebaby-cart-warning {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.88rem;
    line-height: 1.5;
}

.veebaby-cart-warning-outofstock {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

.veebaby-cart-warning-quantityreduced {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
}

.veebaby-cart-warning-pricechanged {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
}

.veebaby-cart-low-stock {
    font-size: 0.78rem;
    color: #dc2626;
    font-weight: 600;
    margin-top: 2px;
}

.veebaby-cart-checkout-btn.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.veebaby-cart-table-wrap {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.veebaby-cart-table {
    width: 100%;
    border-collapse: collapse;
}

.veebaby-cart-table thead th {
    padding: 16px 20px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--veebaby-ink);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.veebaby-cart-table tbody td {
    padding: 20px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.veebaby-cart-table tbody tr:last-child td {
    border-bottom: none;
}

.veebaby-cart-product-cell {
    min-width: 280px;
}

.veebaby-cart-product {
    display: flex;
    align-items: center;
    gap: 16px;
}

.veebaby-cart-product-img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover;
}

.veebaby-cart-product-img-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    background: #f3f4f6;
}

.veebaby-cart-product-name {
    font-weight: 600;
    color: var(--veebaby-pink-dark);
    text-decoration: none;
    display: block;
    margin-bottom: 2px;
}

.veebaby-cart-product-name:hover {
    text-decoration: underline;
}

.veebaby-cart-product-sku {
    font-size: 0.82rem;
    color: var(--veebaby-muted);
}

.veebaby-cart-price,
.veebaby-cart-subtotal {
    font-size: 0.95rem;
    color: var(--veebaby-ink);
}

.veebaby-cart-qty-cell {
    text-align: center;
}

.veebaby-cart-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #fafafa;
}

.veebaby-cart-qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--veebaby-muted);
}

.veebaby-cart-qty-btn:hover:not(:disabled) {
    background: #f3f4f6;
}

.veebaby-cart-qty-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.veebaby-cart-qty-val {
    width: 36px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.veebaby-cart-remove-cell {
    text-align: center;
}

.veebaby-cart-remove {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--veebaby-muted);
    padding: 6px;
    border-radius: 6px;
    transition: all 120ms ease;
}

.veebaby-cart-remove:hover {
    background: #fee2e2;
    color: #ef4444;
}

.veebaby-cart-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
}

.veebaby-cart-btn {
    padding: 10px 24px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 120ms ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.veebaby-cart-btn-outline {
    background: white;
    border: 1px solid #d1d5db;
    color: var(--veebaby-ink);
}

.veebaby-cart-btn-outline:hover {
    border-color: var(--veebaby-pink-dark);
    color: var(--veebaby-pink-dark);
}

.veebaby-cart-btn-primary {
    background: #f59e0b;
    border: none;
    color: white;
}

.veebaby-cart-btn-primary:hover {
    background: #d97706;
}

.veebaby-cart-totals {
    margin-top: 40px;
}

.veebaby-cart-totals-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 16px;
    text-align: center;
}

.veebaby-cart-totals-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.veebaby-cart-totals-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.veebaby-cart-totals-row:last-child {
    border-bottom: none;
}

.veebaby-cart-totals-label {
    font-weight: 600;
    color: var(--veebaby-ink);
}

.veebaby-cart-totals-value {
    text-align: right;
    color: var(--veebaby-muted);
}

.veebaby-cart-totals-total .veebaby-cart-totals-value {
    font-weight: 700;
    color: var(--veebaby-ink);
    font-size: 1.1rem;
}

.veebaby-cart-shipping-info {
    line-height: 1.5;
}

.veebaby-cart-checkout-btn {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 14px 24px;
    background: #f59e0b;
    border: none;
    border-radius: 999px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 120ms ease;
}

.veebaby-cart-checkout-btn:hover {
    background: #d97706;
    color: white;
}

/* Responsive Cart */
@media (max-width: 768px) {
    .veebaby-cart-steps {
        flex-wrap: wrap;
        gap: 8px;
    }

    .veebaby-cart-step-line {
        display: none;
    }

    .veebaby-cart-step-label {
        font-size: 0.8rem;
    }

    .veebaby-cart-table thead {
        display: none;
    }

    .veebaby-cart-table tbody tr {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 16px;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .veebaby-cart-table tbody td {
        padding: 0;
        border: none;
    }

    .veebaby-cart-product-cell {
        grid-column: 1 / -1;
        min-width: 0;
    }

    .veebaby-cart-price::before {
        content: "Price: ";
        font-weight: 600;
    }

    .veebaby-cart-subtotal::before {
        content: "Subtotal: ";
        font-weight: 600;
    }

    .veebaby-cart-qty-cell {
        text-align: left;
    }

    .veebaby-cart-remove-cell {
        text-align: right;
    }

    .veebaby-cart-actions {
        flex-direction: column;
    }

    .veebaby-cart-btn {
        width: 100%;
    }
}

/* ========== Checkout Page ========== */
.veebaby-checkout {
    background: white;
    padding-bottom: 48px;
}

.veebaby-checkout-hero {
    text-align: center;
    padding: 64px 0px;
    position: relative;
    background: #fbf6ee;
}

.veebaby-checkout-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../images/header-bg.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.25;
    pointer-events: none;
}

.veebaby-checkout-title {
    margin: 0;
    font-weight: 800;
    color: #132640;
    font-size: clamp(2rem, 3.4vw, 3.1rem);
    position: relative;
}

.veebaby-checkout-breadcrumb {
    margin-top: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    font-weight: 800;
    color: rgba(19, 38, 64, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    width: 100%;
}

.veebaby-checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 32px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.veebaby-checkout-step {
    display: flex;
    align-items: center;
    gap: 10px;
}

.veebaby-checkout-step-num {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #e5e7eb;
    color: var(--veebaby-muted);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.veebaby-checkout-step.active .veebaby-checkout-step-num {
    background: #f59e0b;
    color: white;
}

.veebaby-checkout-step-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--veebaby-muted);
}

.veebaby-checkout-step.active .veebaby-checkout-step-label {
    color: var(--veebaby-ink);
}

.veebaby-checkout-step-line {
    width: 40px;
    height: 2px;
    background: #e5e7eb;
}

.veebaby-checkout-loading,
.veebaby-checkout-empty {
    text-align: center;
    padding: 48px 24px;
}

.veebaby-checkout-empty p {
    font-size: 1.1rem;
    color: var(--veebaby-muted);
    margin-bottom: 16px;
}

.veebaby-checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    align-items: start;
}

.veebaby-co-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 24px;
}

.veebaby-co-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.veebaby-co-field {
    margin-bottom: 20px;
}

.veebaby-co-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--veebaby-ink);
    margin-bottom: 8px;
}

.veebaby-co-req {
    color: #dc2626;
}

.veebaby-co-field input,
.veebaby-co-field select,
.veebaby-co-field textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #d1d5db;
    background: transparent;
    font-size: 0.9rem;
    color: var(--veebaby-ink);
    outline: none;
    transition: border-color 150ms ease;
    box-shadow: none;
}

.veebaby-co-field input.valid,
.veebaby-co-field select.valid,
.veebaby-co-field textarea.valid,
.veebaby-co-field input.modified:valid,
.veebaby-co-field select.modified:valid {
    border: none;
    border-bottom: 1px solid #d1d5db;
    box-shadow: none;
}

.veebaby-co-field input:focus,
.veebaby-co-field select:focus,
.veebaby-co-field textarea:focus {
    border-bottom-color: #f59e0b;
}

.veebaby-co-field input::placeholder,
.veebaby-co-field textarea::placeholder {
    color: #9ca3af;
}

.veebaby-co-field select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 24px;
}

.veebaby-co-field textarea {
    resize: vertical;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 12px;
    margin-top: 4px;
}

.veebaby-co-field textarea:focus {
    border-color: #f59e0b;
}

/* Order summary box */
.veebaby-co-order-box {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.veebaby-co-order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.9rem;
}

.veebaby-co-order-item:last-child {
    border-bottom: none;
}

.veebaby-co-order-name {
    color: var(--veebaby-pink-dark);
    font-weight: 500;
}

.veebaby-co-order-qty {
    color: var(--veebaby-ink);
    font-weight: 700;
}

.veebaby-co-order-price {
    color: var(--veebaby-ink);
}

.veebaby-co-order-subtotal {
    font-weight: 600;
}

.veebaby-co-order-total span:first-child {
    color: var(--veebaby-pink-dark);
    font-weight: 600;
}

.veebaby-co-order-total span:last-child {
    color: var(--veebaby-pink-dark);
    font-weight: 700;
    font-size: 1rem;
}

/* Payment section */
.veebaby-co-payment-title {
    margin-top: 32px;
}

.veebaby-co-payment-box {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.veebaby-co-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.veebaby-co-loading {
    color: var(--veebaby-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.veebaby-co-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background: #f59e0b;
    border: none;
    border-radius: 999px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 120ms ease;
}

.veebaby-co-btn-primary:hover {
    background: #d97706;
    color: white;
}

/* Responsive Checkout */
@media (max-width: 768px) {
    .veebaby-checkout-steps {
        flex-wrap: wrap;
        gap: 8px;
    }

    .veebaby-checkout-step-line {
        display: none;
    }

    .veebaby-checkout-step-label {
        font-size: 0.8rem;
    }

    .veebaby-checkout-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .veebaby-co-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Checkout validation */
.veebaby-co-validation-summary {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 16px 20px;
    margin: 0 auto 32px;
    max-width: 1100px;
    font-size: 0.85rem;
    color: var(--veebaby-ink);
    line-height: 1.7;
    text-align: center;
}

.veebaby-co-validation-summary > div {
    flex: 1;
}

.veebaby-co-validation-summary svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.veebaby-co-field .validation-message {
    color: #dc2626;
    font-size: 0.78rem;
    margin-top: 4px;
    display: block;
}

.veebaby-co-field input.invalid,
.veebaby-co-field select.invalid,
.veebaby-co-field input.modified.invalid,
.veebaby-co-field select.modified.invalid {
    border-bottom-color: #dc2626;
}

.veebaby-co-field:has(.validation-message:not(:empty)) label {
    color: #dc2626;
}

/* ========== Order Confirmation (Step 3) ========== */
.veebaby-checkout-step.completed .veebaby-checkout-step-num {
    background: #f59e0b;
    color: white;
}

.veebaby-checkout-step.completed .veebaby-checkout-step-label {
    color: var(--veebaby-ink);
}

.veebaby-oc-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px 48px;
}

.veebaby-oc-thankyou {
    font-size: 0.95rem;
    color: var(--veebaby-muted);
    margin: 0 0 24px;
}

.veebaby-oc-meta {
    display: flex;
    gap: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    overflow: hidden;
    margin-bottom: 24px;
}

.veebaby-oc-meta-item {
    flex: 1;
    padding: 18px 20px;
    border-right: 1px solid rgba(0,0,0,0.06);
}

.veebaby-oc-meta-item:last-child {
    border-right: none;
}

.veebaby-oc-meta-label {
    display: block;
    font-size: 0.75rem;
    color: var(--veebaby-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.veebaby-oc-meta-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--veebaby-ink);
}

.veebaby-oc-payment-note {
    font-size: 0.85rem;
    color: var(--veebaby-muted);
    margin: 0 0 32px;
}

.veebaby-oc-details-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 16px;
}

.veebaby-oc-fallback {
    text-align: center;
    padding: 48px 0;
    font-size: 1rem;
    color: var(--veebaby-muted);
}

.veebaby-oc-fallback a {
    color: var(--veebaby-pink-dark);
    text-decoration: underline;
}

@media (max-width: 600px) {
    .veebaby-oc-meta {
        flex-direction: column;
    }

    .veebaby-oc-meta-item {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .veebaby-oc-meta-item:last-child {
        border-bottom: none;
    }
}

/* ========== About Us Page ========== */
.veebaby-about-hero {
    background: #fbf6ee;
    position: relative;
    padding: 64px 0;
    margin-bottom: 28px;
}

.veebaby-about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../images/header-bg.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.38;
    pointer-events: none;
    z-index: 0;
}

.veebaby-about-hero-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.veebaby-about-hero-titlewrap {
    position: relative;
    display: block;
    padding: 10px 18px;
}

.veebaby-about-hero-title {
    position: relative;
    z-index: 1;
    margin: 0;
    font-weight: 800;
    color: #132640;
    font-size: clamp(2rem, 3.4vw, 3.1rem);
}

.veebaby-about-hero-breadcrumb {
    margin-top: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    font-weight: 800;
    color: rgba(19, 38, 64, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    width: 100%;
}

.veebaby-about {
    max-width: 780px;
    margin: 0 auto 64px;
    padding: 0 24px;
}

.veebaby-about-content {
    line-height: 1.8;
    color: var(--veebaby-ink);
    font-size: 0.95rem;
}

.veebaby-about-heading {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.veebaby-about-lead {
    font-size: 1.1rem;
    color: var(--veebaby-muted);
    font-style: italic;
    margin: 0 0 24px;
}

.veebaby-about-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 32px 0 16px;
}

.veebaby-about-content p {
    margin: 0 0 16px;
}

.veebaby-about-list {
    padding-left: 20px;
    margin: 0 0 24px;
}

.veebaby-about-list li {
    margin-bottom: 10px;
}

.veebaby-about-closing {
    font-weight: 600;
    color: var(--veebaby-pink-dark);
    margin-top: 32px;
}

/* ========== Admin: Login ========== */
.vb-admin-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    padding: 24px;
}

.vb-admin-login-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 40px 36px;
    width: 100%;
    max-width: 400px;
}

.vb-admin-login-header {
    text-align: center;
    margin-bottom: 28px;
}

.vb-admin-login-logo {
    height: 48px;
    margin-bottom: 16px;
}

.vb-admin-login-header h1 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--veebaby-ink);
}

.vb-admin-login-header p {
    font-size: 0.85rem;
    color: var(--veebaby-muted);
    margin: 0;
}

.vb-admin-login-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 16px;
    text-align: center;
}

.vb-admin-login-field {
    margin-bottom: 18px;
}

.vb-admin-login-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--veebaby-ink);
    margin-bottom: 6px;
}

.vb-admin-login-field input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--veebaby-ink);
    outline: none;
    transition: border-color 150ms ease;
    background: #fafafa;
}

.vb-admin-login-field input:focus {
    border-color: #f59e0b;
    background: white;
}

.vb-admin-login-btn {
    width: 100%;
    padding: 12px;
    background: #f59e0b;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 120ms ease;
}

.vb-admin-login-btn:hover {
    background: #d97706;
}

.vb-admin-login-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ========== Admin: Layout ========== */
.vb-admin {
    display: flex;
    min-height: 100vh;
    background: #f1f5f9;
}

.vb-admin-sidebar {
    width: 240px;
    background: #132640;
    color: white;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
}

.vb-admin-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 20px 24px;
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
}

.vb-admin-logo img {
    height: 32px;
}

.vb-admin-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 12px;
}

.vb-admin-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 120ms ease;
    border: none;
    background: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.vb-admin-nav-item:hover {
    background: rgba(255,255,255,0.08);
    color: white;
}

.vb-admin-nav-item.active {
    background: rgba(245,158,11,0.15);
    color: #f59e0b;
}

.vb-admin-sidebar-footer {
    padding: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vb-admin-logout {
    color: rgba(255,255,255,0.5);
}

.vb-admin-logout:hover {
    color: #f87171;
    background: rgba(248,113,113,0.1);
}

.vb-admin-main {
    flex: 1;
    margin-left: 240px;
    padding: 32px;
    min-width: 0;
}

/* ========== Admin: Shared ========== */
.vb-admin-page-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 24px;
    color: var(--veebaby-ink);
}

.vb-admin-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.vb-admin-page-header .vb-admin-page-title {
    margin-bottom: 0;
}

.vb-admin-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 24px 0 12px;
    color: var(--veebaby-ink);
}

.vb-admin-loading {
    color: var(--veebaby-muted);
    font-size: 0.9rem;
}

.vb-admin-empty {
    color: var(--veebaby-muted);
    font-size: 0.9rem;
    padding: 32px 0;
    text-align: center;
}

.vb-admin-muted {
    color: var(--veebaby-muted);
}

.vb-admin-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.vb-admin-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #16a34a;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.vb-admin-import-url-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 150ms ease;
}

.vb-admin-import-url-input:focus {
    border-color: #f59e0b;
}

.vb-admin-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.9rem;
    color: #f59e0b;
    text-decoration: none;
    font-weight: 600;
}

.vb-admin-link:hover {
    text-decoration: underline;
}

.vb-admin-back {
    background: none;
    border: none;
    color: var(--veebaby-muted);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0;
    margin-bottom: 16px;
}

.vb-admin-back:hover {
    color: var(--veebaby-ink);
}

/* Buttons */
.vb-admin-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 9px 20px;
    background: #f59e0b;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 120ms ease;
}

.vb-admin-btn-primary:hover {
    background: #d97706;
}

.vb-admin-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 9px 20px;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    color: var(--veebaby-ink);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 120ms ease;
}

.vb-admin-btn-secondary:hover {
    border-color: var(--veebaby-ink);
}

.vb-admin-btn-icon {
    background: none;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 6px;
    cursor: pointer;
    color: var(--veebaby-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 120ms ease;
}

.vb-admin-btn-icon:hover {
    border-color: #f59e0b;
    color: #f59e0b;
}

.vb-admin-btn-danger:hover {
    border-color: #ef4444;
    color: #ef4444;
    background: #fef2f2;
}

.vb-admin-row-actions {
    display: inline-flex;
    gap: 6px;
}

.vb-admin-review-stars,
.vb-admin-review-stars-small {
    display: inline-flex;
    gap: 2px;
}

.vb-admin-star-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #d1d5db;
    transition: color 100ms ease;
}

.vb-admin-star-btn.filled {
    color: #f59e0b;
}

.vb-admin-star-btn:hover {
    color: #f59e0b;
}

.vb-admin-review-stars-small svg {
    color: #d1d5db;
}

.vb-admin-review-stars-small svg.filled {
    color: #f59e0b;
}

.vb-admin-msg-unread td {
    background: #fffbeb;
}

.vb-admin-unread-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #f59e0b;
}

.vb-admin-msg-detail {
    background: #f8fafc;
    padding: 16px 24px !important;
    font-size: 0.88rem;
    line-height: 1.6;
}

.vb-admin-msg-detail p {
    margin: 0 0 8px;
}

.vb-admin-msg-detail p:last-child {
    margin-bottom: 0;
}

/* Tables */
.vb-admin-table-wrap {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.vb-admin-table {
    width: 100%;
    border-collapse: collapse;
}

.vb-admin-table thead th {
    padding: 12px 16px;
    text-align: left;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--veebaby-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    white-space: nowrap;
}

.vb-admin-table tbody td {
    padding: 12px 16px;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    vertical-align: middle;
}

.vb-admin-table tbody tr:last-child td {
    border-bottom: none;
}

.vb-admin-clickable {
    cursor: pointer;
    transition: background 100ms ease;
}

.vb-admin-clickable:hover {
    background: #f8fafc;
}

.vb-admin-order-id {
    font-family: monospace;
    font-weight: 600;
    color: #f59e0b;
}

.text-end {
    text-align: right;
}

/* Badges */
.vb-admin-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

.vb-admin-badge-paid {
    background: #dcfce7;
    color: #16a34a;
}

.vb-admin-badge-processing {
    background: #dbeafe;
    color: #2563eb;
}

.vb-admin-badge-shipped {
    background: #e0e7ff;
    color: #4f46e5;
}

.vb-admin-badge-delivered {
    background: #d1fae5;
    color: #059669;
}

.vb-admin-badge-cancelled {
    background: #fee2e2;
    color: #dc2626;
}

.vb-admin-badge-refunded {
    background: #fef3c7;
    color: #d97706;
}

/* ========== Admin: Dashboard Stats ========== */
.vb-admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.vb-admin-stat-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.vb-admin-stat-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--veebaby-ink);
    margin-bottom: 4px;
}

.vb-admin-stat-label {
    font-size: 0.8rem;
    color: var(--veebaby-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.vb-admin-stat-warn .vb-admin-stat-value {
    color: #dc2626;
}

/* ========== Admin: Order Detail ========== */
.vb-admin-order-meta {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.vb-admin-order-meta-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vb-admin-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--veebaby-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.vb-admin-order-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
    align-items: start;
}

.vb-admin-detail-card {
    background: white;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    margin-bottom: 8px;
}

.vb-admin-detail-card p {
    margin: 0 0 4px;
    font-size: 0.9rem;
}

.vb-admin-detail-card p:last-child {
    margin-bottom: 0;
}

.vb-admin-tracking-section {
    margin-bottom: 24px;
}

.vb-admin-tracking-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.vb-admin-tracking-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 140px;
}

.vb-admin-input {
    padding: 6px 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.85rem;
    background: white;
    outline: none;
    transition: border-color 0.15s ease;
}

.vb-admin-input:focus {
    border-color: #f59e0b;
}

.vb-admin-btn-sm {
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    background: var(--veebaby-ink, #132640);
    color: white;
    cursor: pointer;
    transition: background 0.15s ease;
    white-space: nowrap;
}

.vb-admin-btn-sm:hover:not(:disabled) {
    background: #1e3a5f;
}

.vb-admin-btn-sm:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.vb-admin-select {
    padding: 6px 28px 6px 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.85rem;
    background: white;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}

.vb-admin-select:focus {
    border-color: #f59e0b;
}

.vb-admin-order-totals {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    margin-top: 16px;
}

.vb-admin-order-totals-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.vb-admin-order-totals-row:last-child {
    border-bottom: none;
}

.vb-admin-order-totals-total {
    font-weight: 700;
    font-size: 1rem;
}

/* ========== Admin: Product Editor ========== */
.vb-admin-editor-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    margin-bottom: 24px;
}

.vb-admin-editor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.vb-admin-field-full {
    grid-column: 1 / -1;
}

.vb-admin-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vb-admin-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--veebaby-ink);
}

.vb-admin-field input,
.vb-admin-field textarea,
.vb-admin-field select {
    padding: 9px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.88rem;
    color: var(--veebaby-ink);
    outline: none;
    transition: border-color 150ms ease;
    background: #fafafa;
}

.vb-admin-field input:focus,
.vb-admin-field textarea:focus,
.vb-admin-field select:focus {
    border-color: #f59e0b;
    background: white;
}

.vb-admin-field textarea {
    resize: vertical;
}

.vb-admin-editor-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.vb-admin-category-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.vb-admin-check-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    cursor: pointer;
    color: var(--veebaby-ink);
}

.vb-admin-check-label input[type="checkbox"] {
    accent-color: #f59e0b;
    width: 16px;
    height: 16px;
}

/* Product table extras */
.vb-admin-product-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vb-admin-product-thumb {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    object-fit: cover;
}

.vb-admin-product-thumb-placeholder {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: #f3f4f6;
}

/* ========== Admin: Image Editor ========== */
.vb-admin-images-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vb-admin-image-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vb-admin-image-url-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--veebaby-ink);
    outline: none;
    transition: border-color 150ms ease;
    background: #fafafa;
}

.vb-admin-image-url-input:focus {
    border-color: #f59e0b;
    background: white;
}

.vb-admin-image-main-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--veebaby-muted);
    white-space: nowrap;
    cursor: pointer;
}

.vb-admin-image-main-label input[type="radio"] {
    accent-color: #f59e0b;
}

.vb-admin-image-preview {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.vb-admin-image-add-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.vb-admin-file-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

/* ========== Admin: Option Editor ========== */
.vb-admin-options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vb-admin-option-group {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px;
}

.vb-admin-option-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.vb-admin-option-values {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 8px;
}

.vb-admin-option-value-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vb-admin-color-picker {
    width: 32px;
    height: 32px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 2px;
    cursor: pointer;
    background: white;
}

/* ========== Admin: Inline Form (Categories) ========== */
.vb-admin-inline-form {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.vb-admin-inline-form .vb-admin-editor-actions {
    margin-top: 0;
}

/* ========== Admin: Responsive ========== */
@media (max-width: 1024px) {
    .vb-admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .vb-admin-order-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vb-admin-sidebar {
        width: 64px;
    }

    .vb-admin-logo span,
    .vb-admin-nav-item span {
        display: none;
    }

    .vb-admin-logo {
        justify-content: center;
        padding: 16px 8px 20px;
    }

    .vb-admin-nav-item {
        justify-content: center;
        padding: 10px;
    }

    .vb-admin-main {
        margin-left: 64px;
        padding: 20px;
    }

    .vb-admin-stats {
        grid-template-columns: 1fr 1fr;
    }

    .vb-admin-editor-grid {
        grid-template-columns: 1fr;
    }

    .vb-admin-page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ── Nav Wishlist Icon ── */
.veebaby-nav-wishlist {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--veebaby-ink, #132640);
    text-decoration: none;
    transition: color 0.2s ease;
}

.veebaby-nav-wishlist:hover {
    color: #e11d48;
}

/* ── Wishlist Page ── */
.veebaby-wishlist-loading {
    text-align: center;
    padding: 48px 0;
    color: var(--veebaby-muted);
}

.veebaby-wishlist-empty {
    text-align: center;
    padding: 64px 24px;
    max-width: 480px;
    margin: 0 auto;
}

.veebaby-wishlist-empty svg {
    margin-bottom: 16px;
}

.veebaby-wishlist-empty h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--veebaby-ink, #132640);
    margin: 0 0 8px;
}

.veebaby-wishlist-empty p {
    color: var(--veebaby-muted);
    margin-bottom: 24px;
}

.veebaby-wishlist {
    max-width: 1100px;
    margin: 0 auto 64px;
    padding: 0 1rem;
}

.veebaby-wishlist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.veebaby-wishlist-count {
    font-weight: 700;
    font-size: 1rem;
    color: var(--veebaby-ink, #132640);
}

.veebaby-wishlist-clear {
    background: none;
    border: none;
    color: #e11d48;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background 0.15s ease;
}

.veebaby-wishlist-clear:hover {
    background: #fff1f2;
}

.veebaby-wishlist-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.veebaby-wishlist-card {
    position: relative;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(17, 24, 39, 0.06);
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.veebaby-wishlist-card:hover {
    box-shadow: 0 8px 30px rgba(17, 24, 39, 0.10);
    transform: translateY(-2px);
}

.veebaby-wishlist-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--veebaby-muted);
    z-index: 10;
    transition: color 0.15s ease, background 0.15s ease;
}

.veebaby-wishlist-remove:hover {
    color: #e11d48;
    background: #fff1f2;
}

.veebaby-wishlist-card-link {
    display: block;
    aspect-ratio: 1 / 1;
    background: #fbf7f0;
    overflow: hidden;
}

.veebaby-wishlist-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.veebaby-wishlist-card:hover .veebaby-wishlist-img {
    transform: scale(1.04);
}

.veebaby-wishlist-img-placeholder {
    width: 100%;
    height: 100%;
    background: radial-gradient(260px 180px at 35% 30%, rgba(255, 182, 193, 0.25), rgba(255, 255, 255, 0)),
                radial-gradient(280px 220px at 70% 70%, rgba(253, 230, 138, 0.20), rgba(255, 255, 255, 0)),
                #fbf7f0;
}

.veebaby-wishlist-card-info {
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.veebaby-wishlist-card-name {
    display: block;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--veebaby-ink, #132640);
    text-decoration: none;
    margin-bottom: 4px;
    line-height: 1.3;
}

.veebaby-wishlist-card-name:hover {
    color: var(--veebaby-pink-dark);
}

.veebaby-wishlist-card-price {
    font-weight: 700;
    font-size: 1rem;
    color: var(--veebaby-pink-dark);
    margin-bottom: 6px;
}

.veebaby-wishlist-card-stock {
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.veebaby-wishlist-instock {
    color: #16a34a;
}

.veebaby-wishlist-outstock {
    color: #dc2626;
}

.veebaby-wishlist-action-link {
    margin-top: auto;
}

.veebaby-wishlist-continue {
    display: flex;
    justify-content: center;
    padding-top: 32px;
}

@media (max-width: 1200px) {
    .veebaby-wishlist-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .veebaby-wishlist-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .veebaby-wishlist-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Quick View: Modal ── */
.qv-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: qvFadeIn 0.2s ease;
}

@keyframes qvFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.qv-dialog {
    position: relative;
    background: white;
    border-radius: 16px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
    max-width: 820px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: qvSlideIn 0.25s ease;
}

@keyframes qvSlideIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.qv-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: none;
    background: rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #0f172a;
    z-index: 10;
    transition: background 0.15s ease;
}

.qv-close:hover {
    background: rgba(15, 23, 42, 0.12);
}

.qv-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.qv-gallery {
    background: #fbf7f0;
    border-radius: 16px 0 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px 24px;
    position: relative;
    min-height: 360px;
}

.qv-image-wrap {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.qv-image {
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
}

.qv-image-placeholder {
    width: 100%;
    height: 260px;
    background: radial-gradient(260px 180px at 35% 30%, rgba(255, 182, 193, 0.25), rgba(255, 255, 255, 0)),
                radial-gradient(280px 220px at 70% 70%, rgba(253, 230, 138, 0.20), rgba(255, 255, 255, 0)),
                #fbf7f0;
}

.qv-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #0f172a;
    z-index: 5;
    transition: background 0.15s ease, box-shadow 0.15s ease;
}

.qv-arrow:hover {
    background: white;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.qv-arrow-prev { left: 8px; }
.qv-arrow-next { right: 8px; }

.qv-dots {
    display: flex;
    gap: 6px;
    margin-top: 16px;
}

.qv-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    background: rgba(15, 23, 42, 0.2);
    padding: 0;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
}

.qv-dot.active {
    background: #16a34a;
    transform: scale(1.25);
}

.qv-info {
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.qv-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px;
    line-height: 1.25;
}

.qv-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.qv-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--veebaby-pink-dark, #e91e8c);
}

.qv-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
}

.qv-star-dim {
    opacity: 0.3;
}

.qv-option {
    margin-bottom: 14px;
}

.qv-option-label {
    font-weight: 700;
    font-size: 0.85rem;
    color: #0f172a;
    margin-bottom: 8px;
}

.qv-option-values {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.qv-size-btn {
    padding: 6px 14px;
    border: 1.5px solid rgba(15, 23, 42, 0.18);
    border-radius: 6px;
    background: white;
    font-weight: 700;
    font-size: 0.8rem;
    color: #0f172a;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.qv-size-btn:hover {
    border-color: var(--veebaby-ink, #132640);
}

.qv-size-btn.active {
    border-color: var(--veebaby-ink, #132640);
    background: var(--veebaby-ink, #132640);
    color: white;
}

.qv-color-swatch {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.18);
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.qv-color-swatch:hover {
    transform: scale(1.15);
}

.qv-color-swatch.active {
    box-shadow: 0 0 0 2px white, 0 0 0 4px var(--veebaby-ink, #132640);
}

.qv-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.qv-qty {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid rgba(15, 23, 42, 0.16);
    border-radius: 999px;
    overflow: hidden;
}

.qv-qty-btn {
    width: 34px;
    height: 34px;
    border: none;
    background: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.1s ease;
}

.qv-qty-btn:hover:not(:disabled) {
    background: rgba(15, 23, 42, 0.06);
}

.qv-qty-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.qv-qty-val {
    min-width: 28px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.qv-buy {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
    height: 38px;
    border-radius: 999px;
    border: none;
    background: #f59e0b;
    color: white;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: background 0.15s ease;
}

.qv-buy:hover:not(:disabled) {
    background: #d97706;
}

.qv-buy:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.qv-wishlist {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1.5px solid rgba(15, 23, 42, 0.16);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(15, 23, 42, 0.5);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.qv-wishlist:hover {
    color: #e11d48;
    border-color: #e11d48;
}

.qv-wishlist.is-wishlisted {
    color: #e11d48;
    border-color: #e11d48;
}

.qv-meta {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: grid;
    gap: 4px;
    font-size: 0.82rem;
    color: rgba(15, 23, 42, 0.65);
}

.qv-meta strong {
    color: #0f172a;
}

@media (max-width: 768px) {
    .qv-body {
        grid-template-columns: 1fr;
    }

    .qv-gallery {
        border-radius: 16px 16px 0 0;
        min-height: 240px;
        padding: 24px 16px 16px;
    }

    .qv-image {
        max-height: 220px;
    }

    .qv-info {
        padding: 20px 20px 24px;
    }

    .qv-dialog {
        max-width: 95vw;
    }
}

/* ═══════════════════════════════════════
   Analytics Dashboard
   ═══════════════════════════════════════ */

/* KPI Grid */
.vb-dash-kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.vb-dash-kpi {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px 20px;
    transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.vb-dash-kpi:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    transform: translateY(-1px);
}

.vb-dash-kpi-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
}

.vb-dash-kpi-revenue .vb-dash-kpi-icon { background: #dbeafe; color: #2563eb; }
.vb-dash-kpi-profit .vb-dash-kpi-icon { background: #d1fae5; color: #059669; }
.vb-dash-kpi-orders .vb-dash-kpi-icon { background: #ede9fe; color: #7c3aed; }
.vb-dash-kpi-avg .vb-dash-kpi-icon { background: #fef3c7; color: #d97706; }
.vb-dash-kpi-products .vb-dash-kpi-icon { background: #e0e7ff; color: #4f46e5; }
.vb-dash-kpi-warn .vb-dash-kpi-icon { background: #fee2e2; color: #dc2626; }

.vb-dash-kpi-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.vb-dash-kpi-value {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vb-dash-kpi-label {
    font-size: 0.78rem;
    color: #64748b;
    margin-top: 2px;
    font-weight: 500;
}

/* Period Breakdown */
.vb-dash-periods {
    margin-bottom: 28px;
}

.vb-dash-period-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}

.vb-dash-period-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px 18px;
}

.vb-dash-period-card h4 {
    margin: 0 0 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

.vb-dash-period-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.vb-dash-period-stats > div {
    display: flex;
    flex-direction: column;
    min-width: 60px;
}

.vb-dash-period-num {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
}

.vb-dash-period-lbl {
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 500;
    margin-top: 1px;
}

.vb-dash-profit { color: #059669; }
.vb-dash-loss { color: #dc2626; }

/* 30-Day Chart */
.vb-dash-chart-section {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px 22px;
    margin-bottom: 28px;
}

.vb-dash-chart-legend {
    display: flex;
    gap: 18px;
    margin-bottom: 14px;
}

.vb-dash-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #64748b;
}

.vb-dash-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    display: inline-block;
}

.vb-dash-legend-revenue { background: #93c5fd; }
.vb-dash-legend-profit { background: #6ee7b7; }

.vb-dash-chart {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 160px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.vb-dash-chart-bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 14px;
    max-width: 32px;
    height: 100%;
}

.vb-dash-chart-bars {
    display: flex;
    gap: 2px;
    align-items: flex-end;
    flex: 1;
    width: 100%;
}

.vb-dash-chart-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    min-height: 2px;
    transition: height 0.3s ease;
}

.vb-dash-bar-revenue { background: #93c5fd; }
.vb-dash-bar-profit { background: #6ee7b7; }

.vb-dash-chart-bar-group:hover .vb-dash-bar-revenue { background: #3b82f6; }
.vb-dash-chart-bar-group:hover .vb-dash-bar-profit { background: #10b981; }

.vb-dash-chart-label {
    font-size: 0.6rem;
    color: #94a3b8;
    margin-top: 4px;
    white-space: nowrap;
}

/* Bottom Grid */
.vb-dash-bottom-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
}

/* Status Breakdown */
.vb-dash-status-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vb-dash-status-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vb-dash-status-row .vb-admin-badge {
    min-width: 80px;
    text-align: center;
}

.vb-dash-status-bar-wrap {
    flex: 1;
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}

.vb-dash-status-bar {
    height: 100%;
    background: linear-gradient(90deg, #818cf8, #6366f1);
    border-radius: 4px;
    transition: width 0.4s ease;
}

.vb-dash-status-count {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    min-width: 28px;
    text-align: right;
}

/* Responsive */
@media (max-width: 900px) {
    .vb-dash-bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .vb-dash-kpi-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vb-dash-period-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vb-dash-chart {
        height: 120px;
    }
}

/* ── Admin Variants ── */

.vb-admin-input-sm {
    width: 100%;
    min-width: 70px;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.85rem;
    background: #fff;
    transition: border-color 0.15s;
}

.vb-admin-input-sm:focus {
    outline: none;
    border-color: #7c5cfc;
}

.vb-admin-image-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vb-admin-image-link-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vb-admin-image-link-thumb {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.vb-color-swatch {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #ccc;
    vertical-align: middle;
    margin-right: 6px;
    flex-shrink: 0;
}

.vb-color-picker-group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.vb-color-pick-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    font-size: 0.78rem;
    color: #374151;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.vb-color-pick-btn:hover {
    border-color: #a5b4fc;
}

.vb-color-pick-btn.active {
    border-color: #7c5cfc;
    box-shadow: 0 0 0 2px rgba(124,92,252,0.25);
    font-weight: 600;
}

.vb-admin-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

/* ── Newsletter Popup ── */

.vb-newsletter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: vb-fade-in 0.3s ease;
    padding: 16px;
}

@keyframes vb-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes vb-slide-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.vb-newsletter-modal {
    background: #fff;
    border-radius: 16px;
    display: flex;
    max-width: 740px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    position: relative;
    animation: vb-slide-up 0.4s ease;
}

.vb-newsletter-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    z-index: 2;
    padding: 4px;
    border-radius: 50%;
    transition: background 0.15s, color 0.15s;
}

.vb-newsletter-close:hover {
    background: #f3f3f3;
    color: #333;
}

.vb-newsletter-image {
    flex: 0 0 45%;
    background: #f8b4c8;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.vb-newsletter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vb-newsletter-content {
    flex: 1;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vb-newsletter-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 28px 0;
    line-height: 1.25;
}

.vb-newsletter-field {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1.5px solid #d1d5db;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.vb-newsletter-field-icon {
    color: #9ca3af;
    flex-shrink: 0;
}

.vb-newsletter-input {
    border: none;
    outline: none;
    font-size: 0.95rem;
    width: 100%;
    background: transparent;
    color: #333;
}

.vb-newsletter-input::placeholder {
    color: #9ca3af;
}

.vb-newsletter-agree {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.82rem;
    color: #6b7280;
    margin-bottom: 22px;
    cursor: pointer;
    line-height: 1.4;
}

.vb-newsletter-agree input[type="checkbox"] {
    margin-top: 2px;
    accent-color: #e8a024;
}

.vb-newsletter-agree a {
    color: #1e293b;
    text-decoration: underline;
}

.vb-newsletter-btn {
    background: #e8a024;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 13px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    width: 100%;
}

.vb-newsletter-btn:hover:not(:disabled) {
    background: #d4911b;
    transform: translateY(-1px);
}

.vb-newsletter-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.vb-newsletter-error {
    color: #dc2626;
    font-size: 0.82rem;
    margin-bottom: 12px;
}

.vb-newsletter-success {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.vb-newsletter-success h3 {
    font-size: 1.3rem;
    color: #166534;
    margin: 0;
}

.vb-newsletter-success p {
    color: #6b7280;
    margin: 0;
}

@media (max-width: 640px) {
    .vb-newsletter-modal {
        flex-direction: column;
        max-width: 380px;
    }

    .vb-newsletter-image {
        flex: 0 0 180px;
    }

    .vb-newsletter-content {
        padding: 24px 20px;
    }

    .vb-newsletter-title {
        font-size: 1.3rem;
    }
}

/* ── Admin Campaigns ── */

.vb-campaign-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
    align-items: start;
}

@media (max-width: 1100px) {
    .vb-campaign-layout {
        grid-template-columns: 1fr;
    }
}

.vb-campaign-editor .vb-admin-card,
.vb-campaign-preview .vb-admin-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.vb-campaign-product-picker {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 320px;
    overflow-y: auto;
}

.vb-campaign-product-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}

.vb-campaign-product-item:hover {
    border-color: #c4b5fd;
}

.vb-campaign-product-item.selected {
    border-color: #7c5cfc;
    background: #f5f3ff;
}

.vb-campaign-product-thumb {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.vb-campaign-product-info {
    flex: 1;
    min-width: 0;
}

.vb-campaign-product-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vb-campaign-product-price {
    font-size: 0.78rem;
    color: #e91e8c;
    font-weight: 600;
}

.vb-campaign-product-check {
    flex-shrink: 0;
    width: 24px;
}

/* Preview */

.vb-campaign-preview-frame {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.vb-campaign-preview-header {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #132640;
    padding: 12px 0;
}

.vb-campaign-preview-body {
    background: #fff;
    border-radius: 10px;
    padding: 24px 16px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}

.vb-campaign-preview-sale-banner {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe0f0 100%);
    border-radius: 10px;
    padding: 20px 16px;
    text-align: center;
    margin-bottom: 16px;
}

.vb-campaign-preview-sale-banner h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
    color: #132640;
}

.vb-campaign-preview-sale-banner p {
    margin: 0;
    font-size: 0.82rem;
    color: #555;
}

.vb-campaign-preview-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.vb-campaign-preview-product {
    text-align: center;
}

.vb-campaign-preview-product img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 6px;
}

.vb-campaign-preview-badge {
    background: #e8a024;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 4px;
}

.vb-campaign-preview-pname {
    font-size: 0.72rem;
    font-weight: 600;
    color: #132640;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vb-campaign-preview-pprice {
    font-size: 0.7rem;
    color: #e91e8c;
    font-weight: 600;
}

.vb-campaign-preview-btn {
    display: inline-block;
    background: #e8a024;
    color: #fff;
    padding: 8px 24px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.vb-campaign-preview-footer {
    text-align: center;
    font-size: 0.68rem;
    color: #999;
    padding: 12px 0 4px;
}