/*
Theme Name: Notreli
Theme URI: https://github.com/jeimar/NotreliWordpressThemeWC
Author: Antigravity AI & Notreli Team
Author URI: https://notreli.com
Description: Un tema moderno, rápido y altamente optimizado para tiendas de WooCommerce que realizan dropshipping. Cuenta con diseño responsivo premium, variables de CSS y animaciones fluidas.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: notreli
Tags: e-commerce, two-columns, flexible-header, custom-menu, translation-ready, grid-layout
*/

/* ==========================================================================
   1. VARIABLES & DESIGN SYSTEM
   ========================================================================== */
:root {
    /* Fonts */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Colors */
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --primary-rgb: 99, 102, 241;
    
    --secondary: #8b5cf6;
    --secondary-light: #a78bfa;
    --secondary-dark: #7c3aed;
    
    --success: #10b981;
    --success-light: #34d399;
    
    --warning: #f59e0b;
    --error: #ef4444;

    /* Neutral Colors - Dark Theme inspired Slate shades */
    --bg-main: #fafafa;
    --bg-card: #ffffff;
    --bg-header: rgba(255, 255, 255, 0.85);
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    --border-color: #f1f5f9;
    --border-color-dark: #cbd5e1;

    /* Shadow & Glass */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
    
    --glass-blur: blur(12px);
    
    /* Geometric Balance Radii Scale */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Spacing & Layout */
    --container-width: 1280px;
    --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   2. RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 0.5em;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    border: 1px solid var(--border-color-dark);
    border-radius: var(--radius-sm);
    padding: 0.6em 1em;
    background-color: var(--bg-card);
    transition: var(--transition-fast);
}

button:focus, input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.1);
}

button, .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: #ffffff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-md);
    padding: 0.8em 1.8em;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

button:hover, .button:hover {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow-md);
    color: #ffffff;
}

ul, ol {
    list-style: none;
}

/* ==========================================================================
   3. UTILITY CLASSES
   ========================================================================== */
.notreli-container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.text-center { text-align: center; }
.text-right { text-align: right; }

.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-12 { margin-top: 3rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

/* Geometric Badge System */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
}

.badge-primary {
    background-color: rgba(99, 102, 241, 0.1);
    color: var(--primary);
}

.badge-sale {
    background-color: var(--primary);
    color: #ffffff;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

/* Section Header styling */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem auto;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--text-primary);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ==========================================================================
   4. STRUCTURE & MAIN LAYOUT
   ========================================================================== */
.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-content {
    flex-grow: 1;
}

/* Main Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--bg-header);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-header.scrolled .header-container {
    height: 64px;
}

/* Logo */
.site-branding .site-title {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--primary);
}

/* Search bar */
.header-search {
    flex-grow: 1;
    max-width: 500px;
    margin: 0 2rem;
}

.header-search form {
    position: relative;
    display: flex;
    align-items: center;
}

.header-search input[type="search"] {
    width: 100%;
    padding: 0.6rem 1rem 0.6rem 2.8rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background-color: rgba(241, 245, 249, 0.6);
}

.header-search input[type="search"]:focus {
    background-color: var(--bg-card);
    border-color: var(--primary);
}

.header-search .search-icon {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
    pointer-events: none;
    display: flex;
    align-items: center;
}

.header-search button[type="submit"] {
    display: none;
}

