* {
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:wght@100..900&family=Mrs+Saint+Delafield&display=swap');

:root {
    --vm-accent: #84948E;
    --vm-dark-sage: #A9B6B1;
    --vm-light-sage: #C2D0CB;
    --vm-gold: #d4af37;
    --vm-badge-bg: #ff4757;
    --vm-badge-text: #ffffff;
    --vm-pill-bg: #eac9b6;
    --vm-pill-text: #3e3535;
    --vm-cream: #FFFDD0;
    --vm-text: #2c3632;
    --vm-text-muted: #64748b;
    --vm-radius-lg: 20px;
    --vm-radius-md: 12px;
    --vm-radius-pill: 50px;
    --vm-glass: rgba(255, 255, 255, 0.6);
    --vm-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vm-container {
    font-family: 'Inter', sans-serif;
    color: var(--vm-text);
    /* background-color: var(--vm-cream); */
    min-height: 100vh;
    padding: 0 0 120px;
    overflow-x: hidden;
    position: relative;
}

.vm-container h1,
.vm-container h2,
.vm-container h3,
.vm-container .vm-luxury-font {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.vm-app-view {
    transition: opacity 0.3s ease;
}

.vm-view-hidden {
    display: none !important;
    opacity: 0;
}

.vm-view-active {
    display: block;
    opacity: 1;
    animation: fadeInView 0.3s ease forwards;
}

@keyframes fadeInView {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes vmItemReveal {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.vm-item-reveal {
    animation: vmItemReveal 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.vm-rtl {
    direction: rtl;
    text-align: right;
    font-family: 'Cairo', sans-serif !important;
}

.vm-rtl h1,
.vm-rtl h2,
.vm-rtl h3,
.vm-rtl .vm-luxury-font {
    font-family: 'Cairo', sans-serif !important;
}

/* Language Switcher (Repurposed for Filtration Row) */
.vm-lang-switch {
    display: flex;
    align-items: center;
    gap: 2px;
}

.vm-lang-btn {
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    color: var(--vm-text-muted);
    padding: 6px 10px;
    border-radius: 4px;
    transition: var(--vm-transition);
}

.vm-lang-btn.active {
    background: var(--vm-accent);
    color: white;
}

.vm-lang-btn:hover:not(.active) {
    color: var(--vm-accent);
}





.vm-nav-links a:hover,
.vm-nav-links a.active {
    color: var(--vm-accent);
}

.vm-cart-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 5px;
    color: var(--vm-text);
}

.vm-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--vm-gold);
    color: white;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* New Filtration UI */
.vm-filtration-new {
    padding: 20px 40px;
    background: var(--vm-bg, white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.vm-filtration-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.vm-btn-outline {
    background: white;
    border: 1px solid #e2e8e0;
    padding: 8px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--vm-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.vm-btn-outline:hover {
    border-color: var(--vm-accent);
    color: var(--vm-accent);
}

#vm-filters-expanded {
    padding: 20px;
    background: #f8faf9;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vm-filters-hidden {
    display: none !important;
}

.vm-filter-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.vm-filter-option label {
    font-size: 12px;
    font-weight: 700;
    color: var(--vm-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vm-filter-option select {
    flex: 1;
    max-width: 200px;
    padding: 8px 12px;
    border: 1px solid #e2e8e5;
    border-radius: 6px;
    background: white;
    font-size: 13px;
}

.vm-categories-swippable {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.vm-categories-swippable::-webkit-scrollbar {
    display: none;
}

.vm-cat-btn {
    padding: 10px 24px;
    background: #f1f5f3;
    border: 1.5px solid transparent;
    border-radius: 50px;
    white-space: nowrap;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: var(--vm-text-muted);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vm-cat-btn:hover {
    background: #e2e8e5;
    color: var(--vm-text);
}

.vm-cat-btn.active {
    background: var(--vm-accent);
    color: white;
    box-shadow: 0 4px 12px rgba(132, 148, 142, 0.3);
}

/* Responsive Filtration */
@media (max-width: 768px) {
    .vm-filtration-new {
        padding: 0 20px;
    }

    .vm-filter-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .vm-filter-option select {
        max-width: 100%;
        width: 100%;
    }
}

/* Product Card - The Gilded Whisk Style */
.vm-item-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    /* Perfect 1:1 square — never distorts */
    overflow: visible;
    /* Allows price pill to hang below */
    border-radius: var(--vm-radius-md);
    margin-bottom: 18px;
}

.vm-item-image-wrapper>img.vm-item-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--vm-radius-md);
    display: block;
    transition: var(--vm-transition);
}

.vm-item-inner:hover .vm-item-img-main {
    transform: scale(1.05);
}

.vm-ribbon-badge {
    position: absolute;
    top: 0;
    right: 25px;
    width: auto;
    min-width: 44px;
    height: 56px;
    padding: 12px 10px 0;
    background: linear-gradient(135deg, var(--vm-badge-bg, #d4af37) 0%, #fff7b0 50%, var(--vm-badge-bg, #d4af37) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 82%, 0 100%);
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    white-space: nowrap;
}

.vm-ribbon-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #5d756a;
    /* Matches image background */
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 82%, 0 100%);
    z-index: -1;
}

.vm-ribbon-badge span {
    position: relative;
    color: var(--vm-badge-text, white);
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    z-index: 1;
}

.vm-ribbon-badge.popular {
    right: 75px;
}

.vm-ribbon-badge.popular::before {
    background: var(--vm-text);
}

/* Price pill — auto width, overlaps bottom-left of image */
.vm-price-pill {
    position: absolute;
    bottom: -14px;
    left: 14px;
    background: var(--vm-pill-bg, #eac9b6);
    color: var(--vm-pill-text, #3e3535);
    border-radius: 50px;
    padding: 6px 16px;
    font-weight: 800;
    font-size: 0.95rem;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    z-index: 4;
    line-height: 1.2;
}

/* RTL: pill on the right */
.vm-rtl .vm-price-pill {
    left: auto;
    right: 14px;
}



.vm-item-content {
    padding: 20px 0 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.vm-item-title {
    font-size: 1.5rem;
    margin: 0 0 10px;
    color: var(--vm-text);
    line-height: 1.2;
}

.vm-item-desc {
    font-size: 14px;
    color: var(--vm-text-muted);
    line-height: 1.5;
    margin: 0;
}


/* Offers Carousel */
.vm-offers-carousel {
    padding: 0 20px;
    margin-bottom: 30px;
}

.vm-offer-card {
    background: #166534;
    /* Green from reference */
    color: white;
    padding: 25px;
    border-radius: var(--vm-radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.vm-offer-content h3 {
    margin: 0;
    font-size: 1.4rem;
}

.vm-offer-content p {
    margin: 5px 0 15px;
    opacity: 0.9;
}

.vm-offer-btn-small {
    background: white;
    color: #166534;
    border: none;
    padding: 8px 18px;
    border-radius: var(--vm-radius-pill);
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
}

.vm-offer-image i {
    font-size: 80px;
    width: 80px;
    height: 80px;
    opacity: 0.2;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
}

/* Category Navigation */
.vm-categories {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 20px 20px;
    scrollbar-width: none;
}

.vm-categories::-webkit-scrollbar {
    display: none;
}

.vm-cat-btn {
    padding: 12px 28px;
    background: white;
    border: 1.5px solid #eef2f1;
    border-radius: var(--vm-radius-pill);
    cursor: pointer;
    white-space: nowrap;
    transition: var(--vm-transition);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--vm-accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.vm-cat-btn:hover {
    border-color: var(--vm-accent);
    background: #f8faf9;
    transform: translateY(-2px);
}

.vm-cat-btn.active {
    background: var(--vm-accent);
    color: white;
    border-color: var(--vm-accent);
    box-shadow: none;
}

/* Sections & Popular Scroll */
.vm-section-header h3 {
    font-size: 3.5rem;
    color: var(--vm-text);
    margin: 0 0 40px;
    font-weight: 400;
    text-align: center;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    width: 100%;
}

@media (min-width: 1200px) {
    .vm-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.vm-item-inner {
    background: var(--vm-card-bg, #ffffff);
    border: 1.5px solid var(--vm-card-border, #e2e8f0) !important;
    border-radius: var(--vm-radius-lg);
    padding: 15px;
    transition: var(--vm-transition);
    min-height: 350px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vm-see-all {
    color: var(--vm-accent);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vm-popular-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 5px 20px 20px;
    scrollbar-width: none;
}

.vm-popular-scroll::-webkit-scrollbar {
    display: none;
}

.vm-popular-card {
    min-width: 160px;
    background: #f2f9f7;
    border-radius: var(--vm-radius-lg);
    padding: 0;
    box-shadow: none;
    overflow: hidden;
    flex-shrink: 0;
}

.vm-card-img {
    height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 16px 16px 0 0;
    position: relative;
}

.vm-heart-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
}

.vm-card-info h4 {
    margin: 0;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vm-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vm-card-price {
    font-weight: 800;
    font-size: 0.9rem;
}

/* Price + Cart + Qty row */
.vm-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 15px;
    width: 100%;
}

.vm-add-quick {
    position: static;
    background: #2a302c;
    color: white;
    border: none;
    flex: 1;
    height: 40px;
    padding: 0 15px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--vm-transition);
    flex-shrink: 0;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.vm-add-quick:hover {
    background: var(--vm-accent);
    transform: scale(1.08);
}

/* Quantity control: + num − */
.vm-card-qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    background: #f1f5f3;
    border-radius: 50px;
    padding: 4px 6px;
    border: 1px solid #e2e8e0;
    flex-shrink: 0;
}

.vm-cqty-btn {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    color: #2a302c;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    line-height: 1;
    padding: 0;
}

.vm-cqty-btn:hover {
    background: #d6e4de;
}

.vm-card-qty-val {
    min-width: 22px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    color: #2a302c;
}

.vm-card-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    padding: 4px;
    border-radius: var(--vm-radius-pill);
}

.vm-card-qty button {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: #ef4444;
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-card-info {
    padding: 12px 15px 15px;
}

.vm-order-btn {
    background: var(--vm-accent);
    color: white;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--vm-transition);
}

.vm-order-btn:hover {
    background: var(--vm-secondary);
    transform: scale(1.1);
}

.vm-order-btn i {
    font-size: 18px;
}

.vm-btn-small:hover {
    background: #dc2626;
}

/* Main Grid */
.vm-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 20px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
    align-items: stretch;
    justify-content: center;
}

.vm-item {
    display: flex;
    flex-direction: column;
}

@media (max-width: 1024px) {
    .vm-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .vm-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
        padding: 0 10px;
        width: 100% !important;
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .vm-grid {
        grid-template-columns: 1fr !important;
        /* Switch to 1 column on very small phones to avoid overflow */
        padding: 0 15px;
    }

    .vm-item-footer {
        flex-direction: column;
        gap: 8px;
    }

    .vm-add-quick,
    .vm-card-qty-control {
        width: 100%;
        justify-content: center;
    }
}



/* Cart Drawer - Glassmorphism */
#vm-cart-drawer {
    position: fixed;
    top: 20px;
    right: 20px;
    bottom: 20px;
    width: 380px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--vm-radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    z-index: 3000;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.vm-drawer-closed {
    transform: translateX(120%);
}

.vm-drawer-header {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.vm-drawer-header h3 {
    font-size: 1.2rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#vm-close-drawer {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--vm-text-muted);
}

.vm-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.vm-cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.vm-cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.vm-cart-item-info {
    flex: 1;
}

.vm-cart-item-name {
    font-weight: 600;
    font-size: 14px;
    display: block;
}

.vm-cart-item-price {
    font-size: 13px;
    color: var(--vm-gold);
    font-weight: 700;
}

.vm-remove-item {
    cursor: pointer;
    color: var(--vm-text-muted);
    font-size: 18px;
    transition: color 0.3s;
}

.vm-remove-item:hover {
    color: #ef4444;
}

.vm-drawer-footer {
    padding: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.vm-cart-total-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.1rem;
}

#vm-whatsapp-final {
    background: #5b6b64;
    color: white;
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

#vm-whatsapp-final:hover {
    background: #4a5751;
}

/* List View Styles (Image 1) */
.vm-list-view {
    padding: 0 20px;
}

.vm-list-header {
    height: 200px;
    background-image: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--vm-radius-lg);
    margin-bottom: 40px;
    position: relative;
}

.vm-list-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--vm-radius-lg);
}

.vm-list-header h2 {
    color: white;
    font-family: 'Mrs Saint Delafield', cursive;
    font-size: 5rem;
    position: relative;
    z-index: 1;
    margin: 0;
}

.vm-list-cat-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Mrs Saint Delafield', cursive;
    font-size: 2.8rem;
    margin: 50px 0 25px;
    color: #1e293b;
}

.vm-list-cat-title::after {
    content: '';
    flex: 1;
    height: 1.5px;
    background: #475569;
    /* Darker line as in image */
}

.vm-list-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .vm-list-items {
        grid-template-columns: 1fr;
    }
}

.vm-list-item {
    position: relative;
    padding-bottom: 10px;
}

.vm-list-item-main {
    display: flex;
    align-items: baseline;
    margin-bottom: 5px;
}

.vm-list-item-name {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    white-space: nowrap;
}

.vm-list-item-dots {
    flex: 1;
    border-bottom: 1px dotted #cbd5e1;
    margin: 0 10px;
}

.vm-list-item-price {
    color: var(--vm-gold);
    font-family: 'Mrs Saint Delafield', cursive;
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 400;
}

.vm-list-item-desc {
    font-size: 12px;
    color: var(--vm-text-muted);
}

.vm-list-item-recommended {
    border: 1px solid var(--vm-gold);
    padding: 20px !important;
    margin: -10px -15px 10px;
    background: #f2f9f7;
    box-sizing: border-box;
    position: relative;
}

.vm-list-recommended-tag {
    position: absolute;
    bottom: 10px;
    right: 15px;
    color: var(--vm-gold);
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
}




/* =============================================
   BOTTOM NAVIGATION — FLOATING PILL (ALL SCREENS)
   ============================================= */


.vm-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.25s ease, background 0.25s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.vm-nav-item svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    pointer-events: none;
}

.vm-nav-item.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

.vm-nav-item:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

/* Cart count badge on the nav cart icon */
.vm-nav-cart-count {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--vm-badge-bg, #ef4444);
    color: var(--vm-badge-text, white);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--vm-accent);
    line-height: 1;
    z-index: 1;
}

#vm-floating-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 5000;
}

/* ---- Desktop (> 768px) adjustments ---- */
@media (min-width: 769px) {
    .vm-bottom-nav {
        padding: 16px 48px;
        gap: 16px;
        bottom: 28px;
    }

    .vm-nav-item {
        width: 60px;
        height: 60px;
    }

    .vm-nav-item svg {
        width: 28px;
        height: 28px;
    }

    .vm-container {
        padding-bottom: 130px;
    }

    /* Keep floating cart visible on desktop as it complements nav */
    #vm-floating-cart {
        bottom: 110px;
    }
}

/* ---- Mobile (≤ 768px) adjustments ---- */
@media (max-width: 768px) {


    .vm-nav-item {
        width: 46px;
        height: 46px;
    }

    .vm-nav-item svg {
        width: 22px;
        height: 22px;
    }

    .vm-container {
        padding-bottom: 100px;
    }

    /* Keep floating cart visible on mobile */
    #vm-floating-cart {
        bottom: 20px;
        right: 20px;
    }

    /* Grid is already 2 columns from previous media query, just ensuring stability */
    .vm-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .vm-categories {
        justify-content: flex-start;
        padding-left: 10px;
        padding-right: 10px;
    }
}

#vm-floating-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2500;
    transition: var(--vm-transition);
}

.vm-floating-cart-hidden {
    display: none;
}

.vm-cart-trigger {
    background: var(--vm-accent);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    color: white;
}

.vm-cart-trigger i {
    font-size: 30px;
    width: 30px;
    height: 30px;
}

.vm-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--vm-badge-bg, #ff3d00);
    color: var(--vm-badge-text, white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid white;
}

/* Floating Cart Sidebar */
#vm-cart-drawer {
    z-index: 10000;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
    display: flex;
    flex-direction: column;
}

#vm-cart-drawer.vm-drawer-closed {
    transform: translateX(100%);
}

