/*
Theme Name: Storess
Theme URI: https://sellerthemes.com/storess/
Description: Storess is a child theme of Storely with official Vioroc Network Solutions branding and dark aesthetic.
Author: Seller Themes & Vioroc
Author URI: https://vioroc.com.mx
Template: storely
Version: 30.0
*/


/*
Theme Name: Vioroc Store
Theme URI: https://vioroc.com.mx
Description: Tema oficial para la tienda en linea de Vioroc Network Solutions. Reproduce fielmente la estetica cinematografica, tecnologica y de alta fidelidad de vioroc.com.mx con soporte completo para WooCommerce.
Author: Vioroc Network Solutions
Author URI: https://vioroc.com.mx
Template: storely
Version: 1.0.0
Text Domain: vioroc-store
*/

:root {
    --vioroc-bg: #020617;
    --vioroc-bg-alt: #0b0f19;
    --vioroc-surface: #0f172a;
    --vioroc-surface-card: #0f172a;
    --vioroc-surface-light: #1e293b;
    --vioroc-border: #1e293b;
    --vioroc-border-light: rgba(255, 255, 255, 0.08);
    --vioroc-border-glow: rgba(14, 140, 233, 0.35);
    
    --vioroc-blue: #0e8ce9;
    --vioroc-blue-light: #38aaf6;
    --vioroc-blue-hover: #026fc7;
    --vioroc-blue-glow: rgba(14, 140, 233, 0.25);
    
    --vioroc-cyan: #06b6d4;
    --vioroc-emerald: #10b981;
    --vioroc-purple: #8b5cf6;
    --vioroc-amber: #f59e0b;
    --vioroc-rose: #f43f5e;
    
    --vioroc-text: #f8fafc;
    --vioroc-text-muted: #94a3b8;
    --vioroc-text-dim: #64748b;
    
    --vioroc-font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --vioroc-font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Global Reset & Dark Theme */
html {
    scroll-behavior: smooth;
    background-color: var(--vioroc-bg);
    color: var(--vioroc-text);
}

body {
    background-color: var(--vioroc-bg) !important;
    color: var(--vioroc-text) !important;
    font-family: var(--vioroc-font-sans) !important;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #020617;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 5px;
    border: 2px solid #020617;
}
::-webkit-scrollbar-thumb:hover {
    background: #334155;
}

/* Typography */
h1, h2, h3, h4, h5, h6,
.entry-title, .page-title, .widget-title, .product_title {
    font-family: var(--vioroc-font-heading) !important;
    color: #ffffff !important;
    letter-spacing: -0.02em;
    font-weight: 700 !important;
}

p, span, li, a, label, input, button, select, textarea {
    font-family: var(--vioroc-font-sans);
}

a {
    color: var(--vioroc-blue-light);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover {
    color: #ffffff;
    text-decoration: none;
}

/* Background Ambient Glows */
.vioroc-ambient-glow {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    border-radius: 9999px;
    filter: blur(100px);
}
.glow-top-left {
    top: -50px;
    left: 20%;
    width: 450px;
    height: 450px;
    background: rgba(14, 140, 233, 0.12);
    animation: pulseGlow 6s ease-in-out infinite alternate;
}
.glow-middle-right {
    top: 35%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: rgba(139, 92, 246, 0.08);
}
.glow-bottom-left {
    bottom: 10%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: rgba(6, 182, 212, 0.08);
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.12); opacity: 1; }
}

/* Hide Default Storely / Storess distracting elements */
#above-header,
.main-header,
.browse-section,
.storely-breadcrumbs,
.scrollingUp,
#main-header3 {
    display: none !important;
}

/* Override Storely site wrapper */
#page.site {
    background-color: var(--vioroc-bg) !important;
    position: relative;
    z-index: 1;
}

.storely-content {
    background-color: transparent !important;
    padding-top: 100px !important;
    min-height: 80vh;
}


/* Vioroc Store - Complete Custom Theme & WooCommerce Dark Styles */

/* Common Container */
.vioroc-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

