/* ============================================
   Abex / Dev Alias - Main Stylesheet
   RTL-first Hebrew site with English support
   ============================================ */

/* === Reset & Base === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #1a3a5c;
    --primary-light: #2a5a8c;
    --primary-dark: #0d2240;
    --accent: #e8a730;
    --accent-hover: #d4951f;
    --text: #333;
    --text-light: #666;
    --text-muted: #999;
    --bg: #fff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;
    --border: #e0e0e0;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-sm: 4px;
    --radius-lg: 12px;
    --header-height: 80px;
    --font-he: 'Heebo', Arial, sans-serif;
    --font-en: 'Inter', 'Heebo', Arial, sans-serif;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-he);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    direction: rtl;
    -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
    color: var(--accent);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
    color: var(--primary-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

ul, ol {
    list-style: none;
}

/* === Container === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

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

.btn-secondary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

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

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* === Header === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    height: var(--header-height);
    gap: 24px;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 16px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.nav-item > a {
    display: block;
    padding: 8px 14px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-item > a:hover,
.nav-item.active > a {
    color: var(--accent);
    background: rgba(232, 167, 48, 0.08);
}

/* Dropdown */
.nav-item.has-children {
    position: relative;
}

.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 220px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    z-index: 100;
}

.nav-item.has-children:hover > .sub-menu {
    display: block;
}

.sub-menu .nav-item > a {
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 400;
}

.sub-sub-menu {
    display: none;
    position: absolute;
    top: 0;
    right: 100%;
    min-width: 200px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
}

.sub-menu .nav-item.has-children:hover > .sub-sub-menu {
    display: block;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
}

.lang-link {
    font-weight: 600;
    color: var(--text-muted);
    padding: 4px 6px;
}

.lang-link.active {
    color: var(--accent);
}

.lang-sep {
    color: var(--border);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all var(--transition);
    position: absolute;
    right: 8px;
}

.hamburger { top: 50%; transform: translateY(-50%); }
.hamburger::before { content: ''; top: -7px; }
.hamburger::after { content: ''; top: 7px; }

.mobile-menu-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* === Hero === */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,58,92,0.85) 0%, rgba(13,34,64,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero h2 {
    font-size: 1.4rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* === Page Hero (smaller) === */
.page-hero {
    background: var(--primary);
    color: #fff;
    padding: 48px 0 40px;
}

.page-hero h1 {
    color: #fff;
    font-size: 2.2rem;
}

.page-hero-sm {
    padding: 24px 0;
}

.page-hero-sm h1 {
    font-size: 1.5rem;
}

/* === Breadcrumb === */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb-sep {
    color: rgba(255,255,255,0.4);
}

.breadcrumb-current {
    color: var(--accent);
}

/* === Sections === */
.section {
    padding: 64px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 48px;
}

.text-center { text-align: center; }
.text-white { color: #fff; }

/* Services Section */
.section-services {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.section-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 58, 92, 0.9);
}

.section-services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition);
    color: #fff;
}

.service-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
    color: #fff;
}

.service-icon {
    margin-bottom: 20px;
    color: var(--accent);
}

.service-card h3 {
    color: #fff;
    margin-bottom: 12px;
}

.service-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

/* Welcome Section */
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.welcome-text h2 {
    margin-bottom: 20px;
}

.welcome-text p {
    margin-bottom: 16px;
    color: var(--text-light);
}

.welcome-text .btn {
    margin-top: 12px;
}

.welcome-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Brands Section */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.brand-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
    border: 1px solid var(--border);
}

.brand-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--accent);
}

.brand-logo {
    max-height: 60px;
    margin: 0 auto 16px;
    object-fit: contain;
}

.brand-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.brand-categories {
    text-align: right;
    font-size: 0.9rem;
}

.brand-categories li {
    padding: 4px 0;
    border-bottom: 1px solid var(--border);
}

.brand-categories li:last-child {
    border-bottom: none;
}

.brand-categories a {
    color: var(--text-light);
}

.brand-categories a:hover {
    color: var(--accent);
}

/* CTA Section */
.section-cta {
    background: var(--bg-light);
}

.section-cta h2 {
    margin-bottom: 12px;
}

.section-cta p {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* === Products Grid === */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    color: var(--text);
}

.product-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
    color: var(--text);
    transform: translateY(-2px);
}

.product-thumb {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    padding: 16px;
    overflow: hidden;
}

.product-thumb img {
    max-height: 100%;
    object-fit: contain;
}

.product-thumb-placeholder {
    color: var(--text-muted);
}

.product-info {
    padding: 16px;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-sku {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Sub-categories */
.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.subcat-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: all var(--transition);
    border: 1px solid var(--border);
    color: var(--text);
}

.subcat-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
    color: var(--text);
}

.subcat-card img {
    max-height: 80px;
    margin: 0 auto 12px;
    object-fit: contain;
}