@media (max-width: 768px) {
    #vm-cart-drawer.vm-drawer-closed {
        transform: translateY(100%);
    }
}

.vm-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .vm-drawer-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

.vm-drawer-header h3 {
    font-size: 1.8rem;
    color: var(--vm-accent);
    margin: 0;
}

#vm-close-drawer {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--vm-slate);
}

.vm-drawer-body {
    flex: 1;
    overflow-y: auto;
}

#vm-cart-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vm-cart-item {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.vm-cart-item-img {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .vm-cart-item-img {
        width: 80px;
        height: 80px;
    }
}

.vm-cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vm-cart-item-name-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}

.vm-cart-item-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--vm-text);
}

.vm-remove-item {
    cursor: pointer;
    color: #ef4444;
    font-size: 1.4rem;
    line-height: 1;
    opacity: 0.6;
    transition: opacity 0.2s;
    margin-top: -5px;
}

.vm-remove-item:hover {
    opacity: 1;
}

.vm-cart-item-variant {
    font-size: 11px;
    color: var(--vm-text-muted);
    margin-bottom: 12px;
    display: block;
}

.vm-cart-item-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.vm-cart-qty-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    padding: 2px 6px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.vm-cart-qty-btn {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--vm-accent);
    padding: 0;
    margin-left: 8px;
}