/* Helpers & Utilities */
.text-brand-blue { color: var(--vioroc-blue) !important; }
.text-cyan { color: var(--vioroc-cyan) !important; }
.text-emerald { color: var(--vioroc-emerald) !important; }
.text-purple { color: var(--vioroc-purple) !important; }
.text-sky { color: var(--vioroc-blue-light) !important; }
.text-amber { color: var(--vioroc-amber) !important; }
.text-teal { color: #14b8a6 !important; }
.text-gradient-blue {
    background: linear-gradient(135deg, #38aaf6 0%, #0e8ce9 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.d-none-mobile { display: inline-block; }
@media (max-width: 768px) {
    .d-none-mobile { display: none !important; }
}

/* Status Pulse Dot */
.status-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 9999px;
    display: inline-block;
    box-shadow: 0 0 10px #10b981;
    animation: statusPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

/* 1. TOPBAR */
.vioroc-topbar {
    background: rgba(2, 6, 23, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    color: var(--vioroc-text-muted);
    padding: 0.4rem 0;
    position: relative;
    z-index: 60;
}
.vioroc-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.topbar-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.topbar-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.topbar-link {
    color: var(--vioroc-text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s ease;
}
.topbar-link:hover {
    color: #ffffff;
}
.topbar-link.whatsapp-link {
    color: #34d399;
}
.topbar-link.whatsapp-link:hover {
    color: #6ee7b7;
}
.divider {
    color: rgba(255, 255, 255, 0.15);
}
@media (max-width: 768px) {
    .topbar-right { display: none; }
    .topbar-left { width: 100%; justify-content: center; }
}

/* 2. HEADER & NAVBAR */
.vioroc-navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}
.vioroc-navbar.scrolled {
    background: rgba(10, 15, 29, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(14, 140, 233, 0.2);
}
.vioroc-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

/* Brand Logo */
.vioroc-brand-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}
.logo-icon-wrapper {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-icon-glow {
    position: absolute;
    inset: -2px;
    background: rgba(14, 140, 233, 0.35);
    border-radius: 12px;
    filter: blur(6px);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.vioroc-brand-logo:hover .logo-icon-glow {
    opacity: 1;
    filter: blur(10px);
    background: rgba(14, 140, 233, 0.6);
}
.vioroc-logo-img {
    position: relative;
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(14, 140, 233, 0.4));
    transition: transform 0.3s ease;
}
.vioroc-brand-logo:hover .vioroc-logo-img {
    transform: scale(1.05);
}
.brand-text-col {
    display: flex;
    flex-direction: column;
}
.brand-title-row {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.brand-title {
    font-family: var(--vioroc-font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    color: #ffffff;
    letter-spacing: -0.03em;
}
.brand-title-blue {
    color: var(--vioroc-blue);
}
.brand-badge {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: rgba(14, 140, 233, 0.15);
    color: var(--vioroc-blue-light);
    border: 1px solid rgba(14, 140, 233, 0.35);
    padding: 0.15rem 0.45rem;
    border-radius: 9999px;
    text-transform: uppercase;
}
.brand-subtitle {
    font-size: 0.65rem;
    color: var(--vioroc-text-dim);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: -2px;
}

/* Nav Desktop */
.vioroc-nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.nav-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.85rem;
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--vioroc-text-muted);
    border-radius: 9999px;
    transition: all 0.2s ease;
}
.nav-item .nav-icon {
    width: 15px;
    height: 15px;
}
.nav-item:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}
.nav-item.active {
    color: #ffffff;
    background: rgba(14, 140, 233, 0.15);
    border: 1px solid rgba(14, 140, 233, 0.3);
}

/* Header Actions */
.vioroc-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.header-action-btn {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--vioroc-text-muted);
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.header-action-btn:hover {
    background: rgba(14, 140, 233, 0.2);
    border-color: rgba(14, 140, 233, 0.4);
    color: #ffffff;
}

/* Cart Button */
.vioroc-cart-button {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, rgba(14, 140, 233, 0.2) 0%, rgba(2, 111, 199, 0.3) 100%);
    border: 1px solid rgba(14, 140, 233, 0.4);
    color: #ffffff;
    padding: 0.45rem 1rem;
    border-radius: 9999px;
    font-size: 0.825rem;
    font-weight: 600;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(14, 140, 233, 0.15);
}
.vioroc-cart-button:hover {
    background: linear-gradient(135deg, #0e8ce9 0%, #026fc7 100%);
    border-color: #38aaf6;
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(14, 140, 233, 0.4);
    transform: translateY(-1px);
}
.cart-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.vioroc-cart-count {
    position: absolute;
    top: -7px;
    right: -10px;
    background: #e11d48;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 17px;
    height: 17px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    box-shadow: 0 2px 5px rgba(225, 29, 72, 0.5);
}

@media (max-width: 992px) {
    .vioroc-nav-desktop { display: none; }
}

/* Quick Search Dropdown */
.vioroc-search-dropdown {
    background: rgba(11, 15, 25, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(14, 140, 233, 0.3);
    padding: 1rem 0;
    animation: slideDown 0.2s ease-out;
}
.vioroc-search-dropdown.hidden {
    display: none;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.vioroc-search-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 0.35rem 0.75rem;
    transition: border-color 0.2s ease;
}
.vioroc-search-form:focus-within {
    border-color: var(--vioroc-blue);
    box-shadow: 0 0 0 3px rgba(14, 140, 233, 0.2);
}
.search-input-icon {
    width: 20px;
    height: 20px;
    color: var(--vioroc-text-dim);
}
.search-input-field {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: var(--vioroc-font-sans);
}
.search-submit-btn {
    background: var(--vioroc-blue);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 0.45rem 1.15rem;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s ease;
}
.search-submit-btn:hover {
    background: var(--vioroc-blue-hover);
}
.search-close-btn {
    background: transparent;
    border: none;
    color: var(--vioroc-text-dim);
    cursor: pointer;
    padding: 0.3rem;
}
.search-close-btn:hover {
    color: #ffffff;
}

/* Mobile Nav Drawer */
.vioroc-mobile-menu {
    background: rgba(11, 15, 25, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0 2rem;
}
.vioroc-mobile-menu.hidden {
    display: none;
}
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    color: var(--vioroc-text);
    font-size: 0.95rem;
    font-weight: 600;
    transition: background 0.2s ease;
}
.mobile-nav-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}
.mobile-nav-item.secondary {
    color: var(--vioroc-text-muted);
    font-size: 0.875rem;
}
.mobile-nav-item svg {
    width: 18px;
    height: 18px;
}
.mobile-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0.75rem 0;
}
.mobile-nav-heading {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--vioroc-text-dim);
    padding: 0 1rem;
    font-weight: 700;
}
.mobile-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #10b981;
    color: #ffffff;
    padding: 0.8rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* 3. HERO SECTION (HOMEPAGE) */
.vioroc-hero-section {
    position: relative;
    padding: 5rem 0 3.5rem;
    text-align: center;
    overflow: hidden;
}
.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(14, 140, 233, 0.1);
    border: 1px solid rgba(14, 140, 233, 0.3);
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}
.hero-badge-text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--vioroc-blue-light);
    text-transform: uppercase;
}
.hero-heading {
    font-size: clamp(2.2rem, 5vw, 4rem) !important;
    line-height: 1.12 !important;
    max-width: 950px;
    margin: 0 auto 1.25rem;
    font-weight: 800 !important;
}
.hero-subheading {
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    color: var(--vioroc-text-muted);
    max-width: 720px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* Hero Search Box */
.hero-search-wrapper {
    width: 100%;
    max-width: 680px;
    margin: 0 auto 2.5rem;
}
.hero-search-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9999px;
    padding: 0.4rem 0.5rem 0.4rem 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}
