/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Main Wrapper */
.rt-shop-wrapper { 
    display: grid !important; 
    grid-template-columns: 280px 1fr !important; 
    gap: 40px !important; 
    align-items: start !important; 
    width: 100% !important; 
    margin: 0 auto !important; 
    font-family: "Poppins", sans-serif !important; 
    transition: all 0.3s ease !important;
}

/* Headings */
.rt-panel-title, 
.rt-filter-title, 
.rt-product-title, 
.rt-add-to-cart-wrap .button,
.rc-drawer-header h3 {
    font-family: "Poppins", sans-serif !important;
}

/* --- Sidebar & Custom Filters Styling --- */
.rt-shop-sidebar { position: sticky !important; top: 20px !important; }

/* OVERRIDE FOR SIDEBAR - LIGHT THEME */
aside.rt-shop-sidebar .rt-custom-filters-panel.neon-glow-container { 
    background-color: #ffffff !important;
    background-image: none !important; 
    border: 1px solid #e2e8f0 !important; 
    border-radius: 8px !important; 
    color: #111111 !important; 
    padding: 30px !important; 
    overflow: visible !important;
    box-sizing: border-box !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03) !important;
    font-family: "Poppins", sans-serif !important;
}

/* Preserving edge-light animation infrastructure */
aside.rt-shop-sidebar .rt-custom-filters-panel.neon-glow-container::before,
aside.rt-shop-sidebar .rt-custom-filters-panel.neon-glow-container::after {
    padding: 3px !important; 
    animation: glowSpin 15s linear infinite reverse !important; 
    border-radius: 8px !important;
}