@media (max-width: 768px) {
    .vm-cart-qty-btn {
        margin-left: 0;
        margin-top: 8px;
    }
}

.vm-cart-qty-btn:hover {
    color: var(--vm-gold);
}

.vm-cart-qty-val {
    font-weight: 700;
    font-size: 14px;
    min-width: 18px;
    text-align: center;
}

.vm-cart-item-price {
    font-weight: 800;
    color: var(--vm-accent);
    font-size: 0.95rem;
}

.vm-drawer-footer {
    margin-top: 40px;
}

.vm-cart-total-info {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--vm-accent);
    display: flex;
    justify-content: space-between;
}

#vm-whatsapp-final {
    background: var(--vm-accent);
    color: white;
    border: none;
    padding: 20px;
    border-radius: var(--vm-radius-md);
    width: 100%;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--vm-transition);
    border: 1px solid transparent;
}

#vm-whatsapp-final:hover {
    background: white;
    color: var(--vm-accent);
    border-color: var(--vm-accent);
}

#vm-whatsapp-final i {
    font-size: 20px;
}

/* Gold accent on the WhatsApp button */
#vm-whatsapp-final::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--vm-gold);
    border-radius: 50%;
}

.vm-rtl #vm-cart-drawer {
    right: auto;
    left: 0;
    border-left: none;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.05);
}