.hero-search-form:focus-within {
    border-color: var(--vioroc-blue);
    box-shadow: 0 10px 35px rgba(14, 140, 233, 0.25);
}
.search-input-group {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex: 1;
}
.search-box-icon {
    width: 20px;
    height: 20px;
    color: var(--vioroc-blue-light);
}
.hero-search-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 0.95rem;
}
.hero-search-btn {
    background: linear-gradient(135deg, #0e8ce9 0%, #026fc7 100%);
    color: #ffffff;
    border: none;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.hero-search-btn:hover {
    background: linear-gradient(135deg, #38aaf6 0%, #0e8ce9 100%);
    box-shadow: 0 4px 15px rgba(14, 140, 233, 0.4);
    transform: scale(1.02);
}

@media (max-width: 600px) {
    .hero-search-form {
        flex-direction: column;
        border-radius: 20px;
        padding: 0.75rem;
    }
    .hero-search-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Trust Pills Grid */
.hero-trust-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}
.trust-pill {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.4rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.775rem;
    font-weight: 600;
    color: var(--vioroc-text-muted);
}
.trust-pill svg {
    width: 14px;
    height: 14px;
}

/* 4. SECTION COMMON HEADERS */
.section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}
.section-subtitle {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--vioroc-blue-light);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.35rem;
}
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.3rem) !important;
    margin: 0 !important;
}
.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--vioroc-blue-light);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
}
.view-all-link:hover {
    color: #ffffff;
    transform: translateX(3px);
}