.subcat-card h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.product-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.pagination-link,
.pagination-current {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.pagination-link {
    background: var(--bg-light);
    color: var(--text);
    border: 1px solid var(--border);
}

.pagination-link:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.pagination-current {
    background: var(--accent);
    color: #fff;
}

/* === Product Detail === */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.gallery-main {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.gallery-main img {
    max-height: 400px;
    object-fit: contain;
    cursor: zoom-in;
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.gallery-thumb {
    width: 70px;
    height: 70px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    padding: 4px;
    background: #fff;
    transition: border-color var(--transition);
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--accent);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info-detail h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.product-sku-detail {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.product-short-desc {
    margin-bottom: 24px;
    line-height: 1.8;
}

.product-specs {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 24px;
}

.product-specs h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.product-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.product-video {
    margin-top: 32px;
}

.product-video h3 {
    margin-bottom: 12px;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: var(--radius);
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.product-full-desc {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.product-full-desc h2 {
    margin-bottom: 20px;
}

/* === Contact Page === */
.contact-hero {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-details h2 {
    margin-bottom: 24px;
}

.contact-list {
    margin-bottom: 32px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
}

.contact-list li:last-child {
    border-bottom: none;
}

.contact-list .icon {
    color: var(--accent);
    flex-shrink: 0;
}

.contact-form {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.contact-form h2 {
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-message {
    padding: 12px 16px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Honeypot */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.map-container {
    margin-top: 48px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* === Search === */
.search-form-page {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    max-width: 600px;
}

.search-input-lg {
    flex: 1;
    padding: 12px 20px;
    font-size: 1.1rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-family: inherit;
}

.search-input-lg::placeholder {
    color: rgba(255,255,255,0.6);
}

.search-input-lg:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.15);
}

.search-results-info {
    color: var(--text-light);
    margin-bottom: 24px;
}

.no-results,
.no-products {
    text-align: center;
    color: var(--text-muted);
    padding: 48px 0;
    font-size: 1.1rem;
}

/* === 404 === */
.section-404 {
    padding: 100px 0;
}

.section-404 h1 {
    font-size: 6rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-404 h2 {
    margin-bottom: 16px;
}

.section-404 p {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* === Footer === */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.8);
}

.footer-main {
    padding: 64px 0 32px;
    background: linear-gradient(rgba(26,26,46,0.95), rgba(26,26,46,0.95)),
                url('/uploads/2024/03/Depositphotos_71948905_XL.webp') center/cover;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact-list a {
    color: rgba(255,255,255,0.8);
}

.footer-contact-list a:hover {
    color: var(--accent);
}

.footer-contact-list .icon {
    color: var(--accent);
    flex-shrink: 0;
}

.footer-lang {
    margin-top: 16px;
}

.footer-title {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: all var(--transition);
}

.footer-nav a:hover {
    color: var(--accent);
    padding-right: 4px;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

/* === Page Content (from WP) === */
.page-content {
    max-width: 800px;
}

.page-content h1,
.page-content h2,
.page-content h3 {
    margin: 24px 0 12px;
}

.page-content p {
    margin-bottom: 16px;
}

.page-content ul,
.page-content ol {
    margin-bottom: 16px;
    padding-right: 24px;
}

.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }

.page-content li {
    margin-bottom: 8px;
}

.page-content img {
    border-radius: var(--radius);
    margin: 16px 0;
}

.content-block h1,
.content-block h2,
.content-block h3 {
    margin: 24px 0 12px;
}

.content-block p {
    margin-bottom: 16px;
}

/* === Icon List (from Elementor) === */
.icon-list {
    margin-bottom: 16px;
}

.icon-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
}

/* === Gallery Grid === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin: 16px 0;
}

.gallery-grid figure {
    border-radius: var(--radius);
    overflow: hidden;
}

.gallery-grid img {
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform var(--transition);
}

.gallery-grid figure:hover img {
    transform: scale(1.05);
}

/* === Responsive === */
@media (max-width: 1024px) {
    .welcome-grid,
    .product-detail,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 { font-size: 2.2rem; }
    .hero h2 { font-size: 1.2rem; }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        bottom: 0;
        background: #fff;
        flex-direction: column;
        padding: 24px;
        overflow-y: auto;
        z-index: 999;
    }

    .main-nav.open {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-item > a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
        font-size: 1.05rem;
    }

    .sub-menu {
        position: static;
        box-shadow: none;
        padding: 0 16px;
        border-right: 2px solid var(--accent);
    }

    .nav-item.has-children:hover > .sub-menu {
        display: block;
    }

    .sub-sub-menu {
        position: static;
        box-shadow: none;
        padding: 0 16px;
        border-right: 2px solid var(--border);
    }

    .header-actions {
        width: 100%;
        justify-content: center;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid var(--border);
    }

    .hero {
        min-height: 50vh;
    }

    .hero h1 { font-size: 1.8rem; }
    .hero h2 { font-size: 1rem; }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }

    .section { padding: 40px 0; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }

    .gallery-main {
        min-height: 250px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* === Print === */
@media print {
    .site-header, .site-footer, .mobile-menu-toggle, .hero-buttons, .product-actions {
        display: none !important;
    }
    body { font-size: 12pt; }
}