.vm-rtl #vm-cart-drawer.vm-drawer-closed {
    transform: translateX(-100%);
}

#vm-cart-drawer:not(.vm-drawer-closed) {
    transform: translateX(0);
}

@media (max-width: 768px) {
    #vm-cart-drawer:not(.vm-drawer-closed) {
        transform: translateY(0);
        top: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 100vh;
    }
}

.vm-drawer-header {
    padding: 25px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vm-drawer-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

#vm-close-drawer {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--vm-text-muted);
}

.vm-drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}

#vm-cart-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vm-cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f8fafc;
}

.vm-cart-item-name {
    font-weight: 600;
}

.vm-remove-item {
    color: #ff3d00;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.vm-drawer-footer {
    padding: 25px;
    border-top: 1px solid #f1f5f9;
}

.vm-cart-total-info {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.1rem;
}

.vm-full-width {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    gap: 10px;
}

#vm-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 5500;
    display: none;
    backdrop-filter: blur(4px);
}

/* Floating Cart */
#vm-floating-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    left: auto;
    z-index: 9999;
    cursor: pointer;
}

.vm-rtl #vm-floating-cart {
    right: auto;
    left: 30px;
}

.vm-cart-trigger {
    width: 65px;
    height: 65px;
    background: var(--vm-accent, #84948E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(132, 148, 142, 0.4);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vm-cart-trigger:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(132, 148, 142, 0.6);
}

.vm-cart-trigger i {
    font-size: 28px !important;
}

.vm-cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--vm-badge-bg, #ff4757);
    color: var(--vm-badge-text, white);
    font-size: 12px;
    font-weight: 800;
    min-width: 24px;
    height: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    padding: 0 4px;
}