/* 5. CATEGORIES SHOWCASE */
.vioroc-categories-section {
    padding: 3rem 0;
}
.categories-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
@media (max-width: 1024px) {
    .categories-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .categories-cards-grid { grid-template-columns: 1fr; }
}
.category-card {
    position: relative;
    height: 280px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.category-card:hover {
    border-color: rgba(14, 140, 233, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    transform: translateY(-4px);
}
.category-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}
.category-card:hover .category-bg-img {
    transform: scale(1.08);
}
.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.1) 0%, rgba(2, 6, 23, 0.75) 50%, #020617 100%);
}
.category-card-content {
    position: relative;
    z-index: 2;
}
.cat-pill {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.35rem;
}
.cat-name {
    font-size: 1.2rem !important;
    line-height: 1.3;
    margin: 0 0 0.4rem !important;
}
.cat-desc {
    font-size: 0.775rem;
    color: var(--vioroc-text-muted);
    margin: 0 0 0.85rem;
    line-height: 1.4;
}
.cat-action {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.775rem;
    font-weight: 700;
    color: var(--vioroc-blue-light);
    transition: color 0.2s ease;
}
.category-card:hover .cat-action {
    color: #ffffff;
}

/* 6. PRODUCTS GRID & PRODUCT CARDS */
.vioroc-featured-products-section {
    padding: 3rem 0;
}
.filter-pills-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.filter-pill {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--vioroc-text-muted);
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    transition: all 0.2s ease;
}
.filter-pill:hover,
.filter-pill.active {
    background: rgba(14, 140, 233, 0.2);
    border-color: rgba(14, 140, 233, 0.4);
    color: #ffffff;
}

.vioroc-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
@media (max-width: 1100px) {
    .vioroc-products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .vioroc-products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 480px) {
    .vioroc-products-grid { grid-template-columns: 1fr; }
}

.vioroc-product-card {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.vioroc-product-card:hover {
    border-color: rgba(14, 140, 233, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
}
.product-thumb-wrapper {
    position: relative;
    background: #020617;
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.product-badge-sale {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e11d48;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    letter-spacing: 0.05em;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(225, 29, 72, 0.4);
}
.product-img-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-thumb-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.vioroc-product-card:hover .product-thumb-img {
    transform: scale(1.06);
}

.product-info-wrapper {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-category-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.4rem;
}
.product-cat-label {
    font-size: 0.7rem;
    color: var(--vioroc-text-dim);
    font-weight: 600;
    text-transform: uppercase;
}
.stock-badge {
    font-size: 0.65rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.stock-badge.in-stock {
    color: #10b981;
}
.mini-dot {
    width: 5px;
    height: 5px;
    border-radius: 9999px;
    background-color: currentColor;
}
.product-card-title {
    font-size: 0.95rem !important;
    line-height: 1.4;
    margin: 0 0 1rem !important;
    font-weight: 600 !important;
    flex: 1;
}
.product-card-title a {
    color: #f8fafc;
    transition: color 0.2s ease;
}
.product-card-title a:hover {
    color: var(--vioroc-blue-light);
}
.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.product-price-box {
    display: flex;
    flex-direction: column;
}
.product-price-box .price,
.product-price-box {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--vioroc-font-heading);
}
.product-price-box del {
    font-size: 0.8rem;
    color: var(--vioroc-text-dim);
    font-weight: 400;
}
.product-price-box ins {
    text-decoration: none;
    color: #38bdf8;
}

.vioroc-add-to-cart-btn {
    background: linear-gradient(135deg, rgba(14, 140, 233, 0.2) 0%, rgba(2, 111, 199, 0.35) 100%);
    border: 1px solid rgba(14, 140, 233, 0.4);
    color: #ffffff !important;
    padding: 0.45rem 0.9rem;
    border-radius: 10px;
    font-size: 0.775rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
.vioroc-add-to-cart-btn:hover {
    background: var(--vioroc-blue);
    border-color: #38aaf6;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(14, 140, 233, 0.35);
    transform: translateY(-1px);
}
.vioroc-add-to-cart-btn.secondary {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--vioroc-text-muted) !important;
}
.vioroc-add-to-cart-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
}

.catalog-bottom-cta {
    text-align: center;
    margin-top: 1rem;
}
.vioroc-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0e8ce9 0%, #026fc7 100%);
    color: #ffffff !important;
    padding: 0.85rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 6px 20px rgba(14, 140, 233, 0.35);
    transition: all 0.25s ease;
}
.vioroc-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 140, 233, 0.5);
    background: linear-gradient(135deg, #38aaf6 0%, #0e8ce9 100%);
}