/* Nav Menu */
.main-navigation ul {
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.main-navigation a:hover,
.main-navigation li.current-menu-item > a {
    color: var(--primary);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.main-navigation a:hover::after,
.main-navigation li.current-menu-item > a::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Header Action Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.header-action-btn {
    position: relative;
    color: var(--text-secondary);
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-action-btn:hover {
    color: var(--primary);
    background-color: rgba(99, 102, 241, 0.08);
}

.header-action-btn .cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle {
    display: none;
}

/* ==========================================================================
   5. MOBILE DRAWERS & MENUS
   ========================================================================== */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    background-color: var(--bg-card);
    z-index: 2000;
    box-shadow: var(--shadow-xl);
    padding: 2rem;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    left: 0;
}

.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    padding: 0.5rem;
}

.mobile-drawer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-drawer-nav a {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

/* ==========================================================================
   6. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .header-search {
        margin: 0 1rem;
    }
    .main-navigation {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .header-search {
        display: none; /* Hide header search bar on mobile, could show via a toggle */
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .py-12 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .py-20 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* ==========================================================================
   7. WORDPRESS GUBENBERG / CORE OVERRIDES
   ========================================================================== */
/* Reset WordPress Core Gutenberg forced solid borders on elements with inline border-color */
html :where([style*=border-color]) {
    border-style: none !important;
}

/* ==========================================================================
   8. HEADER SUB-BARS AND NAVIGATION (MARTFURY LOOK)
   ========================================================================== */
.welcome-bar {
    border-bottom: 1px solid var(--border-color);
}
.welcome-bar a:hover {
    color: var(--primary) !important;
}

/* Secondary menu row styles */
.nav-bar-row .menu {
    display: flex;
    gap: 2rem;
}
.nav-bar-row .menu-item a {
    color: #000000 !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    padding: 0.5rem 0 !important;
    display: block !important;
}
.nav-bar-row .menu-item a:hover {
    color: var(--primary) !important;
}

.hotline-indicator a:hover {
    color: var(--primary) !important;
}

/* Mobile responsive fixes */
@media (max-width: 991px) {
    .welcome-bar,
    .nav-bar-row {
        display: none !important;
    }
    .header-search {
        margin: 0 1.5rem !important;
    }
}

/* ==========================================================================
   9. HERO SLIDER STYLES (MARTFURY STYLED)
   ========================================================================== */
.hero-slider-section {
    position: relative;
    width: 100%;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 480px;
    background-color: #f8fafc;
    overflow: hidden;
}

.hero-slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide-container {
    height: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
    position: relative;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: slideUpText 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-slide-badge {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ff3c00;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: inline-block;
}

.hero-slide-title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
    color: #000000;
}

.hero-slide-discount {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-slide-discount .discount-value {
    color: #55b71c; /* Crisp green discount tag matching Martfury */
    font-size: 1.75rem;
    font-weight: 800;
    margin-left: 0.5rem;
    display: inline-block;
    vertical-align: middle;
}

.hero-button {
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
    background-color: var(--primary);
    color: #000000 !important;
    border-radius: var(--radius-sm);
    font-weight: 700;
    box-shadow: none;
    transition: var(--transition-smooth);
}

.hero-button:hover {
    background-color: #e0a300; /* Darker primary gold */
    box-shadow: var(--shadow-md);
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem 0;
    opacity: 0;
    transform: scale(0.95);
    animation: fadeInImage 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.hero-slide-image {
    max-height: 400px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.08));
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 0 !important; /* Perfectly square */
    background-color: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid var(--border-color) !important;
    color: #000000 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, visibility 0.25s !important;
    box-shadow: var(--shadow-sm);
}

/* Semitransparent arrows on slider hover */
.hero-slider:hover .slider-arrow {
    opacity: 0.5;
    visibility: visible;
}

.prev-arrow {
    left: 24px;
}

.next-arrow {
    right: 24px;
}

/* Opaque and active colors on arrow hover/focus */
.slider-arrow:hover,
.slider-arrow:focus {
    opacity: 1 !important;
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--primary-text) !important;
}

/* Indicators Dots */
.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 8px;
    border-radius: 4px;
    background-color: var(--border-color-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dots .dot.active {
    width: 32px; /* Pill effect */
    background-color: var(--primary);
}

/* Animations */
@keyframes slideUpText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Hero Slider Responsive scaling */
@media (max-width: 991px) {
    .hero-slider {
        height: auto;
        min-height: 480px;
    }
    
    .hero-slide-container {
        grid-template-columns: 1fr;
        padding-top: 3rem;
        padding-bottom: 4rem;
        gap: 2rem;
        text-align: center;
    }

    .hero-text-content {
        align-items: center;
    }

    .hero-slide-title {
        font-size: 2.25rem;
    }

    .hero-image-container {
        max-height: 280px;
        padding: 0;
    }

    .hero-slide-image {
        max-height: 260px;
    }
    
    .slider-arrow {
        display: none !important; /* Hide arrows on mobile/tablet, rely on dots */
    }
}

/* ==========================================================================
   10. INTERACTIVE MEGA MENU STYLES (MARTFURY STYLE)
   ========================================================================== */
.department-dropdown-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    width: 1080px;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-top: none;
    box-shadow: var(--shadow-xl);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    z-index: 1001;
    display: none; /* Hidden by default */
    grid-template-columns: 260px 1fr;
    text-align: left; /* reset centering parent text */
}

/* Open dropdown on hover */
.department-trigger:hover .department-dropdown-wrapper {
    display: grid;
}

/* Left Sidebar Categories */
.dep-sidebar {
    background-color: #f8fafc;
    border-right: 1px solid var(--border-color);
    padding: 1rem 0;
}

.dep-sidebar ul {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.dep-item {
    width: 100%;
    list-style: none;
}

.dep-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #000000;
    transition: var(--transition-fast);
    border-left: 3px solid transparent;
}

.dep-link i,
.dep-link .material-symbols-outlined {
    width: 24px;
    margin-right: 0.5rem;
    color: var(--text-secondary);
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

.dep-item:hover .dep-link,
.dep-item.active .dep-link {
    background-color: #ffffff;
    color: var(--primary);
    border-left-color: var(--primary);
}

.dep-item:hover .dep-link i,
.dep-item.active .dep-link i,
.dep-item:hover .dep-link .material-symbols-outlined,
.dep-item.active .dep-link .material-symbols-outlined {
    color: var(--primary);
}

/* Category Badges inside sidebar */
.dep-badge {
    font-size: 0.6rem;
    font-weight: 800;
    padding: 0.1rem 0.4rem;
    border-radius: var(--radius-sm);
    margin-left: auto;
    text-transform: uppercase;
}

.dep-badge.hot { background-color: #ff3c00; color: #ffffff; }
.dep-badge.new { background-color: #0ea5e9; color: #ffffff; }
.dep-badge.sale { background-color: #10b981; color: #ffffff; }
.dep-badge.trend { background-color: #8b5cf6; color: #ffffff; }

/* Right Tab Contents Wrapper */
.dep-panels-wrapper {
    padding: 2rem;
    background-color: #ffffff;
    min-height: 380px;
    position: relative;
}

/* Panels switching details */
.dep-panel {
    display: none;
    grid-template-columns: 1fr 1.1fr;
    gap: 2rem;
    height: 100%;
}

.dep-panel.active {
    display: grid;
    animation: fadeInPanel 0.3s ease-out forwards;
}

@keyframes fadeInPanel {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.panel-column h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.panel-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.panel-column li {
    list-style: none;
}

.panel-column a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.panel-column a:hover {
    color: var(--primary);
    padding-left: 4px;
}

/* Mega Menu Featured Product Advertisement Card (Martfury look) */
.dep-featured-ad {
    background-color: #f7f7f7;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.ad-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
    flex: 1;
    max-width: 60%;
}

.ad-subtitle {
    font-size: 0.65rem;
    font-weight: 800;
    color: #ff3c00;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.ad-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #000000;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.ad-link-btn {
    font-size: 0.8rem;
    font-weight: 700;
    color: #000000;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-fast);
}

.ad-link-btn:hover {
    color: var(--primary);
    border-bottom-color: transparent;
}

.ad-image-content {
    flex-shrink: 0;
    width: 120px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.ad-image-content img {
    max-height: 140px;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.dep-featured-ad:hover .ad-image-content img {
    transform: scale(1.08) translateY(-4px);
}