.vm-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

.vm-floating-btn i {
    font-size: 24px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vm-item {
    animation: fadeInUp 0.5s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .vm-section-header h3 {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }

    .vm-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px 15px;
        padding: 0;
    }

    .vm-item-title {
        font-size: 1.15rem;
    }

    .vm-item-desc {
        font-size: 13px;
    }

    .vm-categories {
        justify-content: flex-start;
        padding: 0 15px 15px;
    }

    .vm-desktop-nav {
        display: none;
    }

    .vm-contact-wrapper {
        flex-direction: column;
    }

    .vm-filtration-row {
        flex-direction: column;
        gap: 0;
        padding: 15px 20px;
        align-items: stretch;
    }

    #vm-mobile-filter-toggle {
        display: flex;
    }

    .vm-filters-wrapper {
        display: none;
        flex-direction: column;
        gap: 20px;
        padding-top: 20px;
        margin-top: 15px;
        border-top: 1px solid #f1f5f9;
    }

    .vm-filters-wrapper.open {
        display: flex;
        animation: fadeInDown 0.3s ease forwards;
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .vm-filters-left,
    .vm-filters-right {
        justify-content: space-between;
        width: 100%;
        gap: 10px;
    }

    .vm-filters-left {
        flex-wrap: wrap;
    }

    .vm-full-width {
        padding: 16px 12px !important;
        font-size: 22px !important;
    }
}