/* 7. VALUE PROPOSITIONS */
.vioroc-propositions-section {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.propositions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 900px) {
    .propositions-grid { grid-template-columns: 1fr; }
}
.prop-card {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.prop-card:hover {
    border-color: rgba(14, 140, 233, 0.35);
    transform: translateY(-3px);
}
.prop-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.prop-icon-box.blue {
    background: rgba(14, 140, 233, 0.15);
    color: var(--vioroc-blue-light);
    border: 1px solid rgba(14, 140, 233, 0.3);
}
.prop-icon-box.emerald {
    background: rgba(16, 185, 129, 0.15);
    color: var(--vioroc-emerald);
    border: 1px solid rgba(16, 185, 129, 0.3);
}
.prop-icon-box.cyan {
    background: rgba(6, 182, 212, 0.15);
    color: var(--vioroc-cyan);
    border: 1px solid rgba(6, 182, 212, 0.3);
}
.prop-title {
    font-size: 1.2rem !important;
    margin: 0 0 0.5rem !important;
}
.prop-desc {
    font-size: 0.875rem;
    color: var(--vioroc-text-muted);
    line-height: 1.5;
    margin: 0 0 1.25rem;
    flex: 1;
}
.prop-highlight {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--vioroc-blue-light);
    background: rgba(14, 140, 233, 0.08);
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    align-self: flex-start;
}

/* 8. BANNER CTA LAB */
.vioroc-lab-cta-section {
    padding: 4rem 0 5rem;
}
.lab-cta-box {
    background: radial-gradient(circle at 10% 20%, rgba(14, 140, 233, 0.25) 0%, rgba(15, 23, 42, 0.95) 70%, #020617 100%);
    border: 1px solid rgba(14, 140, 233, 0.3);
    border-radius: 28px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}
.lab-cta-tag {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--vioroc-blue-light);
    display: block;
    margin-bottom: 0.5rem;
}
.lab-cta-heading {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem) !important;
    max-width: 750px;
    margin: 0 0 1rem !important;
}
.lab-cta-p {
    font-size: 1rem;
    color: var(--vioroc-text-muted);
    max-width: 680px;
    margin: 0 0 2rem;
    line-height: 1.6;
}
.lab-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
.vioroc-btn-white {
    background: #ffffff;
    color: #020617 !important;
    padding: 0.8rem 1.75rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: all 0.2s ease;
}
.vioroc-btn-white:hover {
    background: #f1f5f9;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}
.vioroc-btn-ghost {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    padding: 0.8rem 1.75rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: all 0.2s ease;
}
.vioroc-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
}

/* 9. WOOCOMMERCE ARCHIVE & SINGLE PRODUCT STYLING */
.woocommerce .woocommerce-breadcrumb {
    color: var(--vioroc-text-dim) !important;
    font-size: 0.85rem !important;
    padding: 1.5rem 0 !important;
    margin: 0 0 1rem !important;
}
.woocommerce .woocommerce-breadcrumb a {
    color: var(--vioroc-blue-light) !important;
}
.woocommerce .woocommerce-ordering select,
.woocommerce .woocommerce-result-count {
    background: #0f172a !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 12px !important;
    font-size: 0.875rem !important;
}
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    margin: 2rem 0 !important;
    padding: 0 !important;
    list-style: none !important;
}
@media (max-width: 992px) {
    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 560px) {
    .woocommerce ul.products { grid-template-columns: 1fr !important; }
}