.rt-panel-header { display: flex !important; justify-content: space-between !important; align-items: center !important; border-bottom: 1px solid #f1f5f9 !important; padding-bottom: 15px !important; margin-bottom: 30px !important; }
.rt-panel-title { font-size: 1.35rem !important; font-weight: 700 !important; margin: 0 !important; text-transform: uppercase !important; letter-spacing: 0.5px !important; color: #0f172a !important; }
.rt-btn-clear { color: #94a3b8 !important; text-decoration: none !important; font-size: 0.85rem !important; text-transform: uppercase !important; transition: color 0.3s ease !important; z-index: 20 !important; position: relative !important; font-family: "Poppins", sans-serif !important; letter-spacing: 0.5px !important;}
.rt-btn-clear:hover { color: #144D42 !important; }

.rt-filter-group { margin-bottom: 35px !important; }
.rt-filter-title { font-size: 1.05rem !important; font-weight: 600 !important; margin: 0 0 22px 0 !important; color: #334155 !important; text-transform: uppercase !important; letter-spacing: 0.5px !important; }

/* Price Range Inputs - MATHEMATICALLY CENTERED & EDGE-TRIMMED */
.rt-dual-slider-container { position: relative !important; width: 100% !important; height: 18px !important; margin: 12px 0 25px !important; }
.rt-slider-track { position: absolute !important; top: 50% !important; transform: translateY(-50%) !important; width: calc(100% - 18px) !important; left: 9px !important; height: 3px !important; border-radius: 5px !important; background: #e2e8f0 !important; pointer-events: none !important; }

.rt-range-input { position: absolute !important; top: 50% !important; transform: translateY(-50%) !important; width: 100% !important; height: 3px !important; -webkit-appearance: none !important; appearance: none !important; background: transparent !important; pointer-events: none !important; margin: 0 !important; outline: none !important; }
.rt-range-input::-webkit-slider-thumb { -webkit-appearance: none !important; appearance: none !important; height: 18px !important; width: 18px !important; border-radius: 50% !important; background: #ffffff !important; border: 2px solid #144D42 !important; cursor: pointer !important; pointer-events: auto !important; margin-top: -5px !important; }
.rt-range-input::-moz-range-thumb { height: 18px !important; width: 18px !important; border-radius: 50% !important; background: #ffffff !important; border: 2px solid #144D42 !important; cursor: pointer !important; pointer-events: auto !important; }

.rt-price-display-row { display: flex !important; justify-content: space-between !important; color: #1e293b !important; font-size: 0.95rem !important; font-weight: 600 !important; }

/* Custom Checkboxes */
.rt-checkbox-list { display: flex !important; flex-direction: column !important; gap: 14px !important; }
.rt-checkbox-label { display: flex !important; align-items: flex-start !important; cursor: pointer !important; font-size: 14px !important; line-height: 1.5 !important; color: #334155 !important; transition: color 0.2s ease !important; font-family: "Poppins", sans-serif !important; }
.rt-checkbox-label:hover { color: #0f172a !important; }
.rt-checkbox-label input[type="checkbox"] { display: none !important; }

.rt-custom-checkbox { width: 18px !important; height: 18px !important; border: 1px solid #cbd5e1 !important; border-radius: 4px !important; margin-right: 12px !important; display: inline-block !important; position: relative !important; background: #ffffff !important; transition: all 0.2s ease !important; flex-shrink: 0 !important; margin-top: 2px !important; }
.rt-checkbox-label input[type="checkbox"]:checked + .rt-custom-checkbox { background: #144D42 !important; border-color: #144D42 !important; }
.rt-checkbox-label input[type="checkbox"]:checked + .rt-custom-checkbox::after { content: '' !important; position: absolute !important; left: 5px !important; top: 2px !important; width: 5px !important; height: 10px !important; border: solid #fff !important; border-width: 0 2px 2px 0 !important; transform: rotate(45deg) !important; }
.rt-count { color: #64748b !important; font-size: 0.85rem !important; margin-left: 5px !important; white-space: nowrap !important; }

/* --- AJAX Loading Overlay --- */
.rt-shop-main-content { transition: opacity 0.3s ease !important; position: relative !important; }
.rt-loading-grid { opacity: 0.4 !important; pointer-events: none !important; }

/* ====================================================
   HEADER CONTROLS (SEARCH & LAYOUT)
   ==================================================== */
.rt-shop-header-controls { 
    display: flex !important; 
    justify-content: space-between !important; 
    align-items: center !important; 
    margin-bottom: 30px !important; 
}

/* Search Bar - LIGHT THEME */
.rt-search-wrapper { position: relative !important; width: 100% !important; max-width: 400px !important; z-index: 50 !important; }
#rt-live-search { 
    width: 100% !important; 
    padding: 14px 20px !important; 
    background-color: #f8fafc !important; 
    border: 1px solid #e2e8f0 !important; 
    border-radius: 6px !important; 
    color: #0f172a !important; 
    font-family: "Poppins", sans-serif !important; 
    font-size: 0.95rem !important;
    outline: none !important; 
    transition: all 0.3s ease !important; 
    box-sizing: border-box !important;
}
#rt-live-search::placeholder { color: #94a3b8 !important; font-weight: 400 !important; }
#rt-live-search:focus { 
    border-color: #144D42 !important; 
    box-shadow: 0 0 0 3px rgba(20, 77, 66, 0.15) !important; 
    background-color: #ffffff !important;
}

/* Search Dropdown Results - LIGHT THEME */
.rt-search-results { 
    position: absolute !important; 
    top: 100% !important; 
    left: 0 !important; 
    width: 100% !important; 
    background: #ffffff !important; 
    border: 1px solid #e2e8f0 !important; 
    border-radius: 6px !important; 
    margin-top: 8px !important; 
    max-height: 350px !important; 
    overflow-y: auto !important; 
    display: none !important; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important; 
}
.rt-search-results.active { display: block !important; }
.rt-search-item { 
    display: flex !important; 
    align-items: center !important; 
    padding: 12px 15px !important; 
    border-bottom: 1px solid #f1f5f9 !important; 
    text-decoration: none !important; 
    transition: background 0.2s !important; 
}
.rt-search-item:last-child { border-bottom: none !important; }
.rt-search-item:hover { background: #f8fafc !important; }
.rt-search-img img { width: 45px !important; height: 45px !important; object-fit: cover !important; border-radius: 4px !important; margin-right: 12px !important; border: 1px solid #e2e8f0 !important; }
.rt-search-info { display: flex !important; flex-direction: column !important; }
.rt-search-title { color: #0f172a !important; font-size: 0.9rem !important; font-weight: 500 !important; margin-bottom: 4px !important; font-family: "Poppins", sans-serif !important; }
.rt-search-price { color: #144D42 !important; font-size: 0.85rem !important; font-weight: 700 !important; }
.rt-search-no-results { padding: 15px !important; color: #64748b !important; text-align: center !important; font-size: 0.9rem !important; font-family: "Poppins", sans-serif !important; }

/* Scrollbar for Dropdown */
.rt-search-results::-webkit-scrollbar { width: 5px !important; }
.rt-search-results::-webkit-scrollbar-track { background: #f1f5f9 !important; }
.rt-search-results::-webkit-scrollbar-thumb { background: #cbd5e1 !important; border-radius: 10px !important; }

/* Layout Switcher - LIGHT THEME */
.rt-layout-switcher { display: flex !important; gap: 8px !important; align-items: center !important; }
.rt-layout-btn { 
    background: #ffffff !important; 
    border: 1px solid #e2e8f0 !important; 
    padding: 8px 10px !important; 
    border-radius: 6px !important; 
    cursor: pointer !important; 
    display: flex !important; 
    align-items: center !important; 
    justify-content: center !important; 
    transition: all 0.3s ease !important; 
    color: #94a3b8 !important; 
}
.rt-layout-btn svg { width: 22px !important; height: 22px !important; fill: currentColor !important; }
.rt-layout-btn:hover {
    border-color: #cbd5e1 !important;
    color: #64748b !important;
}
.rt-layout-btn.active { 
    background: #ffffff !important; 
    border-color: #144D42 !important; 
    color: #144D42 !important; 
    box-shadow: 0 2px 8px rgba(20, 77, 66, 0.15) !important; 
}

/* ====================================================
   PRODUCTS GRID & DYNAMIC COLUMNS
   ==================================================== */
.rt-products-grid { 
    display: grid !important; 
    grid-template-columns: repeat(3, 1fr) !important; /* Default 3 columns */
    gap: 25px !important; 
}

/* Dynamic Column Modifiers */
.rt-products-grid.grid-cols-2 { grid-template-columns: repeat(2, 1fr) !important; }
.rt-products-grid.grid-cols-3 { grid-template-columns: repeat(3, 1fr) !important; }
.rt-products-grid.grid-cols-4 { grid-template-columns: repeat(4, 1fr) !important; }

/* OVERRIDE FOR PRODUCT CARD - LIGHT THEME */
.rt-product-card { 
    background-color: #ffffff !important; 
    background-image: none !important; 
    border: 1px solid #e2e8f0 !important; 
    border-radius: 8px !important; 
    overflow: visible !important; 
    display: flex !important; 
    flex-direction: column !important; 
    transition: all 0.3s ease !important; 
    height: 100% !important; 
    padding: 0 !important; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.02) !important;
    font-family: "Poppins", sans-serif !important;
}

/* Preserving edge-light animation infrastructure */
.rt-product-card.neon-glow-container::before,
.rt-product-card.neon-glow-container::after {
    padding: 3px !important; 
    animation: glowSpin 12s linear infinite !important; 
    border-radius: 8px !important;
}

.rt-product-card:hover { 
    transform: translateY(-4px) !important; 
    box-shadow: 0 12px 25px rgba(0,0,0,0.06) !important; 
}

/* Neon Glow adjusted for Emerald theme */
.rt-product-card.neon-glow-container:hover::before,
.rt-product-card.neon-glow-container:hover::after {
    background: conic-gradient(
        from var(--border-angle),
        transparent 65%, 
        rgba(20, 77, 66, 0.1) 85%, 
        rgba(20, 77, 66, 0.5) 97%, 
        #144D42 100% 
    ) !important;
}

/* Image Wrap */
.rt-product-image-wrap { 
    overflow: hidden !important; 
    display: flex !important; 
    position: relative !important; 
    width: 100% !important; 
    aspect-ratio: 1 / 1 !important; 
    padding: 0 !important; 
    background: #f8fafc !important; 
    align-items: center !important;
    justify-content: center !important;
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
}

.rt-product-image-wrap img { 
    width: 100% !important; 
    height: 100% !important; 
    max-width: 100% !important; 
    max-height: 100% !important; 
    object-fit: cover !important; 
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important; 
    background: transparent !important;
}

.rt-product-card:hover .rt-product-image-wrap img { transform: scale(1.05) !important; }

/* Card Details - LIGHT THEME */
.rt-product-details { 
    padding: 20px 18px 22px !important; 
    text-align: center !important; 
    display: flex !important; 
    flex-direction: column !important; 
    align-items: center !important;
    flex-grow: 1 !important; 
    background: transparent !important;
}

.rt-product-category, 
.rt-product-category a { 
    font-size: 0.85rem !important; 
    color: #64748b !important; 
    font-weight: 400 !important;
    margin-bottom: 8px !important; 
    text-decoration: none !important;
}

.rt-product-title, 
.rt-product-title a { 
    font-size: 1.25rem !important; 
    font-weight: 600 !important; 
    margin: 0 0 12px !important; 
    line-height: 1.3 !important; 
    color: #0f172a !important; 
    letter-spacing: 0.2px !important; 
    text-decoration: none !important;
    display: block !important;
    min-height: 2.5em !important; 
}

.rt-product-price, 
.rt-product-price .amount, 
.rt-product-price ins .amount { 
    font-family: "Poppins", sans-serif !important;
    font-weight: 700 !important; 
    font-size: 1.15rem !important; 
    margin-top: auto !important; 
    margin-bottom: 16px !important; 
    color: #144D42 !important; 
    text-decoration: none !important;
    text-shadow: none !important; 
}

/* Ultra Clean Solid/Transparent Button - NO SHADOWS/GLOWS */
.rt-add-to-cart-wrap { width: 100% !important; z-index: 20 !important; position: relative !important; }
.rt-add-to-cart-wrap .button { 
    display: block !important; 
    width: 100% !important; 
    padding: 12px 12px !important; 
    background: #ffffff !important; 
    color: #144D42 !important; 
    border: 1px solid #144D42 !important; 
    text-align: center !important; 
    border-radius: 6px !important; 
    text-decoration: none !important; 
    font-size: 0.95rem !important; 
    font-weight: 600 !important; 
    text-transform: uppercase !important; 
    letter-spacing: 1px !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important; 
}

.rt-add-to-cart-wrap .button:hover { 
    background: #144D42 !important; 
    border-color: #144D42 !important; 
    color: #ffffff !important;
    box-shadow: none !important; 
    transform: none !important; 
}
.rt-add-to-cart-wrap .added_to_cart { display: none !important; }

/* ====================================================
   DRAWER & OVERLAY (LIGHT THEME CONTINUITY)
   ==================================================== */
#rc-floating-cart { position: fixed !important; bottom: 30px !important; right: 30px !important; background: #fff !important; width: 65px !important; height: 65px !important; border-radius: 50% !important; box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important; display: flex !important; align-items: center !important; justify-content: center !important; cursor: pointer !important; z-index: 9999 !important; transition: transform 0.3s !important; border: 2px solid #e2e8f0 !important; }
#rc-floating-cart:hover { transform: scale(1.08) !important; border-color: #144D42 !important; }
#rc-floating-cart svg { width: 28px !important; height: 28px !important; fill: #0f172a !important; transition: fill 0.3s !important; }
#rc-floating-cart:hover svg { fill: #144D42 !important; }
#rc-cart-count { position: absolute !important; top: -5px !important; right: -5px !important; background: #144D42 !important; color: #fff !important; font-size: 12px !important; font-weight: bold !important; width: 24px !important; height: 24px !important; border-radius: 50% !important; display: flex !important; align-items: center !important; justify-content: center !important; border: 2px solid #fff !important; font-family: "Poppins", sans-serif !important; }

#rc-drawer-overlay { position: fixed !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; background: rgba(15, 23, 42, 0.4) !important; z-index: 99998 !important; opacity: 0 !important; visibility: hidden !important; transition: 0.3s !important; backdrop-filter: blur(4px) !important; }
#rc-drawer-overlay.active { opacity: 1 !important; visibility: visible !important; }

#rc-cart-drawer { position: fixed !important; top: 0 !important; right: -480px !important; width: 100% !important; max-width: 420px !important; height: 100vh !important; background: #ffffff !important; color: #0f172a !important; z-index: 99999 !important; box-shadow: -10px 0 40px rgba(0,0,0,0.1) !important; transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important; display: flex !important; flex-direction: column !important; font-family: "Poppins", sans-serif !important; }
#rc-cart-drawer.active { right: 0 !important; }

.rc-drawer-header { padding: 20px 24px !important; border-bottom: 1px solid #e2e8f0 !important; display: flex !important; justify-content: space-between !important; align-items: center !important; background: #f8fafc !important; }
.rc-drawer-header h3 { margin: 0 !important; font-size: 1.2rem !important; display: flex !important; align-items: center !important; color: #0f172a !important; font-weight: 600 !important; text-transform: uppercase !important; letter-spacing: 1px !important; font-family: "Poppins", sans-serif !important; }
#rc-close-drawer { background: none !important; border: none !important; font-size: 30px !important; cursor: pointer !important; color: #64748b !important; transition: color 0.2s !important; padding: 0 !important; line-height: 1 !important; }
#rc-close-drawer:hover { color: #144D42 !important; }

.rc-drawer-items-wrap { display: flex !important; flex-direction: column !important; height: 100% !important; overflow: hidden !important; }
.rc-drawer-items { flex: 1 !important; overflow-y: auto !important; padding: 20px 24px !important; }
.rc-drawer-items::-webkit-scrollbar { width: 6px !important; }
.rc-drawer-items::-webkit-scrollbar-track { background: #f1f5f9 !important; }
.rc-drawer-items::-webkit-scrollbar-thumb { background: #cbd5e1 !important; border-radius: 10px !important; }

.rc-cart-item { display: flex !important; gap: 14px !important; margin-bottom: 16px !important; padding-bottom: 16px !important; border-bottom: 1px solid #e2e8f0 !important; position: relative !important; }
.rc-cart-item img { width: 65px !important; height: 65px !important; object-fit: cover !important; border-radius: 6px !important; background: #f8fafc !important; padding: 2px !important; flex-shrink: 0 !important; border: 1px solid #e2e8f0 !important; }
.rc-cart-item-info { flex: 1 !important; display: flex !important; flex-direction: column !important; justify-content: center !important; min-width: 0 !important; width: 100% !important; box-sizing: border-box !important; }
.rc-cart-item-title { font-weight: 600 !important; font-size: 13px !important; margin-bottom: 8px !important; color: #0f172a !important; line-height: 1.4 !important; word-wrap: break-word !important; }

.rc-price-remove-row { display: flex !important; align-items: center !important; justify-content: space-between !important; margin-bottom: 10px !important; width: 100% !important; box-sizing: border-box !important; }
.rc-cart-item-price { color: #144D42 !important; font-size: 14px !important; font-weight: 700 !important; }

/* FIREWALL FOR REMOVE BUTTON TO OVERRIDE WOOCOMMERCE DEFAULTS */
#rc-cart-drawer a.rc-remove-item { 
    background: transparent !important; 
    border: none !important; 
    cursor: pointer !important; 
    color: #94a3b8 !important; 
    font-size: 11px !important; 
    font-weight: 600 !important; 
    display: flex !important; 
    align-items: center !important; 
    gap: 4px !important; 
    padding: 0 !important; 
    margin: 0 !important; 
    width: auto !important; 
    height: auto !important; 
    position: static !important; 
    text-indent: 0 !important; 
    transition: 0.2s !important; 
    text-transform: uppercase !important; 
    text-decoration: none !important; 
    border-radius: 0 !important;
    font-family: "Poppins", sans-serif !important;
}
#rc-cart-drawer a.rc-remove-item::before, 
#rc-cart-drawer a.rc-remove-item::after { display: none !important; } 
#rc-cart-drawer a.rc-remove-item svg { width: 12px !important; height: 12px !important; fill: currentColor !important; display: block !important; margin: 0 !important; }
#rc-cart-drawer a.rc-remove-item:hover { color: #ef4444 !important; background: transparent !important; }

.rc-qty-controls { font-size: 13px !important; color: #64748b !important; }

.rc-drawer-footer { padding: 20px 24px !important; background: #f8fafc !important; border-top: 1px solid #e2e8f0 !important; }
.rc-subtotal { font-size: 18px !important; font-weight: 700 !important; text-align: center !important; margin-bottom: 6px !important; color: #0f172a !important; font-family: "Poppins", sans-serif !important; }
.rc-tax-note { text-align: center !important; font-size: 11px !important; color: #64748b !important; margin-bottom: 16px !important; }
.rc-drawer-buttons { display: flex !important; flex-direction: column !important; gap: 10px !important; }

.rc-drawer-btn { background: #ffffff !important; color: #0f172a !important; border: 1px solid #cbd5e1 !important; text-align: center !important; padding: 12px 16px !important; border-radius: 6px !important; font-size: 13px !important; font-weight: 600 !important; cursor: pointer !important; transition: all 0.3s !important; text-transform: uppercase !important; letter-spacing: 0.5px !important; text-decoration: none !important; display: block !important; width: 100% !important; box-sizing: border-box !important; font-family: "Poppins", sans-serif !important; }
.rc-drawer-btn:hover { background: #f1f5f9 !important; color: #0f172a !important; }
.rc-btn-checkout { background: #144D42 !important; border-color: #144D42 !important; color: #fff !important; } 
.rc-btn-checkout:hover { background: #0E3830 !important; border-color: #0E3830 !important; color: #fff !important; } 

/* Global Keyframes fallback */
@keyframes glowSpin { to { --border-angle: 1turn; } }

/* ====================================================
   MOBILE RESPONSIVENESS & COMPACT PADDING
   ==================================================== */
@media (max-width: 1024px) { 
    .rt-layout-switcher { display: none !important; } 
    .rt-products-grid.grid-cols-2, .rt-products-grid.grid-cols-4 { grid-template-columns: repeat(2, 1fr) !important; } 
    .rt-products-grid { grid-template-columns: repeat(2, 1fr) !important; } 
}

@media (max-width: 768px) { 
    .rt-shop-wrapper { grid-template-columns: 1fr !important; gap: 30px !important; }
    .rt-shop-sidebar { position: static !important; margin-bottom: 20px !important; }
    aside.rt-shop-sidebar .rt-custom-filters-panel.neon-glow-container { padding: 24px !important; } 
    
    .rt-shop-header-controls { flex-direction: column !important; align-items: stretch !important; gap: 15px !important; }
    .rt-search-wrapper { max-width: 100% !important; }
}

@media (max-width: 480px) { 
    .rt-shop-wrapper { gap: 20px !important; }
    .rt-products-grid { grid-template-columns: 1fr !important; gap: 20px !important; } 
    .rt-products-grid.grid-cols-2, .rt-products-grid.grid-cols-3, .rt-products-grid.grid-cols-4 { grid-template-columns: 1fr !important; }
    #rc-cart-drawer { width: 100% !important; right: -100% !important; }
    .rt-product-card { margin: 0 10px !important; } 

    /* MOBILE: Compact Filter Panel */
    aside.rt-shop-sidebar .rt-custom-filters-panel.neon-glow-container { padding: 20px !important; }
    .rt-panel-header { margin-bottom: 15px !important; padding-bottom: 10px !important; }
    .rt-panel-title { font-size: 1.2rem !important; }
    .rt-filter-group { margin-bottom: 20px !important; }
    .rt-filter-title { margin: 0 0 15px 0 !important; font-size: 0.95rem !important; }
    .rt-dual-slider-container { margin: 10px 0 20px !important; }

    /* MOBILE: Compact Product Card Details */
    .rt-product-details { padding: 15px 12px 18px !important; }
    .rt-product-category, .rt-product-category a { font-size: 0.8rem !important; margin-bottom: 4px !important; }
    .rt-product-title, .rt-product-title a { font-size: 1.15rem !important; margin-bottom: 8px !important; min-height: 2.4em !important; line-height: 1.2 !important; }
    .rt-product-price, .rt-product-price .amount, .rt-product-price ins .amount { margin-bottom: 12px !important; font-size: 1.05rem !important; }

    /* MOBILE: Taller Add to Cart Button */
    .rt-add-to-cart-wrap .button { padding: 12px 12px !important; font-size: 0.95rem !important; }
}