/* =========================================
   NEW STYLES (Info Sections & Details View)
   ========================================= */

.vm-clickable-card {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vm-clickable-card:hover {
    transform: translateY(-3px);
}





/* Product Details View */
/* Single Product Page View */
#vm-product-details-view {
    background: white;
    min-height: 100vh;
}

.vm-details-header {
    position: relative;
    width: 100%;
    height: 240px;
}

.vm-details-header-img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.vm-details-header-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vm-details-body {
    padding: 30px 20px 100px;
    margin-top: -30px;
    background: white;
    border-radius: 30px 30px 0 0;
    position: relative;
    z-index: 5;
}

.vm-details-icon-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--vm-accent);
}

.vm-rtl .vm-details-icon-btn {
    left: auto;
    right: 20px;
    transform: scaleX(-1);
}

.vm-details-body {
    padding: 30px 25px 120px;
    background: white;
    border-radius: 30px 30px 0 0;
    margin-top: -30px;
    position: relative;
    z-index: 5;
}

.vm-details-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.vm-details-title-row h2 {
    font-size: 2rem;
    margin: 0;
    color: #1e293b;
}

.vm-details-cat {
    color: var(--vm-gold);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vm-details-price {
    font-family: 'Mrs Saint Delafield', cursive;
    font-size: 2.5rem;
    color: var(--vm-gold);
}

.vm-details-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 25px;
    color: #facc15;
}