.woocommerce ul.products li.product {
    background: #0f172a !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    padding: 1.25rem !important;
    margin: 0 !important;
    width: auto !important;
    float: none !important;
    display: flex !important;
    flex-direction: column !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.woocommerce ul.products li.product:hover {
    border-color: rgba(14, 140, 233, 0.4) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
}
.woocommerce ul.products li.product a img {
    border-radius: 12px !important;
    margin-bottom: 1rem !important;
    background: #020617;
    padding: 0.5rem;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.05rem !important;
    color: #ffffff !important;
    margin-bottom: 0.5rem !important;
    font-family: var(--vioroc-font-heading) !important;
}
.woocommerce ul.products li.product .price {
    font-size: 1.2rem !important;
    color: #ffffff !important;
    font-family: var(--vioroc-font-heading) !important;
    margin-bottom: 1rem !important;
}
.woocommerce ul.products li.product .button {
    background: linear-gradient(135deg, rgba(14, 140, 233, 0.25) 0%, rgba(2, 111, 199, 0.4) 100%) !important;
    border: 1px solid rgba(14, 140, 233, 0.4) !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    padding: 0.6rem 1rem !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    text-align: center !important;
    transition: all 0.2s ease !important;
    margin-top: auto !important;
}
.woocommerce ul.products li.product .button:hover {
    background: var(--vioroc-blue) !important;
    border-color: #38aaf6 !important;
}

/* Single Product Page */
.woocommerce div.product {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 2.5rem;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.woocommerce div.product div.images img {
    border-radius: 16px;
    background: #020617;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.woocommerce div.product .product_title {
    font-size: 2rem !important;
    margin-bottom: 0.75rem !important;
}
.woocommerce div.product p.price {
    font-size: 1.75rem !important;
    color: #38bdf8 !important;
    font-weight: 700;
}
.woocommerce div.product form.cart .quantity input.qty {
    background: #020617 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    padding: 0.5rem !important;
    font-size: 1rem !important;
}
.woocommerce div.product form.cart .button {
    background: linear-gradient(135deg, #0e8ce9 0%, #026fc7 100%) !important;
    border: none !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    padding: 0.85rem 2rem !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    box-shadow: 0 4px 15px rgba(14, 140, 233, 0.3) !important;
}
.woocommerce div.product form.cart .button:hover {
    background: linear-gradient(135deg, #38aaf6 0%, #0e8ce9 100%) !important;
    transform: translateY(-2px);
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: transparent !important;
    border: none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: var(--vioroc-text-muted) !important;
    font-weight: 700 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--vioroc-blue-light) !important;
    border-bottom: 2px solid var(--vioroc-blue) !important;
}
.woocommerce div.product .woocommerce-tabs .panel {
    background: transparent !important;
    color: var(--vioroc-text-muted) !important;
}

/* 10. CART & CHECKOUT DARK STYLING */
.woocommerce table.shop_table {
    background: #0f172a !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    overflow: hidden;
    color: #ffffff !important;
}
.woocommerce table.shop_table th {
    background: #0b1329 !important;
    color: #ffffff !important;
    font-family: var(--vioroc-font-heading);
    padding: 1rem !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}
.woocommerce table.shop_table td {
    padding: 1rem !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
}
.woocommerce-cart-form, .cart_totals {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}
.cart_totals h2 {
    font-size: 1.4rem !important;
    margin-bottom: 1rem !important;
}
.checkout-button, #place_order {
    background: linear-gradient(135deg, #0e8ce9 0%, #026fc7 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 0.9rem 2rem !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(14, 140, 233, 0.35) !important;
    transition: all 0.2s ease !important;
}
.checkout-button:hover, #place_order:hover {
    background: linear-gradient(135deg, #38aaf6 0%, #0e8ce9 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 140, 233, 0.5) !important;
}

/* Forms & Inputs */
input[type="text"], input[type="email"], input[type="tel"], input[type="password"], textarea, select {
    background-color: #020617 !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    padding: 0.65rem 1rem !important;
    font-family: var(--vioroc-font-sans) !important;
}
input:focus, textarea:focus, select:focus {
    border-color: var(--vioroc-blue) !important;
    box-shadow: 0 0 0 3px rgba(14, 140, 233, 0.25) !important;
    outline: none !important;
}

/* WooCommerce Notices */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
    background: #0f172a !important;
    color: #f8fafc !important;
    border-radius: 12px !important;
    padding: 1rem 1.5rem !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.woocommerce-message {
    border-left: 4px solid #10b981 !important;
}
.woocommerce-info {
    border-left: 4px solid #0e8ce9 !important;
}
.woocommerce-error {
    border-left: 4px solid #f43f5e !important;
}
.woocommerce-message .button, .woocommerce-info .button {
    background: rgba(14, 140, 233, 0.2) !important;
    border: 1px solid rgba(14, 140, 233, 0.4) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 0.4rem 0.85rem !important;
    font-size: 0.8rem !important;
}

/* 11. FOOTER STYLES */
.vioroc-footer-wrapper {
    background: #070b14;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    padding-top: 4rem;
    margin-top: 5rem;
    color: var(--vioroc-text-muted);
}
.footer-top-accent {
    position: absolute;
    top: 0;
    left: 25%;
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 140, 233, 0.6), transparent);
}
.footer-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr 1.3fr;
    gap: 2.5rem;
    padding-bottom: 3.5rem;
}
@media (max-width: 1024px) {
    .footer-content-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .footer-content-grid { grid-template-columns: 1fr; }
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.footer-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.footer-brand-title {
    display: flex;
    flex-direction: column;
}
.footer-brand-title .title-main {
    font-family: var(--vioroc-font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
}
.footer-brand-title .title-sub {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--vioroc-blue-light);
}
.footer-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    max-width: 320px;
}
.footer-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #34d399;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}
.status-pulse-dot {
    width: 7px;
    height: 7px;
    background-color: #10b981;
    border-radius: 9999px;
    box-shadow: 0 0 8px #10b981;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.social-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.social-icon-btn.facebook {
    background: rgba(37, 99, 235, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(37, 99, 235, 0.3);
}
.social-icon-btn.facebook:hover {
    background: #2563eb;
    color: #ffffff;
}
.social-icon-btn.tiktok {
    background: rgba(236, 72, 153, 0.15);
    color: #f472b6;
    border: 1px solid rgba(236, 72, 153, 0.3);
}
.social-icon-btn.tiktok:hover {
    background: #ec4899;
    color: #ffffff;
}
.social-icon-btn.whatsapp {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}
.social-icon-btn.whatsapp:hover {
    background: #10b981;
    color: #ffffff;
}

.footer-col-title {
    font-size: 0.95rem !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem !important;
    color: #ffffff !important;
}
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.footer-links-list li a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--vioroc-text-muted);
    transition: all 0.2s ease;
}
.footer-links-list li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.contact-icon {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}
.item-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--vioroc-text-dim);
    font-weight: 700;
}
.item-val {
    font-size: 0.85rem;
    color: #ffffff;
    margin: 0;
}
.item-val a {
    color: #38bdf8;
}

/* Bottom Bar */
.footer-bottom-bar {
    background: #04060c;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.25rem 0;
    font-size: 0.8rem;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.copyright-text {
    margin: 0;
    color: var(--vioroc-text-dim);
}
.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.footer-bottom-links a {
    color: var(--vioroc-text-dim);
}
.footer-bottom-links a:hover {
    color: #ffffff;
}
.bullet {
    color: rgba(255, 255, 255, 0.15);
}

/* 12. FLOATING WHATSAPP BUTTON */
.vioroc-floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.whatsapp-pulse {
    position: absolute;
    inset: -4px;
    background: #25d366;
    border-radius: 9999px;
    opacity: 0.4;
    filter: blur(6px);
    animation: pulseWhatsapp 2s infinite;
}
@keyframes pulseWhatsapp {
    0% { transform: scale(0.95); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 0.2; }
    100% { transform: scale(0.95); opacity: 0.6; }
}
.whatsapp-btn-inner {
    position: relative;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.vioroc-floating-whatsapp:hover .whatsapp-btn-inner {
    transform: scale(1.1);
}
.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 0.775rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
.vioroc-floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* 13. VIOROC PAGE TEMPLATE STYLES */
.vioroc-page-container {
    padding: 3rem 0 5rem;
    min-height: 65vh;
}
.vioroc-page-header {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1.5rem;
}
.vioroc-page-title {
    font-size: clamp(2rem, 4vw, 3rem) !important;
    margin: 0 !important;
}
.vioroc-page-body {
    color: var(--vioroc-text);
}