.vm-details-rating span {
    color: var(--vm-text-muted);
    font-size: 14px;
    font-weight: 600;
    margin-left: 5px;
}

.vm-details-tabs {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 20px;
}

.vm-details-tabs button {
    background: none;
    border: none;
    padding: 10px 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--vm-text-muted);
    cursor: pointer;
    position: relative;
}

.vm-details-tabs button.active {
    color: #1e293b;
}

.vm-details-tabs button.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #1e293b;
}

.vm-details-desc-wrapper p {
    line-height: 1.8;
    color: #475569;
    font-size: 1.05rem;
}

/* Product Detail View - The Gilded Whisk Luxury Style */
#vm-product-details-view {
    background: white;
    min-height: 100vh;
    padding: 79px 60px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4000;
    overflow-y: auto;
}

.vm-details-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

@media (max-width: 768px) {
    #vm-product-details-view {
        padding: 20px;
    }

    .vm-details-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    #vm-details-title {
        font-size: 2.2rem;
    }

    .vm-details-actions {
        flex-direction: column;
    }

    .vm-ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    #vm-details-price-circle {
        top: 18px;
        right: 36px;
        width: auto;
        height: 39px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .vm-btn-add-to-cart {
        flex: 1;
        background: #84948E;
        color: white;
        border: none;
        padding: 16px 12px !important;
        font-size: 22px !important;
        border-radius: 8px;
        font-weight: 700;
        letter-spacing: 1px;
        cursor: pointer;
        transition: background 0.3s;
    }

    .vm-btn-whatsapp-outline {
        flex: 1;
        background: white;
        color: #84948e;
        border: 1px solid #84948e;
        padding: 16px 12px !important;
        border-radius: 8px;
        font-weight: 700;
        letter-spacing: 1px;
        font-size: 22px !important;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: background 0.3s;
    }
}

.vm-back-btn {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    color: var(--vm-text);
}

.vm-details-main-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--vm-radius-md);
    overflow: hidden;
}

.vm-details-main-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vm-details-gallery {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.vm-gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.vm-gallery-thumb.active {
    opacity: 1;
    border: 2px solid var(--vm-gold);
}

.vm-details-header-info {
    position: relative;
    margin-bottom: 30px;
}

#vm-details-title {
    font-size: 3rem;
    line-height: 1.1;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.vm-details-tagline {
    font-size: 1.1rem;
    color: var(--vm-accent);
    margin: 0;
}

#vm-details-price-circle {
    /* Styles inherited from .vm-price-pill */
    z-index: 10;
    border-radius: 8px !important;
}

.vm-details-description {
    font-size: 15px;
    color: var(--vm-text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.vm-option-group {
    margin-bottom: 25px;
}

.vm-option-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--vm-text);
}

.vm-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vm-checkbox-container {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
    display: flex;
    align-items: center;
}

.vm-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.vm-checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    background-color: white;
    border: 1px solid #e2e8e5;
    border-radius: 4px;
}

.vm-checkbox-container:hover input~.vm-checkmark {
    background-color: #f1f5f3;
}

.vm-checkbox-container input:checked~.vm-checkmark {
    background-color: var(--vm-accent);
    border-color: var(--vm-accent);
}

.vm-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.vm-checkbox-container input:checked~.vm-checkmark:after {
    display: block;
}

.vm-checkbox-container .vm-checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.vm-details-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
}

.vm-qty-selector-luxury {
    display: flex;
    align-items: center;
    background: #f8faf9;
    border-radius: 8px;
    padding: 5px;
    border: 1px solid #e2e8e5;
}

.vm-qty-selector-luxury button {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    color: var(--vm-text);
}

.vm-qty-selector-luxury span {
    width: 40px;
    text-align: center;
    font-weight: 600;
}

.vm-btn-add-to-cart {
    width: 100%;
    max-width: 300px;
    background: #2a302c;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 14px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vm-btn-add-to-cart:hover {
    background: #1a201e;
}

.vm-btn-whatsapp-outline {
    flex: 1;
    background: white;
    color: #84948e;
    border: 1px solid #84948e;
    padding: 4px 12px;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s;
}

.vm-btn-whatsapp-outline:hover {
    background: #f8faf9;
}

.vm-details-ingredients {
    margin-top: 60px;
}

.vm-details-ingredients h3,
.vm-details-recommendations h3 {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--vm-text-muted);
}

.vm-ingredients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.vm-ingredient-item {
    text-align: center;
}

.vm-ingredient-icon {
    width: 60px;
    height: 60px;
    background: #fdfcf6;
    border: 1px solid #eef2f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: var(--vm-accent);
}

.vm-ingredient-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--vm-text);
}

.vm-ingredients-summary {
    font-size: 13px;
    color: var(--vm-text-muted);
    font-style: italic;
    line-height: 1.6;
}

.vm-recommendations-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.vm-recommendation-card {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.vm-recommendation-card:hover {
    transform: translateY(-5px);
}

.vm-recommendation-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.vm-recommendation-card h4 {
    font-size: 14px;
    margin: 0 0 5px;
    font-weight: 600;
}

.vm-recommendation-card p {
    font-size: 12px;
    color: var(--vm-text-muted);
    margin: 0;
}

@media (min-width: 769px) {
    .vm-container {
        max-width: 1400px;
        margin: 0 auto;
    }
}

/* Bottom Navigation Bar */
.vm-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 5px 25px;
    z-index: 1000;
    border-top: 1px solid #f1f1f1;
}

.vm-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #717171;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    gap: 4px;
    padding: 10px 15px;
    border-radius: 16px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    background: transparent;
    flex: 1;
}

.vm-nav-item i {
    font-size: 24px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}

.vm-nav-item.active {
    background: #fff3e6;
    color: #e67e22;
}

.vm-nav-item:hover:not(.active) {
    color: #333;
}

@media (min-width: 992px) {
    .vm-bottom-nav {
        display: none;
        /* Hide on larger screens if desired, or keep as a mobile-only footer */
    }
}

/* Home View Styles */
.vm-app-view.vm-view-hidden {
    display: none;
}

.vm-app-view.vm-view-active {
    display: block;
}

#vm-home-view {
    padding: 20px;
    animation: vmFadeIn 0.4s ease;
}

.vm-home-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.vm-home-card {
    background: var(--vm-card-bg);
    border: 1px solid var(--vm-card-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.vm-home-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: var(--vm-accent);
    margin: 0 0 15px 0;
    font-weight: 700;
}

.vm-home-card h3 i {
    font-size: 20px;
}

.vm-home-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--vm-text);
    margin: 0;
}

.vm-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 20px;
    border: 2px solid var(--vm-accent);
    color: var(--vm-accent);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.vm-btn-outline:hover {
    background: var(--vm-accent);
    color: #fff;
}

.vm-social-links {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.vm-social-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.2s ease;
}

.vm-social-btn:hover {
    transform: translateY(-3px);
}

.vm-social-btn.fb {
    background: #1877f2;
}

.vm-social-btn.ig {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.vm-social-btn.tt {
    background: #000000;
}

.vm-social-btn.ph {
    background: #2ecc71;
}

@keyframes vmFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vm-view-hidden {
    display: none !important;
}